-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Gutenberg.swift
309 lines (249 loc) · 9.18 KB
/
Gutenberg.swift
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
import UIKit
import Aztec
// IMPORTANT: if you're seeing a warning with this import, keep in mind it's marked as a Swift
// bug. I wasn't able to get any of the workarounds to work.
//
// Ref: https://bugs.swift.org/browse/SR-3801
import RNTAztecView
@objc
public class Gutenberg: NSObject {
public static func supportedBlocks(isDev: Bool = false) -> [String] {
guard let json = try? SourceFile.supportedBlocks.getContent() else { return [] }
let data = Data(json.utf8)
guard let blockSupport = try? JSONSerialization.jsonObject(with: data, options: []) as? [String : [String]] else { return [] }
var supportedBlocks = [String]()
supportedBlocks += blockSupport["common"] ?? []
supportedBlocks += blockSupport["iOSOnly"] ?? []
if isDev {
supportedBlocks += blockSupport["devOnly"] ?? []
}
return supportedBlocks
}
private var extraModules: [RCTBridgeModule];
public lazy var rootView: UIView = {
let view = RCTRootView(bridge: bridge, moduleName: "gutenberg", initialProperties: initialProps)
view.loadingView = dataSource.loadingView
return view
}()
public var delegate: GutenbergBridgeDelegate? {
get {
return bridgeModule.delegate
}
set {
bridgeModule.delegate = newValue
}
}
public var isLoaded: Bool {
return !bridge.isLoading
}
public var logThreshold: LogLevel {
get {
return LogLevel(RCTGetLogThreshold())
}
set {
RCTSetLogThreshold(RCTLogLevel(newValue))
}
}
private let bridgeModule = RNReactNativeGutenbergBridge()
private unowned let dataSource: GutenbergBridgeDataSource
private lazy var bridge: RCTBridge = {
return RCTBridge(delegate: self, launchOptions: [:])
}()
private var initialProps: [String: Any]? {
var initialProps = [String: Any]()
if let initialContent = dataSource.gutenbergInitialContent() {
initialProps["initialData"] = initialContent
}
if let initialTitle = dataSource.gutenbergInitialTitle() {
initialProps["initialTitle"] = initialTitle
}
initialProps["postType"] = dataSource.gutenbergPostType()
if let locale = dataSource.gutenbergLocale() {
initialProps["locale"] = locale
}
if let translations = dataSource.gutenbergTranslations() {
initialProps["translations"] = translations
}
let capabilities = dataSource.gutenbergCapabilities()
if capabilities.isEmpty == false {
initialProps["capabilities"] = capabilities.toJSPayload()
}
let editorTheme = dataSource.gutenbergEditorTheme()
if let colors = editorTheme?.colors {
initialProps["colors"] = colors
}
if let gradients = editorTheme?.gradients {
initialProps["gradients"] = gradients
}
initialProps["editorMode"] = dataSource.isPreview ? "preview" : "editor"
return initialProps
}
public init(dataSource: GutenbergBridgeDataSource, extraModules: [RCTBridgeModule] = []) {
self.dataSource = dataSource
self.extraModules = extraModules
super.init()
bridgeModule.dataSource = dataSource
logThreshold = isPackagerRunning ? .trace : .error
}
public func invalidate() {
bridge.invalidate()
}
public func requestHTML() {
sendEvent(.requestGetHtml)
}
public func toggleHTMLMode() {
sendEvent(.toggleHTMLMode)
}
public func setTitle(_ title: String) {
sendEvent(.setTitle, body: ["title": title])
}
public func updateHtml(_ html: String) {
sendEvent(.updateHtml, body: ["html": html])
}
public func replace(block: Block) {
sendEvent(.replaceBlock, body: ["html": block.content, "clientId": block.id])
}
public func replace(blockID: String, content: String) {
sendEvent(.replaceBlock, body: ["html": content, "clientId": blockID])
}
public func updateCapabilities() {
let capabilites = dataSource.gutenbergCapabilities()
sendEvent(.updateCapabilities, body: capabilites.toJSPayload())
}
private func sendEvent(_ event: RNReactNativeGutenbergBridge.EventName, body: [String: Any]? = nil) {
bridgeModule.sendEvent(withName: event.rawValue, body: body)
}
public func mediaUploadUpdate(id: Int32, state: MediaUploadState, progress: Float, url: URL?, serverID: Int32?) {
mediaUpdate(event: .mediaUpload, id: id, state: state, progress: progress, url: url, serverID: serverID)
}
public func updateMediaSaveStatus(id: Int32, state: MediaSaveState, progress: Float, url: URL?, serverID: Int32?) {
mediaUpdate(event: .mediaSave, id: id, state: state, progress: progress, url: url, serverID: serverID)
}
public func onMediaCollectionSaveResult(firstMediaIdInCollection: String, success: Bool) {
sendEvent(.mediaSave, body: [
"state": MediaSaveEvent.result.rawValue,
"firstMediaIdInCollection": firstMediaIdInCollection,
"success": success,
])
}
public func onMediaIdChanged(oldId: String, newId: String, oldUrl: URL) {
sendEvent(.mediaSave, body: [
"state": MediaSaveEvent.idChange.rawValue,
"oldId": oldId,
"newId": newId,
"oldUrl": oldUrl,
])
}
private func mediaUpdate<State: MediaState>(event: RNReactNativeGutenbergBridge.EventName, id: Int32, state: State, progress: Float, url: URL?, serverID: Int32?) {
var data: [String: Any] = ["mediaId": id, "state": state.rawValue, "progress": progress];
if let url = url {
data["mediaUrl"] = url.absoluteString
}
if let serverID = serverID {
data["mediaServerId"] = serverID
}
sendEvent(event, body: data)
}
public func appendMedia(id: Int32, url: URL, type: MediaType) {
let data: [String: Any] = [
"mediaId" : id,
"mediaUrl" : url.absoluteString,
"mediaType": type.rawValue,
]
sendEvent(.mediaAppend, body: data)
}
public func setFocusOnTitle() {
bridgeModule.sendEventIfNeeded(.setFocusOnTitle, body: nil)
}
private var isPackagerRunning: Bool {
let url = sourceURL(for: bridge)
return !(url?.isFileURL ?? true)
}
public func updateTheme(_ editorTheme: GutenbergEditorTheme?) {
var themeUpdates = [String : Any]()
if let colors = editorTheme?.colors {
themeUpdates["colors"] = colors
}
if let gradients = editorTheme?.gradients {
themeUpdates["gradients"] = gradients
}
bridgeModule.sendEventIfNeeded(.updateTheme, body:themeUpdates)
}
public func showNotice(_ message: String) {
sendEvent(.showNotice, body: ["message": message])
}
}
extension Gutenberg: RCTBridgeDelegate {
public func sourceURL(for bridge: RCTBridge!) -> URL! {
return RCTBundleURLProvider.sharedSettings()?.jsBundleURL(forBundleRoot: "index", fallbackResource: "")
}
public func extraModules(for bridge: RCTBridge!) -> [RCTBridgeModule]! {
let aztecManager = RCTAztecViewManager()
aztecManager.attachmentDelegate = dataSource.aztecAttachmentDelegate()
let baseModules:[RCTBridgeModule] = [bridgeModule, aztecManager]
return baseModules + extraModules
}
}
protocol MediaState: RawRepresentable {}
extension Gutenberg {
public enum MediaUploadState: Int, MediaState {
case uploading = 1
case succeeded = 2
case failed = 3
case reset = 4
}
public enum MediaSaveState: Int, MediaState {
case saving = 5
case succeeded = 6
case failed = 7
case reset = 8
}
enum MediaSaveEvent: Int {
case result = 9
case idChange = 10
}
}
extension Gutenberg {
public enum MediaType: String {
case image
case video
case audio
case other
case any
}
}
extension Gutenberg.MediaType {
init(fromJSString rawValue: String) {
self = Gutenberg.MediaType(rawValue: rawValue) ?? .other
}
}
extension Gutenberg {
public struct MediaSource: Hashable {
/// The label string that will be shown to the user.
let label: String
/// A unique identifier of this media source option.
let id: String
/// The types of media this source can provide.
let types: Set<MediaType>
var jsRepresentation: [String: String] {
return [
"label": label,
"value": id,
]
}
}
}
public extension Gutenberg.MediaSource {
init(id: String, label: String, types: [Gutenberg.MediaType]) {
self.id = id
self.label = label
self.types = Set(types)
}
}
private extension Dictionary where Key == Capabilities, Value == Bool {
func toJSPayload() -> [String: Bool] {
Dictionary<String, Bool>(uniqueKeysWithValues: self.map { key, value in
(key.rawValue, value)
})
}
}