Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
300e30e5
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
300e30e5
编写于
5月 03, 2021
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip: ssr
上级
77bc71c8
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
131 addition
and
40 deletion
+131
-40
packages/vite-plugin-uni/lib/ssr/env.js
packages/vite-plugin-uni/lib/ssr/env.js
+25
-0
packages/vite-plugin-uni/lib/ssr/render.js
packages/vite-plugin-uni/lib/ssr/render.js
+59
-0
packages/vite-plugin-uni/src/configResolved/plugins/index.ts
packages/vite-plugin-uni/src/configResolved/plugins/index.ts
+1
-1
packages/vite-plugin-uni/src/configResolved/plugins/mainJs.ts
...ages/vite-plugin-uni/src/configResolved/plugins/mainJs.ts
+33
-9
packages/vite-plugin-uni/src/utils/index.ts
packages/vite-plugin-uni/src/utils/index.ts
+1
-0
packages/vite-plugin-uni/src/utils/ssr.ts
packages/vite-plugin-uni/src/utils/ssr.ts
+12
-30
未找到文件。
packages/vite-plugin-uni/lib/ssr/env.js
0 → 100644
浏览文件 @
300e30e5
const
context
=
(()
=>
{
if
(
typeof
globalThis
!==
'
undefined
'
)
{
return
globalThis
}
else
if
(
typeof
self
!==
'
undefined
'
)
{
return
self
}
else
if
(
typeof
window
!==
'
undefined
'
)
{
return
window
}
else
{
return
Function
(
'
return this
'
)()
}
})()
// assign defines
const
defines
=
__DEFINES__
Object
.
keys
(
defines
).
forEach
((
key
)
=>
{
const
segments
=
key
.
split
(
'
.
'
)
let
target
=
context
for
(
let
i
=
0
;
i
<
segments
.
length
;
i
++
)
{
const
segment
=
segments
[
i
]
if
(
i
===
segments
.
length
-
1
)
{
target
[
segment
]
=
defines
[
key
]
}
else
{
target
=
target
[
segment
]
||
(
target
[
segment
]
=
{})
}
}
})
packages/vite-plugin-uni/lib/ssr/render.js
0 → 100644
浏览文件 @
300e30e5
import
{
renderToString
}
from
'
@vue/server-renderer
'
let
AppInstance
function
createApp
(
App
)
{
AppInstance
=
createVueSSRApp
(
App
).
use
(
plugin
)
AppInstance
.
mount
=
()
=>
{}
return
AppInstance
}
export
async
function
render
(
url
,
manifest
)
{
const
app
=
AppInstance
const
router
=
app
.
router
// set the router to the desired URL before rendering
router
.
push
(
url
)
await
router
.
isReady
()
// passing SSR context object which will be available via useSSRContext()
// @vitejs/plugin-vue injects code into a component's setup() that registers
// itself on ctx.modules. After the render, ctx.modules would contain all the
// components that have been instantiated during this render call.
const
ctx
=
{}
const
html
=
await
renderToString
(
app
,
ctx
)
// the SSR manifest generated by Vite contains module -> chunk/asset mapping
// which we can then use to determine what files need to be preloaded for this
// request.
const
preloadLinks
=
renderPreloadLinks
(
ctx
.
modules
,
manifest
)
return
[
html
,
preloadLinks
]
}
function
renderPreloadLinks
(
modules
,
manifest
)
{
let
links
=
''
const
seen
=
new
Set
()
modules
.
forEach
((
id
)
=>
{
const
files
=
manifest
[
id
]
if
(
files
)
{
files
.
forEach
((
file
)
=>
{
if
(
!
seen
.
has
(
file
))
{
seen
.
add
(
file
)
links
+=
renderPreloadLink
(
file
)
}
})
}
})
return
links
}
function
renderPreloadLink
(
file
)
{
if
(
file
.
endsWith
(
'
.js
'
))
{
return
'
<link rel="modulepreload" crossorigin href="
'
+
file
+
'
">
'
}
else
if
(
file
.
endsWith
(
'
.css
'
))
{
return
'
<link rel="stylesheet" href="
'
+
file
+
'
">
'
}
else
{
// TODO
return
''
}
}
packages/vite-plugin-uni/src/configResolved/plugins/index.ts
浏览文件 @
300e30e5
...
...
@@ -105,7 +105,7 @@ export function initPlugins(
0
,
'
pre
'
)
addPlugin
(
plugins
,
uniMainJsPlugin
(
options
),
1
,
'
pre
'
)
addPlugin
(
plugins
,
uniMainJsPlugin
(
config
,
options
),
1
,
'
pre
'
)
addPlugin
(
plugins
,
uniPagesJsonPlugin
(
config
,
options
),
1
,
'
pre
'
)
addPlugin
(
plugins
,
uniManifestJsonPlugin
(
config
,
options
),
1
,
'
pre
'
)
...
...
packages/vite-plugin-uni/src/configResolved/plugins/mainJs.ts
浏览文件 @
300e30e5
import
path
from
'
path
'
import
slash
from
'
slash
'
import
{
Plugin
}
from
'
vite
'
import
{
Plugin
,
ResolvedConfig
}
from
'
vite
'
import
{
VitePluginUniResolvedOptions
}
from
'
../..
'
import
{
generateSSRRenderCode
}
from
'
../../utils
'
export
function
uniMainJsPlugin
(
options
:
VitePluginUniResolvedOptions
):
Plugin
{
export
function
uniMainJsPlugin
(
config
:
ResolvedConfig
,
options
:
VitePluginUniResolvedOptions
):
Plugin
{
const
mainPath
=
slash
(
path
.
resolve
(
options
.
inputDir
,
'
main
'
))
const
mainJsPath
=
mainPath
+
'
.js
'
const
mainTsPath
=
mainPath
+
'
.ts
'
const
pagesJsonJsPath
=
slash
(
path
.
resolve
(
options
.
inputDir
,
'
pages.json.js
'
))
const
isSSR
=
config
.
server
.
middlewareMode
return
{
name
:
'
vite:uni-main-js
'
,
transform
(
code
,
id
)
{
transform
(
code
,
id
,
ssr
)
{
if
(
id
===
mainJsPath
||
id
===
mainTsPath
)
{
let
wrapperCode
=
`function createApp(rootComponent,rootProps){return createVueApp(rootComponent, rootProps).use(plugin)}`
if
(
code
.
includes
(
'
createSSRApp
'
))
{
code
=
code
.
replace
(
'
createSSRApp
'
,
'
createVueSSRApp
'
)
wrapperCode
=
`function createSSRApp(App){return createVueSSRApp(App).use(plugin)}`
if
(
!
isSSR
)
{
code
=
createApp
(
code
)
}
else
{
code
=
code
.
replace
(
'
createApp
'
,
'
createVueApp
'
)
code
=
ssr
?
createSSRServerApp
(
code
)
:
createSSRClientApp
(
code
)
}
return
{
code
:
`import { plugin } from '@dcloudio/uni-h5';import '
${
pagesJsonJsPath
}
';
${
wrapperCode
}
;
${
code
}
`
,
code
:
`import { plugin } from '@dcloudio/uni-h5';import '
${
pagesJsonJsPath
}
';
${
code
}
`
,
map
:
this
.
getCombinedSourcemap
(),
}
}
},
}
}
function
createApp
(
code
:
string
)
{
return
`function createApp(rootComponent,rootProps){return createVueApp(rootComponent, rootProps).use(plugin)};
${
code
.
replace
(
'
createApp
'
,
'
createVueApp
'
)}
`
}
function
createSSRClientApp
(
code
:
string
)
{
return
`function createApp(rootComponent, rootProps) {const app = createVueSSRApp(rootComponent, rootProps).use(plugin);const oldMount = app.mount;app.mount = (selector) => app.router.isReady().then(() => oldMount.call(app, selector));return app;};
${
code
.
replace
(
'
createApp
'
,
'
createVueSSRApp
'
)}
`
}
function
createSSRServerApp
(
code
:
string
)
{
return
`
${
generateSSRRenderCode
()}
;
${
code
.
replace
(
'
createApp
'
,
'
createVueSSRApp
'
)}
`
}
packages/vite-plugin-uni/src/utils/index.ts
浏览文件 @
300e30e5
export
*
from
'
./ssr
'
export
*
from
'
./filter
'
export
*
from
'
./features
'
export
*
from
'
./easycom
'
...
...
packages/vite-plugin-uni/src/utils/ssr.ts
浏览文件 @
300e30e5
import
path
from
'
path
'
import
fs
from
'
fs-extra
'
function
serializeDefine
(
define
:
Record
<
string
,
any
>
):
string
{
let
res
=
`{`
for
(
const
key
in
define
)
{
...
...
@@ -10,35 +13,14 @@ function serializeDefine(define: Record<string, any>): string {
}
export
function
generateSSREnvCode
(
define
:
Record
<
string
,
any
>
):
string
{
return
envCode
.
replace
(
'
__DEFINES__
'
,
serializeDefine
(
define
))
return
fs
.
readFileSync
(
path
.
join
(
__dirname
,
'
../../lib/ssr/env.js
'
),
'
utf8
'
)
.
replace
(
'
__DEFINES__
'
,
serializeDefine
(
define
))
}
const
envCode
=
`const context = (() => {
if (typeof globalThis !== 'undefined') {
return globalThis;
}
else if (typeof self !== 'undefined') {
return self;
}
else if (typeof window !== 'undefined') {
return window;
}
else {
return Function('return this')();
}
})();
// assign defines
const defines = __DEFINES__;
Object.keys(defines).forEach((key) => {
const segments = key.split('.');
let target = context;
for (let i = 0; i < segments.length; i++) {
const segment = segments[i];
if (i === segments.length - 1) {
target[segment] = defines[key];
}
else {
target = target[segment] || (target[segment] = {});
}
}
});`
export
function
generateSSRRenderCode
()
{
return
fs
.
readFileSync
(
path
.
join
(
__dirname
,
'
../../lib/ssr/render.js
'
),
'
utf8
'
)
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录