-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update: docs build for new base path
- Loading branch information
Showing
3,464 changed files
with
412,387 additions
and
430,239 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,116 @@ | ||
import { j as inBrowser, al as useUpdateHead, am as RouterSymbol, an as initData, ao as dataSymbol, ap as Content, aq as ClientOnly, ar as siteDataRef, as as createSSRApp, at as createRouter, au as pathToFile, X as __vitePreload, d as defineComponent, u as useData, l as onMounted, z as watchEffect, av as usePrefetch, aw as useCopyCode, ax as useCodeGroups, a3 as h } from "./chunks/framework.1qnja6qJ.js"; | ||
import { R as RawTheme } from "./chunks/theme.qpUvgkaA.js"; | ||
function resolveThemeExtends(theme) { | ||
if (theme.extends) { | ||
const base = resolveThemeExtends(theme.extends); | ||
return { | ||
...base, | ||
...theme, | ||
async enhanceApp(ctx) { | ||
if (base.enhanceApp) | ||
await base.enhanceApp(ctx); | ||
if (theme.enhanceApp) | ||
await theme.enhanceApp(ctx); | ||
} | ||
}; | ||
} | ||
return theme; | ||
} | ||
const Theme = resolveThemeExtends(RawTheme); | ||
const VitePressApp = defineComponent({ | ||
name: "VitePressApp", | ||
setup() { | ||
const { site, lang, dir } = useData(); | ||
onMounted(() => { | ||
watchEffect(() => { | ||
document.documentElement.lang = lang.value; | ||
document.documentElement.dir = dir.value; | ||
}); | ||
}); | ||
if (site.value.router.prefetchLinks) { | ||
usePrefetch(); | ||
} | ||
useCopyCode(); | ||
useCodeGroups(); | ||
if (Theme.setup) | ||
Theme.setup(); | ||
return () => h(Theme.Layout); | ||
} | ||
}); | ||
async function createApp() { | ||
const router = newRouter(); | ||
const app = newApp(); | ||
app.provide(RouterSymbol, router); | ||
const data = initData(router.route); | ||
app.provide(dataSymbol, data); | ||
app.component("Content", Content); | ||
app.component("ClientOnly", ClientOnly); | ||
Object.defineProperties(app.config.globalProperties, { | ||
$frontmatter: { | ||
get() { | ||
return data.frontmatter.value; | ||
} | ||
}, | ||
$params: { | ||
get() { | ||
return data.page.value.params; | ||
} | ||
} | ||
}); | ||
if (Theme.enhanceApp) { | ||
await Theme.enhanceApp({ | ||
app, | ||
router, | ||
siteData: siteDataRef | ||
}); | ||
} | ||
return { app, router, data }; | ||
} | ||
function newApp() { | ||
return createSSRApp(VitePressApp); | ||
} | ||
function newRouter() { | ||
let isInitialPageLoad = inBrowser; | ||
let initialPath; | ||
return createRouter((path) => { | ||
let pageFilePath = pathToFile(path); | ||
let pageModule = null; | ||
if (pageFilePath) { | ||
if (isInitialPageLoad) { | ||
initialPath = pageFilePath; | ||
} | ||
if (isInitialPageLoad || initialPath === pageFilePath) { | ||
pageFilePath = pageFilePath.replace(/\.js$/, ".lean.js"); | ||
} | ||
if (false) | ||
; | ||
else { | ||
pageModule = __vitePreload(() => import( | ||
/*@vite-ignore*/ | ||
pageFilePath | ||
), true ? __vite__mapDeps([]) : void 0); | ||
} | ||
} | ||
if (inBrowser) { | ||
isInitialPageLoad = false; | ||
} | ||
return pageModule; | ||
}, Theme.NotFound); | ||
} | ||
if (inBrowser) { | ||
createApp().then(({ app, router, data }) => { | ||
router.go().then(() => { | ||
useUpdateHead(router.route, data.site); | ||
app.mount("#app"); | ||
}); | ||
}); | ||
} | ||
export { | ||
createApp | ||
}; | ||
function __vite__mapDeps(indexes) { | ||
if (!__vite__mapDeps.viteFileDeps) { | ||
__vite__mapDeps.viteFileDeps = [] | ||
} | ||
return indexes.map((i) => __vite__mapDeps.viteFileDeps[i]) | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.