-
Notifications
You must be signed in to change notification settings - Fork 16
/
iron-doc-module.js
114 lines (98 loc) · 4.73 KB
/
iron-doc-module.js
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
@license
Copyright (c) 2018 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
*/
import '@polymer/polymer/polymer-legacy.js';
import '@polymer/marked-element/marked-element.js';
import '@polymer/prism-element/prism-highlighter.js';
import '@polymer/prism-element/prism-theme-default.js';
import './iron-doc-behavior.js';
import './iron-doc-element.js';
import './iron-doc-class.js';
import './iron-doc-function.js';
import './iron-doc-mixin.js';
import './iron-doc-summary.js';
import './iron-doc-viewer-styles.js';
import {Polymer} from '@polymer/polymer/lib/legacy/polymer-fn.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {IronDocViewerBehavior} from './iron-doc-viewer-behavior.js';
/**
* `iron-doc-module` renders documentation about a JavaScript Module from a
* JSON descriptor output by
* [Polymer Analyzer](https://github.com/Polymer/polymer-analyzer).
*
* The descriptor should be an analysis format Analysis object, filtered
* down to contain only the exported contents of a single module.
*/
Polymer({
_template: html`
<style include="iron-doc-viewer-styles prism-theme-default">
:host {
@apply --iron-doc-docs;
}
</style>
<prism-highlighter></prism-highlighter>
<template is="dom-if" if="[[moduleSpecifier]]">
<code>import {} from '[[moduleSpecifier]]';</code>
</template>
<h1>[[title]]</h1>
<p hidden$="[[!descriptor.summary]]">[[descriptor.summary]]</p>
<section id="description" anchor-id$="[[fragmentPrefix]]description" hidden$="[[!descriptor.description]]">
<h2>
<a href$="#[[fragmentPrefix]]description" class="deeplink">Description</a>
</h2>
<marked-element sanitize markdown="[[descriptor.description]]">
<div slot="markdown-html" class="markdown-html"></div>
</marked-element>
</section>
<section anchor-id$="[[fragmentPrefix]]elements" hidden$="[[_noneToShow(_showProtected,_showInherited,descriptor,'elements')]]">
<template is="dom-repeat" items="[[descriptor.elements]]" sort="_compareDescriptors">
<iron-doc-element descriptor="[[item]]" anchor-id$="[[fragmentPrefix]][[item.name]]" fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-element>
</template>
</section>
<section anchor-id$="[[fragmentPrefix]]classes" hidden$="[[_noneToShow(_showProtected,_showInherited,descriptor,'classes')]]">
<template is="dom-repeat" items="[[descriptor.classes]]" sort="_compareDescriptors">
<iron-doc-class descriptor="{{item}}" anchor-id$="[[fragmentPrefix]][[item.name]]" fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-class></template>
</section>
<section anchor-id$="[[fragmentPrefix]]mixins" hidden$="[[_noneToShow(_showProtected,_showInherited,descriptor,'mixins')]]">
<template is="dom-repeat" items="[[descriptor.mixins]]" sort="_compareDescriptors">
<iron-doc-mixin descriptor="[[item]]" anchor-id$="[[fragmentPrefix]][[item.name]]" fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-mixin>
</template>
</section>
<section anchor-id$="[[fragmentPrefix]]behaviors" hidden$="[[_noneToShow(_showProtected,_showInherited,descriptor,'behaviors')]]">
<template is="dom-repeat" items="[[_getPolymerBehaviors(descriptor)]]" sort="_compareDescriptors">
<iron-doc-behavior descriptor="[[item]]" anchor-id$="[[fragmentPrefix]][[item.name]]" fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-behavior></template>
</section>
<section anchor-id$="[[fragmentPrefix]]functions" hidden$="[[_noneToShow(_showProtected,_showInherited,descriptor,'functions')]]">
<h2>
<a href$="#[[fragmentPrefix]]functions" class="deeplink">
Exported Functions
</a>
</h2>
<template is="dom-repeat" items="[[descriptor.functions]]" sort="_compareDescriptors">
<iron-doc-function anchor-id$="[[fragmentPrefix]][[item.name]]" descriptor="[[item]]">
</iron-doc-function>
</template>
</section>
`,
is: 'iron-doc-module',
behaviors: [IronDocViewerBehavior],
properties: {
/**
* The module specifier of this module, used to give an example of
* how to import it. So if this is 'foo' we will tell users to do:
* `import {} from 'foo';`
*/
moduleSpecifier: String,
}
});