kopia lustrzana https://github.com/elk-zone/elk
				
				
				
			
		
			
				
	
	
		
			39 wiersze
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			39 wiersze
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import { STORAGE_KEY_CURRENT_USER_HANDLE, STORAGE_KEY_SETTINGS } from '~/constants'
 | |
| import { oldFontSizeMap } from '~/constants/options'
 | |
| 
 | |
| /**
 | |
|  * Injecting scripts before renders
 | |
|  */
 | |
| export default defineNuxtPlugin(() => {
 | |
|   useHead({
 | |
|     script: [
 | |
|       {
 | |
|         innerHTML: `
 | |
| ;(function() {
 | |
|   const handle = localStorage.getItem('${STORAGE_KEY_CURRENT_USER_HANDLE}') || '[anonymous]'
 | |
|   const allSettings = JSON.parse(localStorage.getItem('${STORAGE_KEY_SETTINGS}') || '{}')
 | |
|   const settings = allSettings[handle]
 | |
|   if (!settings) { return }
 | |
| 
 | |
|   const html = document.documentElement
 | |
|   ${process.dev ? 'console.log({ settings })' : ''}
 | |
| 
 | |
|   if (settings.fontSize) {
 | |
|     const oldFontSizeMap = ${JSON.stringify(oldFontSizeMap)}
 | |
|     html.style.setProperty('--font-size', oldFontSizeMap[settings.fontSize] || settings.fontSize)
 | |
|   }
 | |
|   if (settings.language) {
 | |
|     html.setAttribute('lang', settings.language)
 | |
|   }
 | |
|   if (settings.zenMode) {
 | |
|     html.classList.add('zen')
 | |
|   }
 | |
|   if (settings.themeColors) {
 | |
|     Object.entries(settings.themeColors).map(i => html.style.setProperty(i[0], i[1]))
 | |
|   }
 | |
| })()`.trim().replace(/\s*\n+\s*/g, ';'),
 | |
|       },
 | |
|     ],
 | |
|   })
 | |
| })
 |