primevue-mirror/layouts/AppDocumentation.vue

155 lines
5.3 KiB
Vue
Raw Normal View History

2021-03-17 11:29:01 +00:00
<script>
2022-09-06 11:52:18 +00:00
import EventBus from './AppEventBus';
2021-03-17 11:29:01 +00:00
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,
2021-03-25 09:04:37 +00:00
extPages: null,
2021-03-31 12:28:03 +00:00
extFiles: null,
2021-04-05 09:29:28 +00:00
component: null,
github: null
},
2021-04-15 14:53:33 +00:00
viewGithubListener: null,
2021-04-05 09:29:28 +00:00
mounted() {
2021-04-15 14:53:33 +00:00
this.viewGithubListener = () => {
2021-04-05 09:29:28 +00:00
window.open('https://github.com/primefaces/primevue/blob/master/src/views/' + this.github, '_blank');
2021-04-15 14:53:33 +00:00
};
EventBus.on('view-github', this.viewGithubListener);
2021-04-05 09:29:28 +00:00
},
beforeUnmount() {
2021-04-15 14:53:33 +00:00
EventBus.off('view-github', this.viewGithubListener);
2021-03-17 11:29:01 +00:00
},
methods: {
renderPanels() {
let tabs = [];
if (this.$slots.default) {
tabs.push(<TabPanel header="Documentation">{this.$slots.default()}</TabPanel>);
}
2021-04-05 09:29:28 +00:00
this.renderSource('options-api', tabs);
this.renderSource('composition-api', tabs);
2021-10-11 13:48:01 +00:00
this.renderSource('browser-source', tabs);
2022-06-14 13:25:50 +00:00
this.renderSource('demo1', tabs);
this.renderSource('demo2', tabs);
2021-03-17 11:29:01 +00:00
if (this.service) {
2021-03-23 10:47:50 +00:00
let serviceArr = [];
this.service.forEach(el => {
serviceArr.push(el.split(','))
})
2021-03-17 11:29:01 +00:00
/* eslint-disable */
2021-03-23 10:47:50 +00:00
serviceArr.forEach((el, i) => {
tabs.push(
2021-04-05 09:29:28 +00:00
<TabPanel key={el} header={`${el}.js`}>
2021-03-23 10:47:50 +00:00
<pre v-code="script"><code>
{services[el]}
</code></pre>
</TabPanel>
);
})
2021-03-17 11:29:01 +00:00
}
if (this.data) {
let dataArr = [];
this.data.forEach(el => {
dataArr.push(el.split(','))
})
2022-07-18 13:17:40 +00:00
2021-03-17 11:29:01 +00:00
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;
2021-04-05 09:29:28 +00:00
},
2021-10-11 13:48:01 +00:00
renderContent(source) {
if (source.tabName === 'Browser Source') {
const _imports = source.imports ? source.imports.replaceAll('<\\/script>', '<\/script>') : '';
2021-10-19 07:04:20 +00:00
return `
<!DOCTYPE html>
2021-10-11 13:48:01 +00:00
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<!-- PrimeVue -->
<link href="https://unpkg.com/primevue@^3/resources/themes/saga-blue/theme.css" rel="stylesheet" />
<link href="https://unpkg.com/primevue@^3/resources/primevue.min.css" rel="stylesheet" />
2022-01-13 11:03:59 +00:00
<link href="https://unpkg.com/primeflex@^3/primeflex.min.css" rel="stylesheet" />
2021-10-11 13:48:01 +00:00
<link href="https://unpkg.com/primeicons/primeicons.css" rel="stylesheet" />
<!-- Dependencies -->
<script src="https://unpkg.com/vue@next"><\/script>
2021-10-26 08:41:57 +00:00
<script src="https://unpkg.com/primevue@^3/core/core.min.js"><\/script>
2021-10-11 13:48:01 +00:00
<!-- Demo -->
${_imports}
2021-10-11 14:06:13 +00:00
<link href="./index.css" rel="stylesheet" />
2021-10-11 13:48:01 +00:00
</head>
<body>
${source.content.replace('<\\/script>', '<\/script>')}
</body>
</html>
`
}
return source.content.replace('<\\/script>', '<\/script>');
},
2021-04-05 09:29:28 +00:00
renderSource(sourceType, tabs) {
if (this.sources && this.sources[sourceType]) {
2022-07-18 13:17:40 +00:00
let extFiles = this.extFiles ? this.extFiles[sourceType] || this.extFiles : null;
extFiles = extFiles && Object.entries(extFiles).map(([key, value], i) => {
if (key === 'index.css' || !value.content) {
return null;
}
return (
<pre v-code><code>
{`\n/* ${key.replace('src/components/', '')} */\n`}
{this.renderContent(value)}
</code></pre>
)
});
2021-04-05 09:29:28 +00:00
tabs.push(
<TabPanel key={sourceType} header={this.sources[sourceType].tabName}>
<pre v-code><code>
2021-10-11 13:48:01 +00:00
{this.renderContent(this.sources[sourceType])}
2021-04-05 09:29:28 +00:00
</code></pre>
2022-07-18 13:17:40 +00:00
{extFiles}
2021-04-05 09:29:28 +00:00
</TabPanel>
);
}
2021-03-17 11:29:01 +00:00
}
},
render() {
return (
2021-04-05 09:29:28 +00:00
<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} />
2021-03-17 11:29:01 +00:00
<TabView>
{
this.renderPanels()
}
</TabView>
</div>
);
}
}
</script>