mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: initialState存在非setup使用场景,不能使用provide/inject
This commit is contained in:
parent
bbbe387df6
commit
ee0f6bd372
@ -51,7 +51,7 @@ export async function getBundleAndConfigs({ api }) {
|
|||||||
return api.applyPlugins({
|
return api.applyPlugins({
|
||||||
key: 'addHTMLHeadScripts',
|
key: 'addHTMLHeadScripts',
|
||||||
type: api.ApplyPluginsType.add,
|
type: api.ApplyPluginsType.add,
|
||||||
initialState: [],
|
initialValue: [],
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
publicPath: await api.applyPlugins({
|
publicPath: await api.applyPlugins({
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
copy: ['runtime']
|
copy: ['runtime'],
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
|
|
||||||
import { plugin, ApplyPluginsType } from '@@/core/coreExports';
|
import { plugin, ApplyPluginsType } from '@@/core/coreExports';
|
||||||
import { inject } from 'vue';
|
import { initialState } from '@@/initialState';
|
||||||
|
|
||||||
let runtimeConfig;
|
let runtimeConfig;
|
||||||
|
|
||||||
@ -11,11 +9,11 @@ export default () => {
|
|||||||
key: 'layout',
|
key: 'layout',
|
||||||
type: ApplyPluginsType.modify,
|
type: ApplyPluginsType.modify,
|
||||||
initialValue: {
|
initialValue: {
|
||||||
initialState: inject('initialState'),
|
initialState,
|
||||||
sidebar: true,
|
sidebar: true,
|
||||||
header: true,
|
header: true,
|
||||||
logo: true
|
logo: true,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return runtimeConfig;
|
return runtimeConfig;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { inject } from 'vue';
|
import { initialState } from '@@/initialState';
|
||||||
|
|
||||||
export default function initialStateModel() {
|
export default function initialStateModel() {
|
||||||
return inject('initialState');
|
return initialState;
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
"express": "^4.17.3"
|
"express": "^4.17.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
"vue": "^3.0.5",
|
||||||
"@vue/compiler-sfc": "^3.0.5"
|
"@vue/compiler-sfc": "^3.0.5"
|
||||||
},
|
},
|
||||||
"typings": "./types.d.ts"
|
"typings": "./types.d.ts"
|
||||||
|
@ -7,15 +7,15 @@ import { plugin } from './core/plugin';
|
|||||||
import './core/pluginRegister';
|
import './core/pluginRegister';
|
||||||
import { ApplyPluginsType } from '{{{ runtimePath }}}';
|
import { ApplyPluginsType } from '{{{ runtimePath }}}';
|
||||||
import { getRoutes } from './core/routes/routes';
|
import { getRoutes } from './core/routes/routes';
|
||||||
|
import { updateInitialState } from './initialState';
|
||||||
import DefaultContainer from './defaultContainer';
|
import DefaultContainer from './defaultContainer.jsx';
|
||||||
|
|
||||||
{{{ imports }}}
|
{{{ imports }}}
|
||||||
|
|
||||||
{{{ entryCodeAhead }}}
|
{{{ entryCodeAhead }}}
|
||||||
|
|
||||||
const renderClient = (opts = {}) => {
|
const renderClient = (opts = {}) => {
|
||||||
const { plugin, routes, rootElement, initialState } = opts;
|
const { plugin, routes, rootElement } = opts;
|
||||||
const rootContainer = plugin.applyPlugins({
|
const rootContainer = plugin.applyPlugins({
|
||||||
type: ApplyPluginsType.modify,
|
type: ApplyPluginsType.modify,
|
||||||
key: 'rootContainer',
|
key: 'rootContainer',
|
||||||
@ -27,8 +27,6 @@ const renderClient = (opts = {}) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const app = createApp(rootContainer);
|
const app = createApp(rootContainer);
|
||||||
// initialState是响应式的,后期可以更改
|
|
||||||
app.provide("initialState", reactive(initialState ?? {}));
|
|
||||||
|
|
||||||
plugin.applyPlugins({
|
plugin.applyPlugins({
|
||||||
key: 'onAppCreated',
|
key: 'onAppCreated',
|
||||||
@ -51,19 +49,18 @@ const beforeRender = async ({rootElement}) => {
|
|||||||
action: null
|
action: null
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
let initialState = {};
|
|
||||||
if (typeof beforeRenderConfig.action === "function") {
|
if (typeof beforeRenderConfig.action === "function") {
|
||||||
const app = createApp(beforeRenderConfig.loading);
|
const app = createApp(beforeRenderConfig.loading);
|
||||||
app.mount(rootElement);
|
app.mount(rootElement);
|
||||||
try {
|
try {
|
||||||
initialState = await beforeRenderConfig.action();
|
const initialState = await beforeRenderConfig.action();
|
||||||
|
updateInitialState(initialState || {})
|
||||||
} catch(e){
|
} catch(e){
|
||||||
console.error(`[fes] beforeRender执行出现异常:`);
|
console.error(`[fes] beforeRender执行出现异常:`);
|
||||||
console.error(e);
|
console.error(e);
|
||||||
}
|
}
|
||||||
app.unmount();
|
app.unmount();
|
||||||
}
|
}
|
||||||
return initialState;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const getClientRender = (args = {}) => plugin.applyPlugins({
|
const getClientRender = (args = {}) => plugin.applyPlugins({
|
||||||
@ -82,8 +79,8 @@ const getClientRender = (args = {}) => plugin.applyPlugins({
|
|||||||
{{/enableTitle}}
|
{{/enableTitle}}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const initialState = await beforeRender(opts);
|
await beforeRender(opts);
|
||||||
return renderClient({...opts, initialState});
|
return renderClient(opts);
|
||||||
},
|
},
|
||||||
args,
|
args,
|
||||||
});
|
});
|
||||||
|
@ -65,5 +65,10 @@ export default function (api) {
|
|||||||
runtimePath,
|
runtimePath,
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
api.writeTmpFile({
|
||||||
|
path: `initialState.js`,
|
||||||
|
content: Mustache.render(readFileSync(join(__dirname, `./initialState.tpl`), 'utf-8')),
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
import { reactive } from 'vue';
|
||||||
|
|
||||||
|
export const initialState = reactive({});
|
||||||
|
|
||||||
|
export const updateInitialState = (obj) => {
|
||||||
|
Object.assign(initialState, obj);
|
||||||
|
};
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="user-center">{{initialState.userName}}</div>
|
<div class="user-center">{{ initialState.userName }}</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { useModel } from '@fesjs/fes';
|
import { useModel } from '@fesjs/fes';
|
||||||
@ -8,9 +8,9 @@ export default {
|
|||||||
setup() {
|
setup() {
|
||||||
const initialState = useModel('@@initialState');
|
const initialState = useModel('@@initialState');
|
||||||
return {
|
return {
|
||||||
initialState
|
initialState,
|
||||||
};
|
};
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user