Skip to content

Commit f82bafc

Browse files
authored
Fixed editing actions on iOS 17 (#447)
1 parent 98cf91a commit f82bafc

File tree

2 files changed

+20
-23
lines changed

2 files changed

+20
-23
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ All notable changes to this project will be documented in this file. Take a look
1212

1313
* [#444](https://github.com/readium/swift-toolkit/issues/444) Fixed resolving titles of search results when the table of contents items contain fragment identifiers.
1414

15+
#### Navigator
16+
17+
* [#428](https://github.com/readium/swift-toolkit/issues/428) Fixed crash with the `share` editing action on iOS 17.
18+
* [#428](https://github.com/readium/swift-toolkit/issues/428) Fixed showing look up and translate editing actions on iOS 17.
19+
1520

1621
## [2.7.1]
1722

Sources/Navigator/EditingAction.swift

+15-23
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,26 @@ import UIKit
1919
public struct EditingAction: Hashable {
2020
/// Default editing actions enabled in the navigator.
2121
public static var defaultActions: [EditingAction] {
22-
[copy, share, define, lookup, translate]
22+
[copy, share, lookup, translate]
2323
}
2424

2525
/// Copy the text selection.
26-
public static let copy = EditingAction(kind: .native("copy:"))
26+
public static let copy = EditingAction(kind: .native(["copy:"]))
2727

2828
/// Look up the text selection in the dictionary and other sources.
2929
///
30-
/// Not available on iOS 16+
31-
public static let lookup = EditingAction(kind: .native("_lookup:"))
32-
33-
/// Look up the text selection in the dictionary (and other sources on
34-
/// iOS 16+).
35-
///
3630
/// On iOS 16+, enabling this action will show two items: Look Up and
3731
/// Search Web.
38-
public static let define = EditingAction(kind: .native("_define:"))
32+
public static let lookup = EditingAction(kind: .native(["lookup", "_lookup:", "define:", "_define:"]))
33+
34+
@available(*, deprecated, message: "lookup and define were merged", renamed: "lookup")
35+
public static let define = lookup
3936

4037
/// Translate the text selection.
41-
public static let translate = EditingAction(kind: .native("_translate:"))
38+
public static let translate = EditingAction(kind: .native(["translate:", "_translate:"]))
4239

4340
/// Share the text selection.
44-
public static let share = EditingAction(kind: .native("_share:"))
41+
public static let share = EditingAction(kind: .native(["share:", "_share:"]))
4542

4643
/// Create a custom editing action.
4744
///
@@ -53,7 +50,7 @@ public struct EditingAction: Hashable {
5350
}
5451

5552
enum Kind: Hashable {
56-
case native(String)
53+
case native([String])
5754
case custom(UIMenuItem)
5855
}
5956

@@ -63,12 +60,12 @@ public struct EditingAction: Hashable {
6360
self.kind = kind
6461
}
6562

66-
var action: Selector {
63+
var actions: [Selector] {
6764
switch kind {
68-
case let .native(action):
69-
return Selector(action)
65+
case let .native(actions):
66+
return actions.map { Selector($0) }
7067
case let .custom(item):
71-
return item.action
68+
return [item.action]
7269
}
7370
}
7471

@@ -119,14 +116,14 @@ final class EditingActionsController {
119116
}
120117

121118
func canPerformAction(_ action: EditingAction) -> Bool {
122-
canPerformAction(action.action)
119+
action.actions.contains { canPerformAction($0) }
123120
}
124121

125122
func canPerformAction(_ selector: Selector) -> Bool {
126123
guard
127124
isEnabled,
128125
let selection = selection,
129-
let action = actions.first(where: { $0.action == selector }),
126+
let action = actions.first(where: { $0.actions.contains(selector) }),
130127
isActionAllowed(action)
131128
else {
132129
return false
@@ -149,11 +146,6 @@ final class EditingActionsController {
149146

150147
@available(iOS 13.0, *)
151148
func buildMenu(with builder: UIMenuBuilder) {
152-
// On iOS 16, there's a new "Search Web" menu item which is required
153-
// to enable the define action.
154-
if #available(iOS 16.0, *), !canPerformAction(.define) {
155-
builder.remove(menu: .lookup)
156-
}
157149
if !canPerformAction(.lookup) {
158150
builder.remove(menu: .lookup)
159151
}

0 commit comments

Comments
 (0)