blob: b119e3263d140c21bf9a0aa667026725f75e419a (
plain)
| 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
 | (function(){
  
  var angularJsUrl;
  var scripts = document.getElementsByTagName("script");
  var filename = /(.*\/)angular([^\/]*)/;
  for(var j = 0; j < scripts.length; j++) {
    var src = scripts[j].src;
    if (src && src.match(filename)) {
      angularJsUrl = src;
    }
  }
  
  var HTML_TEMPLATE =
  '<!doctype html>\n' +
  '<html xmlns:ng="http://angularjs.org">\n' +
  ' <script type="text/javascript" ng:autobind\n' + 
  '         src="' + angularJsUrl + '"></script>\n' +
  ' <body>\n' +
  '_HTML_SOURCE_\n' +
  ' </body>\n' +
  '</html>';
  angular.widget('doc:example', function(element){
    this.descend(true); //compile the example code
    element.hide();
    var example = element.find('doc\\:source').eq(0),
        exampleSrc = example.text(),
        scenario = element.find('doc\\:scenario').eq(0);
    var code = indent(exampleSrc);
    var tabs = angular.element(
        '<ul class="doc-example">' +
          '<li class="doc-example-heading"><h3>Source</h3></li>' +
          '<li class="doc-example-source" ng:non-bindable>' + 
            '<pre class="brush: js; html-script: true; highlight: [' + 
            code.hilite + ']; toolbar: false;"></pre></li>' +
          '<li class="doc-example-heading"><h3>Live Preview</h3></li>' +
          '<li class="doc-example-live">' + exampleSrc +'</li>' +
          '<li class="doc-example-heading"><h3>Scenario Test</h3></li>' +
          '<li class="doc-example-scenario"><pre class="brush: js">' + scenario.text() + '</pre></li>' +
        '</ul>');
    
    tabs.find('li.doc-example-source > pre').text(HTML_TEMPLATE.replace('_HTML_SOURCE_', code.html));
    element.html('');
    element.append(tabs);
    element.show();
    var script = (exampleSrc.match(/<script[^\>]*>([\s\S]*)<\/script>/) || [])[1] || '';
    try {
      eval(script);
    } catch (e) {
      alert(e);
    }
  });
  
  function indent(text) {
    var lines = text.split(/\n/);
    var lineNo = [];
    while (lines[0].match(/^\s*$/)) lines.shift();
    while (lines[lines.length - 1].match(/^\s*$/)) lines.pop();
    for ( var i = 0; i < lines.length; i++) {
      lines[i] = '  ' + lines[i];
      lineNo.push(6 + i);
    }
    return {html: lines.join('\n'), hilite: lineNo.join(',') };
  };
  
})();
 |