feat(ssr): useSSRContext

This commit is contained in:
Evan You
2020-02-18 13:26:15 -05:00
parent 86464e8c04
commit fd031490fb
3 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
import { inject } from '../apiInject'
import { warn } from '../warning'
export const ssrContextKey = Symbol(__DEV__ ? `ssrContext` : ``)
export const useSSRContext = <T = Record<string, any>>() => {
if (!__GLOBAL__) {
const ctx = inject<T>(ssrContextKey)
if (!ctx) {
warn(
`Server rendering context not provided. Make sure to only call ` +
`useSsrContext() conditionally in the server build.`
)
}
return ctx
} else if (__DEV__) {
warn(`useSsrContext() is not supported in the global build.`)
}
}