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
|
/*
* Copyright (C) 2013, 2015 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
WebInspector.ContentView = class ContentView extends WebInspector.View
{
constructor(representedObject, extraArguments)
{
// Concrete object instantiation.
console.assert(!representedObject || WebInspector.ContentView.isViewable(representedObject), representedObject);
super();
this._representedObject = representedObject;
this.element.classList.add("content-view");
this._parentContainer = null;
}
// Static
static createFromRepresentedObject(representedObject, extraArguments)
{
console.assert(representedObject);
if (representedObject instanceof WebInspector.Frame)
return new WebInspector.ResourceClusterContentView(representedObject.mainResource, extraArguments);
if (representedObject instanceof WebInspector.Resource)
return new WebInspector.ResourceClusterContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.Script)
return new WebInspector.ScriptContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.TimelineRecording)
return new WebInspector.TimelineRecordingContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.Timeline) {
var timelineType = representedObject.type;
if (timelineType === WebInspector.TimelineRecord.Type.Network)
return new WebInspector.NetworkTimelineView(representedObject, extraArguments);
if (timelineType === WebInspector.TimelineRecord.Type.Layout)
return new WebInspector.LayoutTimelineView(representedObject, extraArguments);
if (timelineType === WebInspector.TimelineRecord.Type.Script)
return new WebInspector.ScriptTimelineView(representedObject, extraArguments);
if (timelineType === WebInspector.TimelineRecord.Type.RenderingFrame)
return new WebInspector.RenderingFrameTimelineView(representedObject, extraArguments);
if (timelineType === WebInspector.TimelineRecord.Type.Memory)
return new WebInspector.MemoryTimelineView(representedObject, extraArguments);
}
if (representedObject instanceof WebInspector.Breakpoint) {
if (representedObject.sourceCodeLocation)
return WebInspector.ContentView.createFromRepresentedObject(representedObject.sourceCodeLocation.displaySourceCode, extraArguments);
}
if (representedObject instanceof WebInspector.DOMStorageObject)
return new WebInspector.DOMStorageContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.CookieStorageObject)
return new WebInspector.CookieStorageContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.DatabaseTableObject)
return new WebInspector.DatabaseTableContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.DatabaseObject)
return new WebInspector.DatabaseContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.IndexedDatabaseObjectStore)
return new WebInspector.IndexedDatabaseObjectStoreContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.IndexedDatabaseObjectStoreIndex)
return new WebInspector.IndexedDatabaseObjectStoreContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.ApplicationCacheFrame)
return new WebInspector.ApplicationCacheFrameContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.DOMTree)
return new WebInspector.FrameDOMTreeContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.DOMSearchMatchObject) {
var resultView = new WebInspector.FrameDOMTreeContentView(WebInspector.frameResourceManager.mainFrame.domTree, extraArguments);
resultView.restoreFromCookie({nodeToSelect: representedObject.domNode});
return resultView;
}
if (representedObject instanceof WebInspector.SourceCodeSearchMatchObject) {
var resultView;
if (representedObject.sourceCode instanceof WebInspector.Resource)
resultView = new WebInspector.ResourceClusterContentView(representedObject.sourceCode, extraArguments);
else if (representedObject.sourceCode instanceof WebInspector.Script)
resultView = new WebInspector.ScriptContentView(representedObject.sourceCode, extraArguments);
else
console.error("Unknown SourceCode", representedObject.sourceCode);
var textRangeToSelect = representedObject.sourceCodeTextRange.formattedTextRange;
var startPosition = textRangeToSelect.startPosition();
resultView.restoreFromCookie({lineNumber: startPosition.lineNumber, columnNumber: startPosition.columnNumber});
return resultView;
}
if (representedObject instanceof WebInspector.LogObject)
return new WebInspector.LogContentView(representedObject, extraArguments);
if (representedObject instanceof WebInspector.ContentFlow)
return new WebInspector.ContentFlowDOMTreeContentView(representedObject, extraArguments);
if (typeof representedObject === "string" || representedObject instanceof String)
return new WebInspector.TextContentView(representedObject, extraArguments);
console.assert(!WebInspector.ContentView.isViewable(representedObject));
throw new Error("Can't make a ContentView for an unknown representedObject.");
}
static contentViewForRepresentedObject(representedObject, onlyExisting, extraArguments)
{
console.assert(representedObject);
let resolvedRepresentedObject = WebInspector.ContentView.resolvedRepresentedObjectForRepresentedObject(representedObject);
let existingContentView = resolvedRepresentedObject[WebInspector.ContentView.ContentViewForRepresentedObjectSymbol];
console.assert(!existingContentView || existingContentView instanceof WebInspector.ContentView);
if (existingContentView)
return existingContentView;
if (onlyExisting)
return null;
let newContentView = WebInspector.ContentView.createFromRepresentedObject(representedObject, extraArguments);
console.assert(newContentView instanceof WebInspector.ContentView);
if (!newContentView)
return null;
console.assert(newContentView.representedObject === resolvedRepresentedObject, "createFromRepresentedObject and resolvedRepresentedObjectForRepresentedObject are out of sync for type", representedObject.constructor.name);
newContentView.representedObject[WebInspector.ContentView.ContentViewForRepresentedObjectSymbol] = newContentView;
return newContentView;
}
static closedContentViewForRepresentedObject(representedObject)
{
let resolvedRepresentedObject = WebInspector.ContentView.resolvedRepresentedObjectForRepresentedObject(representedObject);
resolvedRepresentedObject[WebInspector.ContentView.ContentViewForRepresentedObjectSymbol] = null;
}
static resolvedRepresentedObjectForRepresentedObject(representedObject)
{
if (representedObject instanceof WebInspector.Frame)
return representedObject.mainResource;
if (representedObject instanceof WebInspector.Breakpoint) {
if (representedObject.sourceCodeLocation)
return representedObject.sourceCodeLocation.displaySourceCode;
}
if (representedObject instanceof WebInspector.DOMSearchMatchObject)
return WebInspector.frameResourceManager.mainFrame.domTree;
if (representedObject instanceof WebInspector.SourceCodeSearchMatchObject)
return representedObject.sourceCode;
return representedObject;
}
static isViewable(representedObject)
{
if (representedObject instanceof WebInspector.Frame)
return true;
if (representedObject instanceof WebInspector.Resource)
return true;
if (representedObject instanceof WebInspector.Script)
return true;
if (representedObject instanceof WebInspector.TimelineRecording)
return true;
if (representedObject instanceof WebInspector.Timeline)
return true;
if (representedObject instanceof WebInspector.Breakpoint)
return representedObject.sourceCodeLocation;
if (representedObject instanceof WebInspector.DOMStorageObject)
return true;
if (representedObject instanceof WebInspector.CookieStorageObject)
return true;
if (representedObject instanceof WebInspector.DatabaseTableObject)
return true;
if (representedObject instanceof WebInspector.DatabaseObject)
return true;
if (representedObject instanceof WebInspector.IndexedDatabaseObjectStore)
return true;
if (representedObject instanceof WebInspector.IndexedDatabaseObjectStoreIndex)
return true;
if (representedObject instanceof WebInspector.ApplicationCacheFrame)
return true;
if (representedObject instanceof WebInspector.DOMTree)
return true;
if (representedObject instanceof WebInspector.DOMSearchMatchObject)
return true;
if (representedObject instanceof WebInspector.SourceCodeSearchMatchObject)
return true;
if (representedObject instanceof WebInspector.LogObject)
return true;
if (representedObject instanceof WebInspector.ContentFlow)
return true;
if (typeof representedObject === "string" || representedObject instanceof String)
return true;
return false;
}
// Public
get representedObject()
{
return this._representedObject;
}
get navigationItems()
{
// Navigation items that will be displayed by the ContentBrowser instance,
// meant to be subclassed. Implemented by subclasses.
return [];
}
get parentContainer()
{
return this._parentContainer;
}
get visible()
{
return this._visible;
}
set visible(flag)
{
this._visible = flag;
}
get scrollableElements()
{
// Implemented by subclasses.
return [];
}
get shouldKeepElementsScrolledToBottom()
{
// Implemented by subclasses.
return false;
}
get selectionPathComponents()
{
// Implemented by subclasses.
return [];
}
get supplementalRepresentedObjects()
{
// Implemented by subclasses.
return [];
}
get supportsSplitContentBrowser()
{
// Implemented by subclasses.
return true;
}
shown()
{
// Implemented by subclasses.
}
hidden()
{
// Implemented by subclasses.
}
closed()
{
// Implemented by subclasses.
}
saveToCookie(cookie)
{
// Implemented by subclasses.
}
restoreFromCookie(cookie)
{
// Implemented by subclasses.
}
canGoBack()
{
// Implemented by subclasses.
return false;
}
canGoForward()
{
// Implemented by subclasses.
return false;
}
goBack()
{
// Implemented by subclasses.
}
goForward()
{
// Implemented by subclasses.
}
get supportsSearch()
{
// Implemented by subclasses.
return false;
}
get numberOfSearchResults()
{
// Implemented by subclasses.
return null;
}
get hasPerformedSearch()
{
// Implemented by subclasses.
return false;
}
set automaticallyRevealFirstSearchResult(reveal)
{
// Implemented by subclasses.
}
performSearch(query)
{
// Implemented by subclasses.
}
searchCleared()
{
// Implemented by subclasses.
}
searchQueryWithSelection()
{
// Implemented by subclasses.
return null;
}
revealPreviousSearchResult(changeFocus)
{
// Implemented by subclasses.
}
revealNextSearchResult(changeFocus)
{
// Implemented by subclasses.
}
};
WebInspector.ContentView.Event = {
SelectionPathComponentsDidChange: "content-view-selection-path-components-did-change",
SupplementalRepresentedObjectsDidChange: "content-view-supplemental-represented-objects-did-change",
NumberOfSearchResultsDidChange: "content-view-number-of-search-results-did-change",
NavigationItemsDidChange: "content-view-navigation-items-did-change"
};
WebInspector.ContentView.ContentViewForRepresentedObjectSymbol = Symbol("content-view-for-represented-object");
|