* feat(frontend): add global css * feat(frontend): working styling * feat(frontend): Add default classes * wip * wip * wip * wip * wip * wip * wip * wip * feat(frontend): Add global css v0 * feat(frontend): Add global css v0 * add css workers * fix(frontend): Fix overflow issue * wip * feat(frontend): check for EE before injecting global css * wip * wip * wip * fix(frontend): fix typing issues * fix(frontend): fix typing issues * fix(frontend): fix global css * fix(frontend): add missing mapping * fix(frontend): Fix how styles are loaded * fix(frontend): fix preview * feat(frontend): fix everything * feat(frontend): fix class autocomplete * feat(frontend): remove console.log * feat(frontend): update tooltup * feat(frontend): eval * feat(frontend): eval * feat(frontend): fix build * feat(frontend): fix initial binding * feat(frontend): wip * wip * feat(frontend): Finish theme v0 * feat(frontend): Fix resource page * feat(frontend): fix build * feat(frontend): theme UI * feat(frontend): theme UI * feat(frontend): theme UI * feat(frontend): fix EE * feat(frontend): add missing warning * feat(frontend): fix preview * feat(frontend): fix global css by component initialisation * feat(frontend): remove unused libraries * feat(frontend): fix EE check * feat(frontend): fix EE check * feat(frontend): fix preview * feat(frontend): Fix migration * feat(frontend): Fix issues * feat(frontend): add missing disabled in migration modal * feat(frontend): Fix preview * feat(frontend): Fix preview * all * all * all * sqlx --------- Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
27 lines
771 B
Svelte
27 lines
771 B
Svelte
<script lang="ts">
|
|
import { Drawer, DrawerContent } from '$lib/components/common'
|
|
import { Highlight } from 'svelte-highlight'
|
|
import type { AppTheme } from '../../types'
|
|
import css from 'svelte-highlight/languages/css'
|
|
import { resolveTheme } from './themeUtils'
|
|
import { workspaceStore } from '$lib/stores'
|
|
|
|
export let theme: AppTheme
|
|
|
|
let code: string | undefined = undefined
|
|
let codeDrawer: Drawer
|
|
|
|
export async function openDrawer() {
|
|
codeDrawer.openDrawer()
|
|
code = await resolveTheme(theme, $workspaceStore)
|
|
}
|
|
</script>
|
|
|
|
<Drawer bind:this={codeDrawer}>
|
|
<DrawerContent title="Theme viewer" on:close={codeDrawer.closeDrawer}>
|
|
<div class="p-2 border rounded-sm">
|
|
<Highlight code={code ?? ''} language={css} />
|
|
</div>
|
|
</DrawerContent>
|
|
</Drawer>
|