OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library source_link_element; |
| 6 |
| 7 import 'dart:html'; |
| 8 import 'dart:async'; |
| 9 import 'package:observatory/models.dart' |
| 10 show IsolateRef, SourceLocation, Script, ScriptRepository; |
| 11 import 'package:observatory/src/elements/helpers/rendering_scheduler.dart'; |
| 12 import 'package:observatory/src/elements/helpers/tag.dart'; |
| 13 import 'package:observatory/src/elements/helpers/uris.dart'; |
| 14 |
| 15 class SourceLinkElement extends HtmlElement implements Renderable{ |
| 16 static const tag = const Tag<SourceLinkElement>('source-link-wrapped'); |
| 17 |
| 18 RenderingScheduler _r; |
| 19 |
| 20 Stream<RenderedEvent<SourceLinkElement>> get onRendered => _r.onRendered; |
| 21 |
| 22 |
| 23 IsolateRef _isolate; |
| 24 SourceLocation _location; |
| 25 Script _script; |
| 26 ScriptRepository _repository; |
| 27 |
| 28 IsolateRef get isolate => _isolate; |
| 29 SourceLocation get location => _location; |
| 30 |
| 31 factory SourceLinkElement(IsolateRef isolate, SourceLocation location, |
| 32 ScriptRepository repository, {RenderingQueue queue}) { |
| 33 assert(isolate != null); |
| 34 assert(location != null); |
| 35 SourceLinkElement e = document.createElement(tag.name); |
| 36 e._r = new RenderingScheduler(e, queue: queue); |
| 37 e._isolate = isolate; |
| 38 e._location = location; |
| 39 e._repository = repository; |
| 40 return e; |
| 41 } |
| 42 |
| 43 SourceLinkElement.created() : super.created(); |
| 44 |
| 45 @override |
| 46 void attached() { |
| 47 super.attached(); |
| 48 assert(location != null); |
| 49 _r.enable(); |
| 50 _repository.get(_location.script.id).then((script) { |
| 51 _script = script; |
| 52 _r.dirty(); |
| 53 }); |
| 54 } |
| 55 |
| 56 @override |
| 57 void detached() { super.detached(); children = []; _r.disable(notify: true); } |
| 58 |
| 59 Future render() async { |
| 60 if (_script == null) { |
| 61 children = [new SpanElement()..text = '<LOADING>']; |
| 62 } else { |
| 63 String label = _script.uri.split('/').last; |
| 64 int token = _location.tokenPos; |
| 65 int line = _script.tokenToLine(token); |
| 66 int column = _script.tokenToCol(token); |
| 67 children = [ |
| 68 new AnchorElement( |
| 69 href: Uris.inspect(isolate, object: _script, pos: token)) |
| 70 ..title = _script.uri |
| 71 ..text = '${label}:${line}:${column}' |
| 72 ]; |
| 73 } |
| 74 } |
| 75 } |
OLD | NEW |