OLD | NEW |
---|---|
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /** Transfomer that extracts inlined script code into separate assets. */ | 5 /** Transfomer that extracts inlined script code into separate assets. */ |
6 library polymer.src.transformers; | 6 library polymer.src.transformers; |
7 | 7 |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 | 9 |
10 import 'package:barback/barback.dart'; | 10 import 'package:barback/barback.dart'; |
11 import 'package:path/path.dart' as path; | 11 import 'package:path/path.dart' as path; |
12 | 12 |
13 import 'common.dart'; | 13 import 'common.dart'; |
14 | 14 |
15 /** | 15 /** |
16 * Transformer that extracts Dart code inlined in HTML script tags and outputs a | 16 * Transformer that extracts Dart code inlined in HTML script tags and outputs a |
17 * separate file for each. | 17 * separate file for each. |
18 */ | 18 */ |
19 class InlineCodeExtractor extends Transformer { | 19 class InlineCodeExtractor extends Transformer { |
20 Future<bool> isPrimary(Asset input) => | 20 Future<bool> isPrimary(Asset input) => |
21 new Future.value(input.id.extension == ".html"); | 21 new Future.value(input.id.extension == ".html"); |
22 | 22 |
23 Future apply(Transform transform) { | 23 Future apply(Transform transform) { |
24 var inputId = transform.primaryId; | 24 var inputId = transform.primaryId; |
25 return getPrimaryContent(transform).then((content) { | 25 return getPrimaryContent(transform).then((content) { |
26 var document = parseHtml(content, inputId.path, transform.logger); | 26 var document = parseHtml(content, inputId.path, transform.logger); |
27 int count = 0; | 27 int count = 0; |
28 for (var tag in document.queryAll('script')) { | 28 for (var tag in document.queryAll('script')) { |
29 if (tag.attributes['type'] == 'application/dart' && | 29 // Only process tags that have inline Dart code |
30 !tag.attributes.containsKey('src')) { | 30 if (tag.attributes['type'] != 'application/dart' || |
31 // TODO(sigmund): should we automatically include a library directive | 31 tag.attributes.containsKey('src')) { |
32 // if it doesn't have one? | 32 continue; |
33 var filename = path.url.basename(inputId.path); | 33 } |
34 tag.attributes['src'] = '$filename.$count.dart'; | 34 |
35 var textContent = tag.nodes.first; | 35 // Remove empty tags |
36 var id = inputId.addExtension('.$count.dart'); | 36 if (tag.nodes.length == 0) { |
37 transform.addOutput(new Asset.fromString(id, textContent.value)); | 37 tag.remove(); |
38 textContent.remove(); | |
39 count++; | 38 count++; |
Jennifer Messerly
2013/08/23 01:23:11
instead of count, a boolean "htmlChanged" might be
Siggi Cherem (dart-lang)
2013/08/23 01:45:28
Done.
| |
39 continue; | |
40 } | 40 } |
41 | |
42 // TODO(sigmund): should we automatically include a library directive | |
43 // if it doesn't have one? | |
44 var filename = path.url.basename(inputId.path); | |
45 tag.attributes['src'] = '$filename.$count.dart'; | |
Jennifer Messerly
2013/08/23 01:23:11
I forgot the outcome of previous CL discussion, sh
Siggi Cherem (dart-lang)
2013/08/23 01:45:28
Added TODO. Yeah, we weren't sure how necessary it
| |
46 var textContent = tag.nodes.first; | |
47 var id = inputId.addExtension('.$count.dart'); | |
48 transform.addOutput(new Asset.fromString(id, textContent.value)); | |
49 textContent.remove(); | |
50 count++; | |
41 } | 51 } |
42 transform.addOutput(new Asset.fromString(inputId, | 52 transform.addOutput(new Asset.fromString(inputId, |
43 count == 0 ? content : document.outerHtml)); | 53 count == 0 ? content : document.outerHtml)); |
44 }); | 54 }); |
45 } | 55 } |
46 } | 56 } |
OLD | NEW |