-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathItemInspectorView.swift
More file actions
418 lines (339 loc) · 12.8 KB
/
ItemInspectorView.swift
File metadata and controls
418 lines (339 loc) · 12.8 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
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
//
// ItemInspectorView.swift
// OpenTimelineIO-Sample
//
// Created by Anton Marini on 9/28/24.
//
import SwiftUI
import OpenTimelineIO
struct ItemInspectorView: View
{
// Need to conform to these protocols or else SwiftUI isnt happy
struct SwiftUISafeKeyAndMetadataValueType : Hashable, Identifiable
{
static func == (lhs: ItemInspectorView.SwiftUISafeKeyAndMetadataValueType, rhs: ItemInspectorView.SwiftUISafeKeyAndMetadataValueType) -> Bool {
return lhs.hashValue == rhs.hashValue
}
func hash(into hasher: inout Hasher) {
hasher.combine(key)
}
let id:String
let key: String
let value: (any MetadataValue)
init(id:String, key: String, value: any MetadataValue) {
self.id = id
self.key = key
self.value = value
}
}
@Binding var selectedItem: Item?
@State var jsonExpanded: Bool = false
var body: some View
{
if let selectedItem = self.selectedItem
{
List()
{
Section(header: Text( "\(Image(systemName: "info.circle.fill")) General") )
{
self.inspectorEntry(header: "Type", value: selectedItem.schemaName)
self.inspectorEntry(header: "Name", value: selectedItem.name)
}
.listSectionSeparator(.hidden)
if let clip = selectedItem as? Clip,
let mediaReference = clip.mediaReference as? ExternalReference
{
Section(header: Text("\(Image(systemName: "film.circle.fill")) Media Reference") )
{
self.inspectorEntry(header: "Target URL", value: mediaReference.targetURL ?? "No Target URL" )
}
.listSectionSeparator(.hidden)
}
Section(header: Text("\(Image(systemName: "clock.fill")) Timing") )
{
self.inspectorEntry(header: "Duration Seconds", value: self.safeDurationSeconds(item: selectedItem))
self.inspectorEntry(header: "Duration Frames", value: self.safeDurationTimeCode(item: selectedItem) )
self.inspectorEntry(header: "Duration Value", value: String( self.safeDurationValue(item: selectedItem) ) )
self.inspectorEntry(header: "Duration Rate", value: String( self.safeDurationRate(item: selectedItem) ) )
self.inspectorEntry(header: "Available Range", value: String( self.safeAvailableRange(item: selectedItem) ) )
self.inspectorEntry(header: "Trimmed Range", value: String( self.safeTrimmedRange(item: selectedItem) ) )
self.inspectorEntry(header: "Visible Range", value: String( self.safeVisibleRange(item: selectedItem) ) )
}
.listSectionSeparator(.hidden)
Section(header:Text("\(Image(systemName: "triangle.circle.fill")) Effects"))
{
self.resursiveEffectViewBuilder(effects: selectedItem.effects)
}
.listSectionSeparator(.hidden)
Section(header: Text("\(Image(systemName: "tag.circle.fill")) \(selectedItem.schemaName) Metadata") )
{
self.resursiveMetadataViewBuilder(metadata: selectedItem.metadata)
}
.listSectionSeparator(.hidden)
Section("\(Image(systemName: "gearshape.fill")) JSON")
{
Text(self.safeToJSON(item: selectedItem))
.lineLimit(nil)
.textSelection(.enabled)
.font(.system(size: 10))
}
.listSectionSeparator(.hidden)
}
.controlSize(.mini)
.listStyle(.sidebar)
.environment(\.sidebarRowSize, .small)
}
else
{
Text("No item selected")
}
}
func inspectorEntry(header:String, value:String) -> some View
{
HStack(alignment: .firstTextBaseline)
{
Text(header + ":")
.bold()
.frame(minWidth: 90, alignment:.trailing)
Text(value.trimmingCharacters(in: .whitespaces))
.lineLimit(nil)
.textSelection(.enabled)
}
.font(.system(size: 10))
.listRowSeparator(.hidden)
}
func safeToJSON(item: Item) -> String
{
do {
return try item.toJSON()
}
catch
{
return "Unable to serialize item: \(error)"
}
}
func safeDurationSeconds(item: Item) -> String
{
do {
return try item.duration().toTimestring()
}
catch
{
return "Unable to calculate duration: \(error)"
}
}
func safeDurationTimeCode(item: Item) -> String
{
do {
return try item.duration().toTimecode()
}
catch
{
return "Unable to calculate Timecode: \(error)"
}
}
func safeDurationRate(item: Item) -> Double
{
do {
return try item.duration().rate
}
catch
{
return .nan
}
}
func safeDurationValue(item: Item) -> Double
{
do {
return try item.duration().value
}
catch
{
return .nan
}
}
func safeAvailableRange(item: Item) -> String
{
do {
return try safeVisibleRangeTC(item: item)
}
catch
{
do {
let range = try item.availableRange()
return range.startTime.toTimestring() + " - " + range.endTimeExclusive().toTimestring() + " s"
}
catch
{
return "Unable to Available Range: \(error)"
}
}
}
func safeAvailableRangeTC(item: Item) throws -> String
{
let range = try item.availableRange()
return try range.startTime.toTimecode() + " - " + range.endTimeExclusive().toTimecode() + " F"
}
func safeTrimmedRange(item: Item) -> String
{
do {
return try safeTrimmedRangeTC(item: item)
}
catch
{
do {
let range = try item.trimmedRange()
return range.startTime.toTimestring() + " - " + range.endTimeExclusive().toTimestring() + " s"
}
catch
{
return "Unable to Trimmed Range: \(error)"
}
}
}
func safeTrimmedRangeTC(item: Item) throws -> String
{
let range = try item.trimmedRange()
return try range.startTime.toTimecode() + " - " + range.endTimeExclusive().toTimecode() + " F"
}
func safeVisibleRange(item: Item) -> String
{
do {
return try safeVisibleRangeTC(item: item)
}
catch
{
do {
let range = try item.visibleRange()
return range.startTime.toTimestring() + " - " + range.endTimeExclusive().toTimestring() + " s"
}
catch
{
return "Unable to Visible Range: \(error)"
}
}
}
func safeVisibleRangeTC(item: Item) throws -> String
{
let range = try item.visibleRange()
return try range.startTime.toTimecode() + " - " + range.endTimeExclusive().toTimecode() + " F"
}
func safeMetadata(metadata:OpenTimelineIO.Metadata.Dictionary) -> [ SwiftUISafeKeyAndMetadataValueType ]
{
var safeMetadata: [ SwiftUISafeKeyAndMetadataValueType ] = []
for (index, (key, value)) in metadata.enumerated()
{
safeMetadata.append( SwiftUISafeKeyAndMetadataValueType(id:"\(index)-\(key)", key: key, value: value))
}
return safeMetadata
}
func safeVector(vector: OpenTimelineIO.Metadata.Vector) -> [SwiftUISafeKeyAndMetadataValueType]
{
var safeVector: [ SwiftUISafeKeyAndMetadataValueType ] = []
for (index, vector) in vector.enumerated()
{
let id = "\(index)"
let key = "\(index)"
safeVector.append( SwiftUISafeKeyAndMetadataValueType(id:id, key: key, value: vector))
}
return safeVector
}
func safeEffects(effects: OpenTimelineIO.SerializableObject.Vector<OpenTimelineIO.Effect>) -> [SwiftUISafeKeyAndMetadataValueType]
{
var safeEffects: [ SwiftUISafeKeyAndMetadataValueType ] = []
for (index, effect) in effects.enumerated()
{
let id = "\(index)-\(effect.name)-\(effect.effectName)"
let key = effect.name.isEmpty ? "\(index)" : "\(effect.name)"
safeEffects.append( SwiftUISafeKeyAndMetadataValueType(id:id, key: key, value: effect.metadata))
}
return safeEffects
}
func resursiveMetadataViewBuilder(metadata: OpenTimelineIO.Metadata.Dictionary, title:String = "Root" ) -> AnyView
{
let safeMetadata = self.safeMetadata(metadata: metadata)
return AnyView (
DisclosureGroup(title)
{
ForEach(safeMetadata, id:\.self) { workAround in
self.resursiveMetadataViewBuilder(workAround: workAround)
}
}
)
}
func resursiveMetadataViewBuilder(vector: OpenTimelineIO.Metadata.Vector, title:String = "Vector" ) -> AnyView
{
let safeVector = self.safeVector(vector: vector)
return AnyView (
DisclosureGroup(title)
{
ForEach(safeVector, id:\.self) { workAround in
self.resursiveMetadataViewBuilder(workAround: workAround)
}
}
)
}
func resursiveEffectViewBuilder(effects: OpenTimelineIO.SerializableObject.Vector<OpenTimelineIO.Effect>, title:String = "Effects" ) -> AnyView
{
let safeMetadata = self.safeEffects(effects: effects)
return AnyView (
DisclosureGroup(title)
{
ForEach(safeMetadata, id:\.self) { workAround in
self.resursiveMetadataViewBuilder(workAround: workAround)
}
}
)
}
func resursiveMetadataViewBuilder(workAround: SwiftUISafeKeyAndMetadataValueType) -> AnyView
{
let value = workAround.value
let key = workAround.key
switch value.metadataType
{
case .none:
return AnyView( EmptyView() )
case .bool:
if let boolValue = value as? Bool {
return AnyView( self.inspectorEntry(header: key , value: String(boolValue) ) )
}
case .int64:
if let intValue = value as? Int64 {
return AnyView( self.inspectorEntry(header: key, value: String(intValue) ) )
}
case .double:
if let doubleValue = value as? Double {
return AnyView( self.inspectorEntry(header: key, value: String(doubleValue) ) )
}
case .string:
if let stringValue = value as? String {
return AnyView( self.inspectorEntry(header: key, value: stringValue ) )
}
// case .serializableObject:
// <#code#>
case .rationalTime:
if let timeValue = value as? RationalTime {
return AnyView( self.inspectorEntry(header: key, value: timeValue.toTimestring() ) )
}
case .timeRange:
if let timeRange = value as? TimeRange {
return AnyView( self.inspectorEntry(header: key, value: timeRange.startTime.toTimestring() + " - " + timeRange.endTimeExclusive().toTimestring( ) ) )
}
// case .timeTransform:
// <#code#>
case .dictionary:
if let dictionary = value as? Metadata.Dictionary {
return self.resursiveMetadataViewBuilder(metadata: dictionary, title: key)
}
case .vector:
if let vector = value as? Metadata.Vector {
return self.resursiveMetadataViewBuilder(vector: vector, title: key)
}
// case .unknown:
// return AnyView (Text("Unknown)"))
default:
return AnyView ( EmptyView() )
}
return AnyView ( EmptyView() )
}
}