import { isRef, toRef } from 'vue' import type { Ref } from 'vue' import { useNuxtApp } from '../nuxt' /** * Create a global reactive ref that will be hydrated but not shared across ssr requests * * @param key a unique key ensuring that data fetching can be properly de-duplicated across requests * @param init a function that provides initial value for the state when it's not initiated */ export function useState (key?: string, init?: (() => T | Ref)): Ref export function useState (init?: (() => T | Ref)): Ref export function useState (...args: any): Ref { const autoKey = typeof args[args.length - 1] === 'string' ? args.pop() : undefined if (typeof args[0] !== 'string') { args.unshift(autoKey) } const [_key, init] = args as [string, (() => T | Ref)] if (!_key || typeof _key !== 'string') { throw new TypeError('[nuxt] [useState] key must be a string: ' + _key) } if (init !== undefined && typeof init !== 'function') { throw new Error('[nuxt] [useState] init must be a function: ' + init) } const key = '$s' + _key const nuxt = useNuxtApp() const state = toRef(nuxt.payload.state, key) if (state.value === undefined && init) { const initialValue = init() if (isRef(initialValue)) { // vue will unwrap the ref for us nuxt.payload.state[key] = initialValue return initialValue as Ref } state.value = initialValue } return state }