- Use js dynamic calculation instead of container query - Remove @tailwindcss/container-queries
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { definePreset } from '@primevue/themes'
|
|
import Aura from '@primevue/themes/aura'
|
|
import { containerDirective } from 'hooks/container'
|
|
import { resizeDirective } from 'hooks/resize'
|
|
import PrimeVue from 'primevue/config'
|
|
import ConfirmationService from 'primevue/confirmationservice'
|
|
import ToastService from 'primevue/toastservice'
|
|
import Tooltip from 'primevue/tooltip'
|
|
import { app } from 'scripts/comfyAPI'
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import { i18n } from './i18n'
|
|
import './style.css'
|
|
|
|
const ComfyUIPreset = definePreset(Aura, {
|
|
semantic: {
|
|
primary: Aura['primitive'].blue,
|
|
},
|
|
})
|
|
|
|
function createVueApp(rootContainer: string | HTMLElement) {
|
|
const app = createApp(App)
|
|
app.directive('tooltip', Tooltip)
|
|
app.directive('resize', resizeDirective)
|
|
app.directive('container', containerDirective)
|
|
app
|
|
.use(PrimeVue, {
|
|
theme: {
|
|
preset: ComfyUIPreset,
|
|
options: {
|
|
prefix: 'p',
|
|
cssLayer: {
|
|
name: 'primevue',
|
|
order: 'tailwind-base, primevue, tailwind-utilities',
|
|
},
|
|
// This is a workaround for the issue with the dark mode selector
|
|
// https://github.com/primefaces/primevue/issues/5515
|
|
darkModeSelector: '.dark-theme, :root:has(.dark-theme)',
|
|
},
|
|
},
|
|
})
|
|
.use(ToastService)
|
|
.use(ConfirmationService)
|
|
.use(i18n)
|
|
.mount(rootContainer)
|
|
}
|
|
|
|
app.registerExtension({
|
|
name: 'Comfy.ModelManager',
|
|
setup() {
|
|
const container = document.createElement('div')
|
|
container.id = 'comfyui-model-manager'
|
|
document.body.appendChild(container)
|
|
|
|
createVueApp(container)
|
|
},
|
|
})
|