| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, 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 class Generate { | |
| 6 | |
| 7 // Build up list of all known class selectors in all CSS files. | |
| 8 static List<String> computeClassSelectors(RuleSet ruleset, classes) { | |
| 9 for (final selector in ruleset.selectorGroup.selectors) { | |
| 10 var selSeqs = selector.simpleSelectorSequences; | |
| 11 for (final selSeq in selSeqs) { | |
| 12 var simpleSelector = selSeq.simpleSelector; | |
| 13 if (simpleSelector is ClassSelector) { | |
| 14 String className = simpleSelector.name; | |
| 15 if (classes.indexOf(className) == -1) { // Class name already known? | |
| 16 // No, expose it. | |
| 17 classes.add(className); | |
| 18 } | |
| 19 } | |
| 20 } | |
| 21 } | |
| 22 | |
| 23 return classes; | |
| 24 } | |
| 25 | |
| 26 static dartClass(var files, String outPath, Stylesheet stylesheet, | |
| 27 String filename) { | |
| 28 | |
| 29 List<String> knownClasses = []; | |
| 30 | |
| 31 StringBuffer buff = new StringBuffer( | |
| 32 '// File generated by Dart CSS from source file ${filename}\n' + | |
| 33 '// Do not edit.\n\n'); | |
| 34 | |
| 35 // Emit class for any @stylet directive. | |
| 36 for (final production in stylesheet._topLevels) { | |
| 37 if (production is Directive) { | |
| 38 if (production is StyletDirective) { | |
| 39 // TODO(terry): Need safer mechanism for stylets in different files | |
| 40 // and stylets with colliding names. | |
| 41 buff.write('class ${production.dartClassName} {\n'); | |
| 42 buff.write(' // selector, properties<propertyName, value>\n'); | |
| 43 buff.write(' static const selectors = const {\n'); | |
| 44 | |
| 45 for (final ruleset in production.rulesets) { | |
| 46 for (final selector in ruleset.selectorGroup.selectors) { | |
| 47 var selSeq = selector.simpleSelectorSquences; | |
| 48 if (selSeq.length == 1) { | |
| 49 buff.write(' \'${selSeq.toString()}\' : const {\n'); | |
| 50 } | |
| 51 } | |
| 52 | |
| 53 for (final decl in ruleset.declarationGroup.declarations) { | |
| 54 buff.write(' \'${decl.property}\' : ' + | |
| 55 '\'${decl.expression.toString()}\',\n'); | |
| 56 } | |
| 57 buff.write(' },\n'); // End of declarations for stylet class. | |
| 58 } | |
| 59 buff.write(' };\n'); // End of static selectors constant. | |
| 60 buff.write('}\n\n'); // End of stylet class | |
| 61 } else if (production is IncludeDirective) { | |
| 62 for (final topLevel in production.styleSheet._topLevels) { | |
| 63 if (topLevel is RuleSet) { | |
| 64 knownClasses = computeClassSelectors(topLevel, knownClasses); | |
| 65 } | |
| 66 } | |
| 67 } | |
| 68 } else if (production is RuleSet) { | |
| 69 knownClasses = computeClassSelectors(production, knownClasses); | |
| 70 } | |
| 71 } | |
| 72 | |
| 73 // Generate all known classes encountered in all processed CSS files. | |
| 74 StringBuffer classSelectors = new StringBuffer( | |
| 75 'class CSS {\n' + | |
| 76 ' // CSS class selectors:\n'); | |
| 77 for (final className in knownClasses) { | |
| 78 String classAsDart = className.replaceAll('-', '_').toUpperCase(); | |
| 79 classSelectors.write(' static const String ${classAsDart} = ' + | |
| 80 '\'${className}\';\n'); | |
| 81 } | |
| 82 classSelectors.write('}\n'); // End of class selectors. | |
| 83 buff.write(classSelectors.toString()); | |
| 84 | |
| 85 // Write Dart file. | |
| 86 String outFile = '${outPath}CSS.dart'; | |
| 87 files.writeString(outFile, buff.toString()); | |
| 88 | |
| 89 return outFile; | |
| 90 } | |
| 91 } | |
| 92 | |
| OLD | NEW |