mirror of
https://github.com/kognise/water.css.git
synced 2025-08-15 09:34:26 +02:00
Update docs pt.1
This commit is contained in:
396
docs/script.js
396
docs/script.js
@@ -1,187 +1,237 @@
|
||||
// @ts-check
|
||||
/** @typedef {'dark' | 'light'} Theme */
|
||||
/** @typedef {keyof typeof FILE_SIZES} FileName */
|
||||
/** @typedef {'success' | 'failed'} CopyStatus */
|
||||
/**
|
||||
* @typedef {Object} VersionOptions Configurable options for water.css versions
|
||||
* @prop {Theme} theme
|
||||
* @prop {boolean} isLegacy
|
||||
* @prop {boolean} isStandalone
|
||||
*/
|
||||
/**
|
||||
* @typedef {Object} Libraries External packages exposed on `window` (loaded through `<script>`)
|
||||
* @prop {typeof import('vue').default} Vue
|
||||
* @prop {Clipboard} clipboard
|
||||
* @prop {import('favicon-mode-switcher')} faviconModeSwitcher
|
||||
*/
|
||||
/**
|
||||
* @typedef {Object} VueData State used by the version picker
|
||||
* @prop {VersionOptions} versionOptions
|
||||
* @prop {?CopyStatus} copyStatus
|
||||
* @prop {?Theme} preferedColorScheme
|
||||
*/
|
||||
const cdnBase = 'https://cdn.jsdelivr.net/npm/water.css@2/dist/'
|
||||
const localBase = './water.css/'
|
||||
|
||||
/** Reference to global window, but with properties for loaded libraries. */
|
||||
const w = /** @type {Window & Libraries} */ (window)
|
||||
const queryParams = new URLSearchParams(w.location.search)
|
||||
const supportsCssVars = typeof CSS !== 'undefined' && CSS.supports('color', 'var(--clr)')
|
||||
|
||||
/** The base URI from where the docs page loads the CSS files. */
|
||||
const DEV_BASE = './water.css/'
|
||||
/** The base URI from where instructions show to load the CSS files. */
|
||||
const CDN_BASE = 'https://cdn.jsdelivr.net/npm/water.css@2/dist/'
|
||||
|
||||
/** An object mapping the (minified + gzipped) fileSize in KB to a fileName. */
|
||||
const FILE_SIZES = {
|
||||
'dark.min.css': 1.4,
|
||||
'dark.standalone.min.css': 1.31,
|
||||
'dark-legacy.min.css': 0.177 + 1.16 + 1.15,
|
||||
'dark-legacy.standalone.min.css': 1.16,
|
||||
'light.min.css': 1.4,
|
||||
'light.standalone.min.css': 1.3,
|
||||
'light-legacy.min.css': 0.178 + 1.16 + 1.15,
|
||||
'light-legacy.standalone.min.css': 1.15
|
||||
const fileSizes = {
|
||||
dark: 2.3,
|
||||
light: 2.29,
|
||||
auto: 2.96
|
||||
}
|
||||
|
||||
/** Takes in version options and returns the respective CSS file name. */
|
||||
const getFileName = (/** @type {VersionOptions} */ { theme, isLegacy, isStandalone }) => {
|
||||
const legacySuffix = isLegacy ? '-legacy' : ''
|
||||
const standaloneExt = isStandalone ? '.standalone' : ''
|
||||
return /** @type {FileName} */ (`${theme}${legacySuffix}${standaloneExt}.min.css`)
|
||||
const themeForm = document.getElementById('theme-form')
|
||||
const linkSnippet = document.getElementById('link-snippet')
|
||||
const stylesheet = document.getElementById('js-stylesheet')
|
||||
const startupStylesheet = document.getElementById('js-startup-stylesheet')
|
||||
|
||||
const table = {
|
||||
fileName: document.getElementById('table-file-name'),
|
||||
fileSize: document.getElementById('table-file-size'),
|
||||
theme: document.getElementById('table-theme'),
|
||||
browserSupport: document.getElementById('table-browser-support')
|
||||
}
|
||||
|
||||
/** Takes in version options and returns the corresponding file size in KB. */
|
||||
const getFileSize = (/** @type {VersionOptions} */ options) => FILE_SIZES[getFileName(options)] || 0
|
||||
const updateTheme = () => {
|
||||
const theme = themeForm.theme.value
|
||||
const fileName = `${theme === 'auto' ? 'water' : theme}.min.css`
|
||||
const cdnUrl = `${cdnBase}${fileName}`
|
||||
const localUrl = `${localBase}${fileName}`
|
||||
|
||||
/** Takes in version options and returns an HTML snippet that preloads the main stylesheet and
|
||||
* conditionally preloads the alternative stylesheet (if the alternative theme is active). */
|
||||
const getFilePreloadSnippet = (/** @type {VersionOptions} */ { theme, isLegacy, isStandalone }) => {
|
||||
const alternativeTheme = theme === 'dark' ? 'light' : 'dark'
|
||||
const alternativeFile = getFileName({ theme: alternativeTheme, isLegacy, isStandalone })
|
||||
stylesheet.href = localUrl
|
||||
|
||||
return `
|
||||
<!-- Preload the required stylesheets (optional) -->
|
||||
<link rel="preload" as="style" href="${CDN_BASE}${getFileName({ theme, isLegacy, isStandalone })}">
|
||||
<link rel="preload" as="style" href="${CDN_BASE}${alternativeFile}" media="(prefers-color-scheme: ${alternativeTheme})">`
|
||||
}
|
||||
linkSnippet.innerText = `<link rel="stylesheet" href="${cdnUrl}">`
|
||||
table.fileName.innerText = fileName
|
||||
table.fileSize.innerText = `${fileSizes[theme].toFixed(2)} kb`
|
||||
|
||||
/** Takes in version options and returns the code snippet instructing users how to load the file. */
|
||||
const getFileSnippet = (/** @type {VersionOptions} */ { theme, isLegacy, isStandalone }) => {
|
||||
const fileName = getFileName({ theme, isLegacy, isStandalone })
|
||||
const stylesheetSnippet = `<link rel="stylesheet" href="${CDN_BASE}${fileName}">`
|
||||
|
||||
if (!isLegacy || isStandalone) return stylesheetSnippet
|
||||
|
||||
const preloadSnippet = getFilePreloadSnippet({ theme, isLegacy, isStandalone: true })
|
||||
return (preloadSnippet + '\n\n' + stylesheetSnippet).trim()
|
||||
}
|
||||
|
||||
/** Handles elements external to the version picker that still need to be kept
|
||||
* up to date with the current version, e.g. switching images from dark to light. */
|
||||
const externalElements = {
|
||||
_productHunt: /** @type {HTMLImageElement} */ (document.querySelector('#js-producthunt')),
|
||||
_stylesheet: /** @type {HTMLLinkElement} */ (document.querySelector('#js-stylesheet')),
|
||||
_removeStartupStylesheet: () => {
|
||||
const startupStylesheet = document.head.querySelector('#js-startup-stylesheet')
|
||||
if (startupStylesheet) document.head.removeChild(startupStylesheet)
|
||||
externalElements._stylesheet.removeEventListener('load', externalElements._removeStartupStylesheet)
|
||||
},
|
||||
_updateProductHunt: (/** @type {Theme} */ theme) => {
|
||||
externalElements._productHunt.src = externalElements._productHunt.src.replace(/dark|light/, theme)
|
||||
},
|
||||
_updateStylesheet: (/** @type {FileName} */ fileName) => {
|
||||
externalElements._stylesheet.href = DEV_BASE + fileName
|
||||
},
|
||||
|
||||
/** Sets up listener to remove startup version of water.css when right one loads, then updates */
|
||||
init: (/** @type {VersionOptions} */ options, /** @type {?Theme} */ preferedTheme) => {
|
||||
externalElements._stylesheet.addEventListener('load', externalElements._removeStartupStylesheet)
|
||||
externalElements.update(options, preferedTheme)
|
||||
},
|
||||
/** Takes current version + the user's prefered scheme and updates all external elements. */
|
||||
update: (/** @type {VersionOptions} */ options, /** @type {?Theme} */ preferedTheme) => {
|
||||
const displayedTheme = options.isStandalone ? options.theme : preferedTheme || options.theme
|
||||
|
||||
externalElements._updateStylesheet(getFileName(options))
|
||||
externalElements._updateProductHunt(displayedTheme)
|
||||
if (theme === 'auto') {
|
||||
table.theme.innerHTML = 'Defaults to dark, but respects user-defined theme settings. Detected via <code>prefers-color-scheme</code>'
|
||||
table.browserSupport.innerHTML = `
|
||||
All current browsers
|
||||
(<a href="https://caniuse.com/#feat=css-variables" target="_blank">support for CSS Custom Properties</a>)
|
||||
`
|
||||
} else {
|
||||
table.theme.innerText = `Theme is forced to ${theme}`
|
||||
table.browserSupport.innerText = 'All browsers (including Internet Explorer)'
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets up a media query for the given color scheme and runs the callback on change.
|
||||
* @param {Theme} scheme
|
||||
* @param {(matches: boolean) => any} queryHandler
|
||||
*/
|
||||
const createColorSchemeListener = (scheme, queryHandler) => {
|
||||
const mediaQuery = w.matchMedia(`(prefers-color-scheme: ${scheme})`)
|
||||
mediaQuery.addListener(query => queryHandler(query.matches))
|
||||
queryHandler(mediaQuery.matches)
|
||||
}
|
||||
themeForm.addEventListener('input', updateTheme)
|
||||
|
||||
const themeFromParams = queryParams.get('theme')
|
||||
/** @type {VersionOptions} */
|
||||
const initialVersionOptions = {
|
||||
theme: themeFromParams === 'dark' || themeFromParams === 'light' ? themeFromParams : 'dark',
|
||||
isLegacy: queryParams.has('legacy') || !supportsCssVars,
|
||||
isStandalone: queryParams.has('standalone')
|
||||
}
|
||||
updateTheme()
|
||||
startupStylesheet.remove()
|
||||
|
||||
new w.Vue({ // eslint-disable-line no-new
|
||||
el: '#installation',
|
||||
filters: {
|
||||
capitalize: (/** @type {string} */ str) => str.charAt(0).toUpperCase() + str.slice(1)
|
||||
},
|
||||
/** @type {VueData} */
|
||||
data: {
|
||||
versionOptions: initialVersionOptions,
|
||||
preferedColorScheme: null,
|
||||
copyStatus: null
|
||||
},
|
||||
computed: {
|
||||
/** @returns {boolean} */
|
||||
isOverwritten () {
|
||||
const { isStandalone, theme } = this.versionOptions
|
||||
if (isStandalone || !this.preferedColorScheme) return false
|
||||
return theme !== this.preferedColorScheme
|
||||
},
|
||||
/** @returns {{ fileName: string, fileSize: string, fileSnippet: string }} */
|
||||
selectedVersion () {
|
||||
return {
|
||||
fileName: getFileName(this.versionOptions),
|
||||
fileSize: getFileSize(this.versionOptions).toFixed(2),
|
||||
fileSnippet: getFileSnippet(this.versionOptions)
|
||||
}
|
||||
}
|
||||
},
|
||||
created () {
|
||||
createColorSchemeListener('dark', match => match && (this.preferedColorScheme = 'dark'))
|
||||
createColorSchemeListener('light', match => match && (this.preferedColorScheme = 'light'))
|
||||
// // @ts-check
|
||||
// /** @typedef {'dark' | 'light'} Theme */
|
||||
// /** @typedef {keyof typeof FILE_SIZES} FileName */
|
||||
// /** @typedef {'success' | 'failed'} CopyStatus */
|
||||
// /**
|
||||
// * @typedef {Object} VersionOptions Configurable options for water.css versions
|
||||
// * @prop {Theme} theme
|
||||
// * @prop {boolean} isLegacy
|
||||
// * @prop {boolean} isStandalone
|
||||
// */
|
||||
// /**
|
||||
// * @typedef {Object} Libraries External packages exposed on `window` (loaded through `<script>`)
|
||||
// * @prop {typeof import('vue').default} Vue
|
||||
// * @prop {Clipboard} clipboard
|
||||
// * @prop {import('favicon-mode-switcher')} faviconModeSwitcher
|
||||
// */
|
||||
// /**
|
||||
// * @typedef {Object} VueData State used by the version picker
|
||||
// * @prop {VersionOptions} versionOptions
|
||||
// * @prop {?CopyStatus} copyStatus
|
||||
// * @prop {?Theme} preferedColorScheme
|
||||
// */
|
||||
|
||||
externalElements.init(this.versionOptions, this.preferedColorScheme)
|
||||
},
|
||||
methods: {
|
||||
getTooltipMessage (/** @type {Theme} */ theme) {
|
||||
if (this.versionOptions.theme === theme && this.isOverwritten) {
|
||||
return 'Your theme selection is currently overwritten by the theme setting on your device.'
|
||||
} else return "Selected theme can be overwritten by theme setting on user's device."
|
||||
},
|
||||
copyToClipboard () {
|
||||
Promise.resolve()
|
||||
.then(() => w.clipboard.writeText(this.selectedVersion.fileSnippet))
|
||||
.then(() => (this.copyStatus = 'success'))
|
||||
.catch(() => (this.copyStatus = 'failed'))
|
||||
setTimeout(() => (this.copyStatus = null), 1000)
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
preferedColorScheme (/** @type {Theme} */ nextScheme) {
|
||||
externalElements.update(this.versionOptions, nextScheme)
|
||||
},
|
||||
versionOptions: {
|
||||
deep: true,
|
||||
handler (/** @type {VersionOptions} */ nextOptions) {
|
||||
externalElements.update(nextOptions, this.preferedColorScheme)
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
// /** Reference to global window, but with properties for loaded libraries. */
|
||||
// const w = /** @type {Window & Libraries} */ (window)
|
||||
// const queryParams = new URLSearchParams(w.location.search)
|
||||
// const supportsCssVars = typeof CSS !== 'undefined' && CSS.supports('color', 'var(--clr)')
|
||||
|
||||
// /** The base URI from where the docs page loads the CSS files. */
|
||||
// const DEV_BASE = './water.css/'
|
||||
// /** The base URI from where instructions show to load the CSS files. */
|
||||
// const CDN_BASE = 'https://cdn.jsdelivr.net/npm/water.css@2/dist/'
|
||||
|
||||
// /** An object mapping the (minified + gzipped) fileSize in KB to a fileName. */
|
||||
// const FILE_SIZES = {
|
||||
// 'dark.min.css': 1.4,
|
||||
// 'dark.standalone.min.css': 1.31,
|
||||
// 'dark-legacy.min.css': 0.177 + 1.16 + 1.15,
|
||||
// 'dark-legacy.standalone.min.css': 1.16,
|
||||
// 'light.min.css': 1.4,
|
||||
// 'light.standalone.min.css': 1.3,
|
||||
// 'light-legacy.min.css': 0.178 + 1.16 + 1.15,
|
||||
// 'light-legacy.standalone.min.css': 1.15
|
||||
// }
|
||||
|
||||
// /** Takes in version options and returns the respective CSS file name. */
|
||||
// const getFileName = (/** @type {VersionOptions} */ { theme, isLegacy, isStandalone }) => {
|
||||
// const legacySuffix = isLegacy ? '-legacy' : ''
|
||||
// const standaloneExt = isStandalone ? '.standalone' : ''
|
||||
// return /** @type {FileName} */ (`${theme}${legacySuffix}${standaloneExt}.min.css`)
|
||||
// }
|
||||
|
||||
// /** Takes in version options and returns the corresponding file size in KB. */
|
||||
// const getFileSize = (/** @type {VersionOptions} */ options) => FILE_SIZES[getFileName(options)] || 0
|
||||
|
||||
// /** Takes in version options and returns an HTML snippet that preloads the main stylesheet and
|
||||
// * conditionally preloads the alternative stylesheet (if the alternative theme is active). */
|
||||
// const getFilePreloadSnippet = (/** @type {VersionOptions} */ { theme, isLegacy, isStandalone }) => {
|
||||
// const alternativeTheme = theme === 'dark' ? 'light' : 'dark'
|
||||
// const alternativeFile = getFileName({ theme: alternativeTheme, isLegacy, isStandalone })
|
||||
|
||||
// return `
|
||||
// <!-- Preload the required stylesheets (optional) -->
|
||||
// <link rel="preload" as="style" href="${CDN_BASE}${getFileName({ theme, isLegacy, isStandalone })}">
|
||||
// <link rel="preload" as="style" href="${CDN_BASE}${alternativeFile}" media="(prefers-color-scheme: ${alternativeTheme})">`
|
||||
// }
|
||||
|
||||
// /** Takes in version options and returns the code snippet instructing users how to load the file. */
|
||||
// const getFileSnippet = (/** @type {VersionOptions} */ { theme, isLegacy, isStandalone }) => {
|
||||
// const fileName = getFileName({ theme, isLegacy, isStandalone })
|
||||
// const stylesheetSnippet = `<link rel="stylesheet" href="${CDN_BASE}${fileName}">`
|
||||
|
||||
// if (!isLegacy || isStandalone) return stylesheetSnippet
|
||||
|
||||
// const preloadSnippet = getFilePreloadSnippet({ theme, isLegacy, isStandalone: true })
|
||||
// return (preloadSnippet + '\n\n' + stylesheetSnippet).trim()
|
||||
// }
|
||||
|
||||
// /** Handles elements external to the version picker that still need to be kept
|
||||
// * up to date with the current version, e.g. switching images from dark to light. */
|
||||
// const externalElements = {
|
||||
// _productHunt: /** @type {HTMLImageElement} */ (document.querySelector('#js-producthunt')),
|
||||
// _stylesheet: /** @type {HTMLLinkElement} */ (document.querySelector('#js-stylesheet')),
|
||||
// _removeStartupStylesheet: () => {
|
||||
// const startupStylesheet = document.head.querySelector('#js-startup-stylesheet')
|
||||
// if (startupStylesheet) document.head.removeChild(startupStylesheet)
|
||||
// externalElements._stylesheet.removeEventListener('load', externalElements._removeStartupStylesheet)
|
||||
// },
|
||||
// _updateProductHunt: (/** @type {Theme} */ theme) => {
|
||||
// externalElements._productHunt.src = externalElements._productHunt.src.replace(/dark|light/, theme)
|
||||
// },
|
||||
// _updateStylesheet: (/** @type {FileName} */ fileName) => {
|
||||
// externalElements._stylesheet.href = DEV_BASE + fileName
|
||||
// },
|
||||
|
||||
// /** Sets up listener to remove startup version of water.css when right one loads, then updates */
|
||||
// init: (/** @type {VersionOptions} */ options, /** @type {?Theme} */ preferedTheme) => {
|
||||
// externalElements._stylesheet.addEventListener('load', externalElements._removeStartupStylesheet)
|
||||
// externalElements.update(options, preferedTheme)
|
||||
// },
|
||||
// /** Takes current version + the user's prefered scheme and updates all external elements. */
|
||||
// update: (/** @type {VersionOptions} */ options, /** @type {?Theme} */ preferedTheme) => {
|
||||
// const displayedTheme = options.isStandalone ? options.theme : preferedTheme || options.theme
|
||||
|
||||
// externalElements._updateStylesheet(getFileName(options))
|
||||
// externalElements._updateProductHunt(displayedTheme)
|
||||
// }
|
||||
// }
|
||||
|
||||
// /**
|
||||
// * Sets up a media query for the given color scheme and runs the callback on change.
|
||||
// * @param {Theme} scheme
|
||||
// * @param {(matches: boolean) => any} queryHandler
|
||||
// */
|
||||
// const createColorSchemeListener = (scheme, queryHandler) => {
|
||||
// const mediaQuery = w.matchMedia(`(prefers-color-scheme: ${scheme})`)
|
||||
// mediaQuery.addListener((query) => queryHandler(query.matches))
|
||||
// queryHandler(mediaQuery.matches)
|
||||
// }
|
||||
|
||||
// const themeFromParams = queryParams.get('theme')
|
||||
// /** @type {VersionOptions} */
|
||||
// const initialVersionOptions = {
|
||||
// theme: themeFromParams === 'dark' || themeFromParams === 'light' ? themeFromParams : 'dark',
|
||||
// isLegacy: queryParams.has('legacy') || !supportsCssVars,
|
||||
// isStandalone: queryParams.has('standalone')
|
||||
// }
|
||||
|
||||
// new w.Vue({ // eslint-disable-line no-new
|
||||
// el: '#installation',
|
||||
// filters: {
|
||||
// capitalize: (/** @type {string} */ str) => str.charAt(0).toUpperCase() + str.slice(1)
|
||||
// },
|
||||
// /** @type {VueData} */
|
||||
// data: {
|
||||
// versionOptions: initialVersionOptions,
|
||||
// preferedColorScheme: null,
|
||||
// copyStatus: null
|
||||
// },
|
||||
// computed: {
|
||||
// /** @returns {boolean} */
|
||||
// isOverwritten () {
|
||||
// const { isStandalone, theme } = this.versionOptions
|
||||
// if (isStandalone || !this.preferedColorScheme) return false
|
||||
// return theme !== this.preferedColorScheme
|
||||
// },
|
||||
// /** @returns {{ fileName: string, fileSize: string, fileSnippet: string }} */
|
||||
// selectedVersion () {
|
||||
// return {
|
||||
// fileName: getFileName(this.versionOptions),
|
||||
// fileSize: getFileSize(this.versionOptions).toFixed(2),
|
||||
// fileSnippet: getFileSnippet(this.versionOptions)
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
// created () {
|
||||
// createColorSchemeListener('dark', (match) => match && (this.preferedColorScheme = 'dark'))
|
||||
// createColorSchemeListener('light', (match) => match && (this.preferedColorScheme = 'light'))
|
||||
|
||||
// externalElements.init(this.versionOptions, this.preferedColorScheme)
|
||||
// },
|
||||
// methods: {
|
||||
// getTooltipMessage (/** @type {Theme} */ theme) {
|
||||
// if (this.versionOptions.theme === theme && this.isOverwritten) {
|
||||
// return 'Your theme selection is currently overwritten by the theme setting on your device.'
|
||||
// } else return "Selected theme can be overwritten by theme setting on user's device."
|
||||
// },
|
||||
// copyToClipboard () {
|
||||
// Promise.resolve()
|
||||
// .then(() => w.clipboard.writeText(this.selectedVersion.fileSnippet))
|
||||
// .then(() => (this.copyStatus = 'success'))
|
||||
// .catch(() => (this.copyStatus = 'failed'))
|
||||
// setTimeout(() => (this.copyStatus = null), 1000)
|
||||
// }
|
||||
// },
|
||||
// watch: {
|
||||
// preferedColorScheme (/** @type {Theme} */ nextScheme) {
|
||||
// externalElements.update(this.versionOptions, nextScheme)
|
||||
// },
|
||||
// versionOptions: {
|
||||
// deep: true,
|
||||
// handler (/** @type {VersionOptions} */ nextOptions) {
|
||||
// externalElements.update(nextOptions, this.preferedColorScheme)
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
|
Reference in New Issue
Block a user