2022-10-10 13:41:39 +08:00
|
|
|
|
import "./public-path"
|
|
|
|
|
import Vue from "vue"
|
|
|
|
|
import "metersphere-frontend/src/styles/index.scss"
|
|
|
|
|
import ElementUI from "element-ui";
|
|
|
|
|
import App from "./App.vue"
|
|
|
|
|
import i18n from "./i18n";
|
|
|
|
|
import router, {microRouter} from "./router"
|
|
|
|
|
import {createPinia, PiniaVuePlugin} from 'pinia'
|
|
|
|
|
import PersistedState from 'pinia-plugin-persistedstate'
|
|
|
|
|
import icons from "metersphere-frontend/src/icons"
|
|
|
|
|
import svg from "metersphere-frontend/src/components/svg";
|
|
|
|
|
import plugins from "metersphere-frontend/src/plugins";
|
|
|
|
|
import directives from "metersphere-frontend/src/directive";
|
|
|
|
|
import filters from "metersphere-frontend/src/filters";
|
|
|
|
|
import "metersphere-frontend/src/router/permission";
|
|
|
|
|
import chart from "metersphere-frontend/src/chart";
|
|
|
|
|
import VueFab from 'vue-float-action-button';
|
|
|
|
|
import JSONPathPicker from 'vue-jsonpath-picker';
|
|
|
|
|
import VueClipboard from 'vue-clipboard2';
|
|
|
|
|
import formCreate from "@form-create/element-ui";
|
|
|
|
|
import mavonEditor from 'mavon-editor';
|
|
|
|
|
import 'mavon-editor/dist/css/index.css';
|
2022-10-11 15:43:57 +08:00
|
|
|
|
import VuePapaParse from 'vue-papa-parse'
|
2022-10-10 13:41:39 +08:00
|
|
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
|
|
|
|
const pinia = createPinia()
|
|
|
|
|
pinia.use(PersistedState)//开启缓存,存储在localstorage
|
|
|
|
|
|
|
|
|
|
Vue.use(ElementUI, {
|
|
|
|
|
i18n: (key, value) => i18n.t(key, value)
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Vue.use(directives);
|
|
|
|
|
Vue.use(svg);
|
|
|
|
|
Vue.use(icons);
|
|
|
|
|
Vue.use(plugins);
|
|
|
|
|
Vue.use(filters);
|
|
|
|
|
Vue.use(PiniaVuePlugin);
|
|
|
|
|
Vue.use(chart);
|
|
|
|
|
Vue.use(VueClipboard)
|
|
|
|
|
Vue.use(VueFab);
|
|
|
|
|
Vue.use(JSONPathPicker);
|
|
|
|
|
Vue.use(mavonEditor);
|
|
|
|
|
Vue.use(formCreate);
|
2022-10-11 15:43:57 +08:00
|
|
|
|
Vue.use(VuePapaParse);
|
2022-10-10 13:41:39 +08:00
|
|
|
|
|
|
|
|
|
let instance = null;
|
|
|
|
|
|
|
|
|
|
function render(props = {}) {
|
|
|
|
|
const {container, eventBus = new Vue(), defaultPath, routeParams, routeName} = props;
|
|
|
|
|
// 添加全局事件总线
|
|
|
|
|
Vue.prototype.$EventBus = eventBus;
|
|
|
|
|
instance = new Vue({
|
|
|
|
|
i18n,
|
|
|
|
|
// 确定是否是内存路由
|
|
|
|
|
router: (defaultPath || routeName) ? microRouter : router,
|
|
|
|
|
pinia,
|
|
|
|
|
render: h => h(App),
|
|
|
|
|
}).$mount(container ? container.querySelector('#app') : '#app');
|
|
|
|
|
// 微服务过来的路由
|
|
|
|
|
if (defaultPath || routeName) {
|
|
|
|
|
microRouter.push({path: defaultPath, params: routeParams, name: routeName});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 独立运行时
|
|
|
|
|
if (!window.__POWERED_BY_QIANKUN__) {
|
|
|
|
|
render();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* bootstrap 只会在微应用初始化的时候调用一次,下次微应用重新进入时会直接调用 mount 钩子,不会再重复触发 bootstrap。
|
|
|
|
|
* 通常我们可以在这里做一些全局变量的初始化,比如不会在 unmount 阶段被销毁的应用级别的缓存等。
|
|
|
|
|
*/
|
|
|
|
|
export async function bootstrap(props) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 应用每次进入都会调用 mount 方法,通常我们在这里触发应用的渲染方法
|
|
|
|
|
*/
|
|
|
|
|
export async function mount(props) {
|
|
|
|
|
props.onGlobalStateChange((state, prev) => {
|
|
|
|
|
});
|
|
|
|
|
props.setGlobalState({event: 'opendialog'});
|
|
|
|
|
render(props);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 应用每次 切出/卸载 会调用的方法,通常在这里我们会卸载微应用的应用实例
|
|
|
|
|
*/
|
|
|
|
|
export async function unmount(props) {
|
|
|
|
|
instance.$destroy();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 可选生命周期钩子,仅使用 loadMicroApp 方式加载微应用时生效
|
|
|
|
|
*/
|
|
|
|
|
export async function update(props) {
|
|
|
|
|
// console.log('update props', props);
|
|
|
|
|
}
|