primevue-mirror/components/doc/DocSectionCode.vue

172 lines
6.6 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
2023-10-06 14:00:02 +00:00
<div v-if="!embedded" :class="scrollable ? 'doc-section-code' : 'relative doc-section-code'">
<div
2023-10-07 14:34:18 +00:00
class="flex doc-section-code-buttons align-items-center justify-content-end z-1"
2023-10-06 14:00:02 +00:00
:style="scrollable ? { position: 'sticky', padding: '0.75rem 0.75rem 0 0' } : { position: 'absolute', top: '0.75rem', right: '0.75rem' }"
style="gap: 0.75rem"
>
2023-02-28 08:29:30 +00:00
<template v-if="codeMode !== 'basic' && !hideToggleCode">
2023-10-10 15:46:53 +00:00
<button :class="['py-0 px-2 border-round h-2rem', { 'text-primary': codeLang === 'composition' }]" @click="codeLang = 'composition'">Composition API</button>
<button :class="['py-0 px-2 border-round h-2rem', { 'text-primary': codeLang === 'options' }]" @click="codeLang = 'options'">Options API</button>
2023-02-28 08:29:30 +00:00
</template>
<template v-if="!hideToggleCode">
2023-10-10 15:46:53 +00:00
<button
2023-02-28 08:29:30 +00:00
v-tooltip.bottom="{ value: 'Toggle Full Code', class: 'doc-section-code-tooltip' }"
type="button"
2023-03-20 09:59:03 +00:00
@click="toggleCodeMode('composition')"
2023-10-10 15:46:53 +00:00
class="border-circle h-2rem w-2rem p-0 inline-flex align-items-center justify-content-center"
>
<i class="pi pi-code"></i>
</button>
2023-02-28 08:29:30 +00:00
</template>
<template v-if="!hideToggleCode && code.data">
2023-10-10 15:46:53 +00:00
<button v-tooltip.bottom="{ value: 'View Data', class: 'doc-section-code-tooltip' }" type="button" @click="onToggleData" class="border-circle h-2rem w-2rem p-0 inline-flex align-items-center justify-content-center">
<i class="pi pi-database"></i>
</button>
2023-02-28 08:29:30 +00:00
</template>
<template v-if="!hideCodeSandbox">
2023-10-10 15:46:53 +00:00
<button v-tooltip.bottom="{ value: 'Edit in CodeSandbox', class: 'doc-section-code-tooltip' }" type="button" class="border-circle h-2rem w-2rem p-0 inline-flex align-items-center justify-content-center" @click="showCodesandbox">
<svg role="img" viewBox="0 0 24 24" width="16" height="16" fill="currentColor" style="display: 'block'">
<path
d="M2 6l10.455-6L22.91 6 23 17.95 12.455 24 2 18V6zm2.088 2.481v4.757l3.345 1.86v3.516l3.972 2.296v-8.272L4.088 8.481zm16.739 0l-7.317 4.157v8.272l3.972-2.296V15.1l3.345-1.861V8.48zM5.134 6.601l7.303 4.144 7.32-4.18-3.871-2.197-3.41 1.945-3.43-1.968L5.133 6.6z"
/>
</svg>
</button>
2023-02-28 08:29:30 +00:00
</template>
<template v-if="!hideStackBlitz">
2023-10-10 15:46:53 +00:00
<button v-tooltip.bottom="{ value: 'Edit in StackBlitz', class: 'doc-section-code-tooltip' }" type="button" class="border-circle h-2rem w-2rem p-0 inline-flex align-items-center justify-content-center" @click="showStackblitz">
<svg role="img" viewBox="0 0 24 24" width="16" height="16" fill="currentColor" style="display: 'block'">
<path d="M0 15.98H8.15844L3.40299 27.26L19 11.1945H10.7979L15.5098 0L0 15.98Z" />
</svg>
</button>
2023-02-28 08:29:30 +00:00
</template>
2023-10-10 15:46:53 +00:00
<button v-tooltip.bottom="{ value: 'Copy Code', class: 'doc-section-code-tooltip' }" type="button" @click="copyCode" class="border-circle h-2rem w-2rem p-0 inline-flex align-items-center justify-content-center">
<i class="pi pi-copy"></i>
</button>
2023-02-28 08:29:30 +00:00
</div>
2023-10-07 15:46:59 +00:00
<div :style="scrollable ? { 'max-height': '40rem' } : undefined">
2023-08-16 14:34:47 +00:00
<template v-if="codeMode === 'basic' && importCode">
<pre v-code.script><code>{{ code.basic }}
2023-02-28 17:40:48 +00:00
</code></pre>
2023-08-16 14:34:47 +00:00
</template>
2023-02-28 08:29:30 +00:00
2023-08-16 14:34:47 +00:00
<template v-if="codeMode === 'basic' && !importCode">
2023-09-22 12:54:14 +00:00
<pre v-code><code>
{{ code.basic }}
2023-02-28 08:29:30 +00:00
</code></pre>
2023-08-16 14:34:47 +00:00
</template>
2023-02-28 08:29:30 +00:00
2023-08-16 14:34:47 +00:00
<template v-if="codeMode !== 'basic' && codeLang === 'options'">
2023-09-22 12:54:14 +00:00
<pre v-code><code>
{{ code.options }}
2023-02-28 08:29:30 +00:00
</code></pre>
2023-08-16 14:34:47 +00:00
</template>
2023-02-28 08:29:30 +00:00
2023-08-16 14:34:47 +00:00
<template v-if="codeMode !== 'basic' && codeLang === 'composition'">
2023-09-22 12:54:14 +00:00
<pre v-code><code>
{{ code.composition }}
2023-02-28 08:29:30 +00:00
</code></pre>
2023-08-16 14:34:47 +00:00
</template>
2023-02-28 08:29:30 +00:00
2023-08-16 14:34:47 +00:00
<template v-if="codeMode !== 'basic' && codeLang === 'data'">
2023-09-22 12:54:14 +00:00
<pre v-code.json><code>
{{ code.data }}
2023-02-28 08:29:30 +00:00
</code></pre>
2023-08-16 14:34:47 +00:00
</template>
</div>
2023-09-22 12:54:14 +00:00
<div v-if="scrollable" class="h-1rem"></div>
2023-02-28 08:29:30 +00:00
</div>
2023-07-25 19:30:22 +00:00
<div v-else id="embed"></div>
2023-02-28 08:29:30 +00:00
</template>
<script>
import { useCodeSandbox, useStackBlitz } from './codeeditor';
export default {
inheritAttrs: false,
props: {
code: {
type: null,
default: null
},
service: {
type: Array,
default: null
},
hideToggleCode: {
type: Boolean,
default: false
},
hideCodeSandbox: {
type: Boolean,
default: false
},
hideStackBlitz: {
type: Boolean,
default: false
},
dependencies: {
type: null,
default: null
},
component: {
type: String,
default: null
},
extFiles: {
type: null,
default: null
2023-02-28 17:40:48 +00:00
},
importCode: {
type: Boolean,
default: false
2023-07-25 19:30:22 +00:00
},
embedded: {
type: Boolean,
default: false
2023-09-22 12:54:14 +00:00
},
scrollable: {
type: Boolean,
default: false
2023-02-28 08:29:30 +00:00
}
},
data() {
return {
codeMode: 'basic',
2023-03-20 09:59:03 +00:00
codeLang: this.code['options'] ? 'composition' : 'basic'
2023-02-28 08:29:30 +00:00
};
},
2023-07-25 19:30:22 +00:00
mounted() {
this.embedded && useStackBlitz(this.codeLang, this.code['composition'], this.service, this.code.pages, this.dependencies, this.component, this.extFiles, this.embedded);
},
2023-02-28 08:29:30 +00:00
methods: {
toggleCodeMode(content) {
this.codeMode = this.codeMode === 'basic' ? content : 'basic';
},
onToggleData() {
this.toggleCodeMode('data');
this.codeLang = 'data';
},
async copyCode() {
await navigator.clipboard.writeText(this.code[this.codeLang]);
},
showCodesandbox() {
useCodeSandbox(this.codeLang, this.code[this.codeLang === 'data' ? 'options' : this.codeLang], this.service, this.code.pages, this.dependencies, this.component, this.extFiles);
},
showStackblitz() {
useStackBlitz(this.codeLang, this.code[this.codeLang === 'data' ? 'options' : this.codeLang], this.service, this.code.pages, this.dependencies, this.component, this.extFiles);
}
}
};
</script>