104 lines
3.3 KiB
Vue
104 lines
3.3 KiB
Vue
<script>
|
|
import EventBus from '@/AppEventBus';
|
|
import LiveEditor from './views/liveeditor/LiveEditor';
|
|
import { services, data } from './views/liveeditor/LiveEditorData';
|
|
|
|
export default {
|
|
name: 'appdoc',
|
|
props: {
|
|
name: null,
|
|
sources: null,
|
|
service: null,
|
|
data: null,
|
|
dependencies: null,
|
|
extPages: null,
|
|
extFiles: null,
|
|
component: null,
|
|
github: null
|
|
},
|
|
viewGithubListener: null,
|
|
mounted() {
|
|
this.viewGithubListener = () => {
|
|
window.open('https://github.com/primefaces/primevue/blob/master/src/views/' + this.github, '_blank');
|
|
};
|
|
EventBus.on('view-github', this.viewGithubListener);
|
|
},
|
|
beforeUnmount() {
|
|
EventBus.off('view-github', this.viewGithubListener);
|
|
},
|
|
methods: {
|
|
renderPanels() {
|
|
let tabs = [];
|
|
|
|
if (this.$slots.default) {
|
|
tabs.push(<TabPanel header="Documentation">{this.$slots.default()}</TabPanel>);
|
|
}
|
|
|
|
this.renderSource('options-api', tabs);
|
|
this.renderSource('composition-api', tabs);
|
|
|
|
if (this.service) {
|
|
let serviceArr = [];
|
|
|
|
this.service.forEach(el => {
|
|
serviceArr.push(el.split(','))
|
|
})
|
|
/* eslint-disable */
|
|
serviceArr.forEach((el, i) => {
|
|
tabs.push(
|
|
<TabPanel key={el} header={`${el}.js`}>
|
|
<pre v-code="script"><code>
|
|
{services[el]}
|
|
</code></pre>
|
|
</TabPanel>
|
|
);
|
|
})
|
|
}
|
|
|
|
if (this.data) {
|
|
let dataArr = [];
|
|
|
|
this.data.forEach(el => {
|
|
dataArr.push(el.split(','))
|
|
})
|
|
|
|
dataArr.forEach((el, i) => {
|
|
tabs.push(
|
|
<TabPanel key={`${el}_i`} header={`${el}.json`}>
|
|
<pre v-code="script" style={{maxHeight: '500px'}}><code>
|
|
{data[el]}
|
|
</code></pre>
|
|
</TabPanel>
|
|
)
|
|
});
|
|
}
|
|
|
|
return tabs;
|
|
},
|
|
renderSource(sourceType, tabs) {
|
|
if (this.sources && this.sources[sourceType]) {
|
|
tabs.push(
|
|
<TabPanel key={sourceType} header={this.sources[sourceType].tabName}>
|
|
<pre v-code><code>
|
|
{this.sources[sourceType].content.replace('<\\/script>', '<\/script>')}
|
|
</code></pre>
|
|
</TabPanel>
|
|
);
|
|
}
|
|
}
|
|
},
|
|
render() {
|
|
return (
|
|
<div class="content-section documentation" id="app-doc">
|
|
<LiveEditor name={this.name} sources={this.sources} service={this.service} data={this.data} dependencies={this.dependencies} extPages={this.extPages} extFiles={this.extFiles} component={this.component} />
|
|
<TabView>
|
|
{
|
|
this.renderPanels()
|
|
}
|
|
</TabView>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
</script>
|