-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lazy initialize StyleSheet for better handling
- Loading branch information
1 parent
2416abd
commit 561aaa4
Showing
4 changed files
with
41 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@teiler/svelte": patch | ||
"@teiler/vue": patch | ||
--- | ||
|
||
Lazy initialize StyleSheet for better handling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
import { type Sheet, createStyleSheet } from '@teiler/core' | ||
import { getContext } from 'svelte' | ||
|
||
export const styleSheet = createStyleSheet({}) | ||
export let styleSheet = null | ||
|
||
export const StyleSheet = 'STYLE_SHEET' | ||
|
||
export function getStyleSheet(): Sheet { | ||
return getContext(StyleSheet) || styleSheet | ||
const fromContext = getContext<Sheet>(StyleSheet) | ||
|
||
if (fromContext) { | ||
return fromContext | ||
} | ||
|
||
if (styleSheet === null) { | ||
styleSheet = createStyleSheet({}) | ||
} | ||
|
||
return styleSheet | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { type Sheet, createStyleSheet } from '@teiler/core' | ||
import { inject } from 'vue' | ||
|
||
export let styleSheet = null | ||
|
||
export const StyleSheet = 'STYLE_SHEET' | ||
|
||
export function getStyleSheet(): Sheet { | ||
const provided = inject<Sheet>('STYLE_SHEET', () => createStyleSheet({}), true) | ||
|
||
if (provided) { | ||
return provided | ||
} | ||
|
||
if (styleSheet === null) { | ||
styleSheet = createStyleSheet({}) | ||
} | ||
|
||
return styleSheet | ||
} |