Blame view

bower_components/iron-doc-viewer/iron-doc-viewer.html 9.91 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
  <!--
  @license
  Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
  This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  Code distributed by Google as part of the polymer project is also
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  -->
a1a3bc73   Luigi Serra   graphs updates
10
11
  
  <link rel="import" href="../polymer/polymer.html">
73bcce88   luigser   COMPONENTS
12
  <link rel="import" href="../marked-element/marked-element.html">
73bcce88   luigser   COMPONENTS
13
  <link rel="import" href="../paper-button/paper-button.html">
a1a3bc73   Luigi Serra   graphs updates
14
15
16
  <link rel="import" href="../paper-styles/color.html">
  <link rel="import" href="../paper-styles/shadow.html">
  <link rel="import" href="../paper-styles/typography.html">
73bcce88   luigser   COMPONENTS
17
  <link rel="import" href="../prism-element/prism-highlighter.html">
73bcce88   luigser   COMPONENTS
18
  <link rel="import" href="iron-doc-property.html">
a1a3bc73   Luigi Serra   graphs updates
19
  <link rel="import" href="iron-doc-viewer-styles.html">
73bcce88   luigser   COMPONENTS
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
  
  <!--
  Renders documentation describing an element's API.
  
  `iron-doc-viewer` renders element and behavior descriptions as extracted by
  [Hydrolysis](https://github.com/PolymerLabs/hydrolysis). You can provide them
  either via binding...
  
      <iron-doc-viewer descriptor="{{elementDescriptor}}"></iron-doc-viewer>
  
  ...or by placing the element descriptor in JSON as the text content of an
  `iron-doc-viewer`:
  
      <iron-doc-viewer>
        {
          "is": "awesome-sauce",
          "properties": [
            {"name": "isAwesome", "type": "boolean", "desc": "Is it awesome?"},
          ]
        }
      </iron-doc-viewer>
  
  However, be aware that due to current limitations in Polymer 0.8, _changes_ to
  the text content will not be respected, only the initial value will be loaded.
  If you wish to update the documented element, please set it via the `descriptor`
  property.
  
  @demo demo/index.html Basic Demo
  -->
73bcce88   luigser   COMPONENTS
49
  
a1a3bc73   Luigi Serra   graphs updates
50
  <dom-module id="iron-doc-viewer">
73bcce88   luigser   COMPONENTS
51
    <template>
a1a3bc73   Luigi Serra   graphs updates
52
53
      <style include="iron-doc-viewer-styles"></style>
  
73bcce88   luigser   COMPONENTS
54
55
56
      <prism-highlighter></prism-highlighter>
  
      <section id="summary" class="card" hidden$="[[!descriptor.desc]]">
e619a3b0   Luigi Serra   Controllet cross ...
57
58
59
        <marked-element markdown="{{descriptor.desc}}">
          <div class="markdown-html"></div>
        </marked-element>
73bcce88   luigser   COMPONENTS
60
61
62
63
64
65
66
67
      </section>
  
      <nav id="api">
        <header>API Reference</header>
        <paper-button id="togglePrivate"
          on-tap="_togglePrivate">{{_privateToggleLabel}}</paper-button>
      </nav>
  
a1a3bc73   Luigi Serra   graphs updates
68
69
      <section id="[[_formatAnchor(prefix,'properties')]]" class="card" hidden$="{{_noneToShow(_showPrivate,_properties)}}">
        <header><a href="#[[_formatAnchor(prefix,'properties')]]" class="deeplink">Properties</a></header>
73bcce88   luigser   COMPONENTS
70
        <template is="dom-repeat" items="{{_properties}}" hidden$="{{!_properties.length}}">
a1a3bc73   Luigi Serra   graphs updates
71
          <iron-doc-property anchor-id="[[_formatAnchor(prefix,'property',item.name)]]" descriptor="{{item}}"></iron-doc-property>
73bcce88   luigser   COMPONENTS
72
73
74
        </template>
      </section>
  
a1a3bc73   Luigi Serra   graphs updates
75
76
      <section id="[[_formatAnchor(prefix,'methods')]]" class="card"  hidden$="{{_noneToShow(_showPrivate,_methods)}}">
        <header><a href="#[[_formatAnchor(prefix,'methods')]]" class="deeplink">Methods</a></header>
73bcce88   luigser   COMPONENTS
77
        <template is="dom-repeat" items="{{_methods}}">
a1a3bc73   Luigi Serra   graphs updates
78
          <iron-doc-property anchor-id="[[_formatAnchor(prefix,'method',item.name)]]" descriptor="{{item}}"></iron-doc-property>
73bcce88   luigser   COMPONENTS
79
80
81
        </template>
      </section>
  
a1a3bc73   Luigi Serra   graphs updates
82
83
      <section id="[[_formatAnchor(prefix,'events')]]" class="card" hidden$="{{_noneToShow(_showPrivate,_events)}}">
        <header><a href="#[[_formatAnchor(prefix,'events')]" class="deeplink">Events</a></header>
73bcce88   luigser   COMPONENTS
84
        <template is="dom-repeat" items="{{_events}}">
a1a3bc73   Luigi Serra   graphs updates
85
          <iron-doc-property anchor-id="[[_formatAnchor(prefix,'event',item.name)]]" descriptor="{{item}}"></iron-doc-property>
73bcce88   luigser   COMPONENTS
86
87
88
        </template>
      </section>
  
a1a3bc73   Luigi Serra   graphs updates
89
90
      <section id="[[_formatAnchor(prefix,'behaviors')]]" class="card" hidden$="{{_hideBehaviors(_behaviors)}}">
        <header><a href="#[[_formatAnchor(prefix,'behaviors')]]" class="deeplink">Behaviors</a></header>
73bcce88   luigser   COMPONENTS
91
92
93
94
        <template is="dom-repeat" items="{{_behaviors}}">
          <p on-click="_broadcastBehavior">{{item}}</p>
        </template>
      </section>
73bcce88   luigser   COMPONENTS
95
96
    </template>
  
a1a3bc73   Luigi Serra   graphs updates
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
    <script>
      (function() {
        Polymer({
          is: 'iron-doc-viewer',
  
          properties: {
            /**
             * The [Hydrolysis](https://github.com/PolymerLabs/hydrolysis)-generated
             * element descriptor to display details for.
             *
             * Alternatively, the element descriptor can be provided as JSON via the text content
             * of this element.
             *
             * @type {hydrolysis.ElementDescriptor}
             */
            descriptor: {
              type: Object,
              observer: '_descriptorChanged',
            },
  
            /**
             * Prefix for fragment identifiers used in anchors.
             * For static routing `iron-component-page` can
             * set this to a string identifying the current component.
             */
            prefix: {
              type: String,
              value: ''
            },
  
            /** Whether private properties should be hidden or shown. */
            _showPrivate: {
              type:     Boolean,
              value:    false,
              observer: '_showPrivateChanged',
            },
  
            /** The label to show for the Private API toggle. */
            _privateToggleLabel: String,
  
            /**
             * Broadcast when another component is clicked on
             * @param {String} detail name of the component
             * iron-doc-viewer container should load component if possible
             * @event iron-doc-viewer-component-selected
             */
          },
  
          ready: function() {
            var jsonDescriptor = this._loadJson();
            // Note that this is only an error during element creation. You are free
            // to stomp over the descriptor after it is ready.
            if (jsonDescriptor && this.descriptor) {
              console.error(
                  this,
                  'received both a bound descriptor:', this.descriptor,
                  'and JSON descriptor:', this._jsonDescriptor,
                  'Please provide only one');
              throw new Error(
                  '<iron-doc-viewer> accepts either a bound or JSON descriptor; not both');
            }
  
            if (jsonDescriptor) {
              this.descriptor = jsonDescriptor;
            }
          },
  
          /**
           * Loads a hydrolysis element descriptor (as JSON) from the text content of
           * this element, if present.
           *
           * @return {hydrolysis.ElementDescriptor} The parsed descriptor, or `null`.
           */
          _loadJson: function() {
            var textContent = '';
            Array.prototype.forEach.call(Polymer.dom(this).childNodes, function(node) {
              textContent = textContent + node.textContent;
            });
            textContent = textContent.trim();
            if (textContent === '') return null;
  
            try {
              return JSON.parse(textContent);
            } catch(error) {
              console.error('Failure when parsing JSON:', textContent, error);
              throw error;
            }
          },
  
          /** Converts `descriptor` into our template-friendly `_model`. */
          _descriptorChanged: function() {
            if (!this.descriptor) return;
  
            // Split the documented properties between functions and other types.
            var properties = [];
            var methods    = [];
  
            for (var i = 0, property; property = this.descriptor.properties[i]; i++) {
              (property.type === 'Function' ? methods : properties).push(property);
            }
            this._properties = properties;
            this._methods    = methods;
            this._events     = this.descriptor.events || [];
            this._behaviors  = this.descriptor.behaviors || [];
  
            this.toggleAttribute('abstract', this.descriptor.abstract);
          },
  
          /**
           * Scrolls to the currently selected anchor, as identified
           * by the URL hash. Whichever element or script is in charge
           * of routing should call this method on initial page load and
           * on hashchange events.
           */
          scrollToAnchor: function(hash) {
            // ToDo: handle linking to private members
            if (hash && hash.length > 1) {
              // ensure all dom-repeats have rendered.
              Polymer.dom.flush();
              var anchorId = window.location.hash.slice(1);
              var elementToFocus = this.$$('[anchor-id="' + anchorId + '"]');
              if (elementToFocus) {
                elementToFocus.scrollIntoView();
              }
            }
          },
  
          _collapsedChanged: function() {
            this._collapseToggleLabel = this._collapsed ? 'expand' : 'collapse';
  
            // Bound values aren't exposed to dom-repeat's scope.
            var properties = this.querySelectorAll('iron-doc-property');
            for (var i = 0, property; property = properties[i]; i++) {
              property.collapsed = this._collapsed;
            }
          },
  
          _toggleCollapsed: function() {
            this._collapsed = !this._collapsed;
          },
  
          _showPrivateChanged: function() {
            this._privateToggleLabel = (this._showPrivate ? 'hide' : 'show') + ' private API';
            this.toggleClass('show-private', this._showPrivate);
          },
  
          _togglePrivate: function() {
            this._showPrivate = !this._showPrivate;
          },
  
          _noneToShow: function(showPrivate, items) {
            for (var i = 0; i < items.length; i++) {
              if (showPrivate || !items[i].private) return false;
            }
            return true;
          },
  
          _formatAnchor: function(prefix, type, membername) {
            var suffix = membername ? '-' + membername : '';
            return prefix + type + suffix;
          },
  
          _hideBehaviors: function(behaviors) {
            return behaviors === null || behaviors.length === 0;
          },
  
          _broadcastBehavior: function(ev) {
            this.fire('iron-doc-viewer-component-selected', ev.target._templateInstance.item);
          }
73bcce88   luigser   COMPONENTS
266
        });
a1a3bc73   Luigi Serra   graphs updates
267
268
269
      })();
    </script>
  </dom-module>