2024-11-10 19:16:58 +00:00
|
|
|
<template>
|
2024-11-12 09:18:07 +00:00
|
|
|
<Drawer v-model:visible="$appState.designerActive" header="Theme Designer" position="right" class="designer !w-screen md:!w-[48rem]" :modal="false">
|
2024-11-10 19:16:58 +00:00
|
|
|
<Tabs value="0">
|
|
|
|
<TabList>
|
|
|
|
<Tab value="0">Primitive</Tab>
|
|
|
|
<Tab value="1">Semantic</Tab>
|
|
|
|
<Tab value="2">Component</Tab>
|
|
|
|
</TabList>
|
|
|
|
<TabPanels class="!px-0">
|
|
|
|
<TabPanel value="0">
|
|
|
|
<div class="flex flex-col gap-3">
|
|
|
|
<DesignBorderRadius />
|
|
|
|
<DesignColors />
|
|
|
|
</div>
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel value="1">
|
|
|
|
<Accordion :value="['0', '1']" multiple>
|
|
|
|
<AccordionPanel value="0">
|
|
|
|
<AccordionHeader>Common</AccordionHeader>
|
|
|
|
<AccordionContent>
|
|
|
|
<div class="flex flex-col gap-3">
|
|
|
|
<DesignGeneral />
|
|
|
|
<DesignFormField />
|
|
|
|
<DesignList />
|
|
|
|
<DesignNavigation />
|
|
|
|
<DesignOverlay />
|
|
|
|
</div>
|
|
|
|
</AccordionContent>
|
|
|
|
</AccordionPanel>
|
|
|
|
|
|
|
|
<AccordionPanel value="1">
|
|
|
|
<AccordionHeader>Color Scheme</AccordionHeader>
|
|
|
|
<AccordionContent>
|
|
|
|
<Tabs value="cs-0">
|
|
|
|
<TabList>
|
|
|
|
<Tab value="cs-0">Light</Tab>
|
|
|
|
<Tab value="cs-1">Dark</Tab>
|
|
|
|
</TabList>
|
|
|
|
<TabPanels class="!px-0">
|
|
|
|
<TabPanel value="cs-0">
|
|
|
|
<DesignCS :value="preset.semantic.colorScheme.light" />
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel value="cs-1">
|
|
|
|
<DesignCS :value="preset.semantic.colorScheme.dark" />
|
|
|
|
</TabPanel>
|
|
|
|
</TabPanels>
|
|
|
|
</Tabs>
|
|
|
|
</AccordionContent>
|
|
|
|
</AccordionPanel>
|
|
|
|
</Accordion>
|
|
|
|
</TabPanel>
|
2024-11-12 09:18:07 +00:00
|
|
|
<TabPanel value="2"> <div class="p-4">Component tokens are not supported by the Visual Editor at the moment.</div></TabPanel>
|
2024-11-10 19:16:58 +00:00
|
|
|
</TabPanels>
|
|
|
|
</Tabs>
|
|
|
|
|
|
|
|
<template #footer>
|
2024-11-12 09:56:37 +00:00
|
|
|
<div class="flex justify-between gap-2">
|
|
|
|
<Button type="button" @click="download" label="Download" variant="outlined" icon="pi pi-download" />
|
2024-11-10 19:16:58 +00:00
|
|
|
<Button type="button" @click="apply" label="Apply" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</Drawer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { updatePreset } from '@primevue/themes';
|
2024-11-12 09:18:07 +00:00
|
|
|
import AuraBase from '@primevue/themes/aura/base';
|
2024-11-10 19:16:58 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
$preset: this.preset
|
|
|
|
};
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2024-11-10 19:53:33 +00:00
|
|
|
preset: AuraBase
|
2024-11-10 19:16:58 +00:00
|
|
|
};
|
|
|
|
},
|
2024-11-10 19:53:33 +00:00
|
|
|
mounted() {
|
|
|
|
this.preset.semantic.primary = this.preset.primitive.emerald;
|
|
|
|
this.preset.semantic.colorScheme.light.surface = this.preset.primitive.slate;
|
|
|
|
this.preset.semantic.colorScheme.dark.surface = this.preset.primitive.zinc;
|
|
|
|
},
|
2024-11-10 19:16:58 +00:00
|
|
|
methods: {
|
|
|
|
apply() {
|
|
|
|
updatePreset(this.preset);
|
2024-11-12 09:56:37 +00:00
|
|
|
},
|
|
|
|
download() {
|
|
|
|
const theme = JSON.stringify(this.preset, null, 4).replace(/"([^"]+)":/g, '$1:');
|
|
|
|
const textContent = `import { createApp } from "vue";
|
|
|
|
import PrimeVue from "primevue/config";
|
|
|
|
import Aura from "@primevue/themes/aura";
|
|
|
|
import { definePreset } from "@primevue/themes";
|
|
|
|
|
|
|
|
const app = createApp(App);
|
|
|
|
|
|
|
|
const MyPreset = definePreset(Aura, ${theme});
|
|
|
|
|
|
|
|
app.use(PrimeVue, {
|
|
|
|
theme: {
|
|
|
|
preset: MyPreset
|
|
|
|
},
|
|
|
|
});
|
|
|
|
app.mount("#app");
|
|
|
|
`;
|
|
|
|
const blob = new Blob([textContent], { type: 'text/plain' });
|
|
|
|
|
|
|
|
const url = URL.createObjectURL(blob);
|
|
|
|
|
|
|
|
const a = document.createElement('a');
|
|
|
|
|
|
|
|
a.href = url;
|
|
|
|
a.download = 'mytheme.js';
|
|
|
|
document.body.appendChild(a);
|
|
|
|
a.click();
|
|
|
|
|
|
|
|
document.body.removeChild(a);
|
|
|
|
URL.revokeObjectURL(url);
|
2024-11-10 19:16:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|