-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathJetpackAppShortcuts.swift
More file actions
64 lines (63 loc) · 2.37 KB
/
Copy pathJetpackAppShortcuts.swift
File metadata and controls
64 lines (63 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import AppIntents
/// Surfaces the navigation intents in the Shortcuts app and Siri without any user setup.
struct JetpackAppShortcuts: AppShortcutsProvider {
static var appShortcuts: [AppShortcut] {
AppShortcut(
intent: NewPostIntent(),
phrases: [
"Create a new post in \(.applicationName)",
"Write a new post in \(.applicationName)",
"New \(.applicationName) post"
],
shortTitle: LocalizedStringResource(
"New Post",
defaultValue: "New Post",
table: "Localizable",
comment: "Short title of the New Post shortcut tile in Spotlight and the Shortcuts app."
),
systemImageName: "square.and.pencil"
)
AppShortcut(
intent: OpenNotificationsIntent(),
phrases: [
"Open my \(.applicationName) notifications",
"Show my \(.applicationName) notifications"
],
shortTitle: LocalizedStringResource(
"Notifications",
defaultValue: "Notifications",
table: "Localizable",
comment: "Short title of the Notifications shortcut tile in Spotlight and the Shortcuts app."
),
systemImageName: "bell"
)
AppShortcut(
intent: OpenStatsIntent(),
phrases: [
"Open my \(.applicationName) stats",
"Show my site stats in \(.applicationName)"
],
shortTitle: LocalizedStringResource(
"Stats",
defaultValue: "Stats",
table: "Localizable",
comment: "Short title of the Stats shortcut tile in Spotlight and the Shortcuts app."
),
systemImageName: "chart.bar"
)
AppShortcut(
intent: OpenReaderIntent(),
phrases: [
"Open the \(.applicationName) Reader",
"Open Reader in \(.applicationName)"
],
shortTitle: LocalizedStringResource(
"Reader",
defaultValue: "Reader",
table: "Localizable",
comment: "Short title of the Reader shortcut tile in Spotlight and the Shortcuts app."
),
systemImageName: "book"
)
}
}