-
Notifications
You must be signed in to change notification settings - Fork 16
/
iron-doc-mixin.js
73 lines (61 loc) · 2.54 KB
/
iron-doc-mixin.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
/**
@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
*/
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-api.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-element` renders documentation about a JavaScript mixin from a JSON
descriptor output by
[Polymer Analyzer](https://github.com/Polymer/polymer-analyzer).
*/
Polymer({
_template: html`
<style include="iron-doc-viewer-styles prism-theme-default">
:host {
@apply --iron-doc-docs;
}
</style>
<prism-highlighter></prism-highlighter>
<h1>[[title]]</h1>
<p hidden$="[[!descriptor.summary]]">[[descriptor.summary]]</p>
<div>Path: <code>[[descriptor.path]]</code></div>
<div hidden$="[[!descriptor.mixins]]">Mixins:
<span>
<template is="dom-repeat" items="[[descriptor.mixins]]" sort="_compareDescriptors"><!--
--><span hidden$="[[!index]]">, </span>
<a class="name deeplink mixin" href$="[[baseHref]]/mixins/[[item]]">[[item]]</a><!--
--></template>
</span>
</div>
<section id="description" hidden$="[[!descriptor.description]]" anchor-id$="[[fragmentPrefix]]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>
<iron-doc-api descriptor="[[descriptor]]" fragment-prefix="[[fragmentPrefix]]">
</iron-doc-api>
`,
is: 'iron-doc-mixin',
behaviors: [IronDocViewerBehavior],
properties: {title: {computed: '_computeTitle(descriptor)', notify: true}},
_computeTitle: function(descriptor) {
return descriptor && 'Mixin ' + descriptor.name;
}
});