app-root-view-shell.tsx 6.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
import { Component, Vue } from 'vue-property-decorator';
import { IPSAppDataEntity } from "@ibiz/dynamic-model-api";
import { AppServiceBase, EntityPathService, LogUtil, Util } from "ibiz-core";
import { AppViewShell } from "ibiz-vue";

/**
 * 视图壳
 *
 * @export
 * @class AppViewShell
 * @extends {Vue}
 */
@Component({})
export class AppRootViewShell extends Vue {



    created() {
        this.mountedDynaRoute(this.$router);
        if (AppServiceBase.getInstance().getRedirectedFromRoute()) {
            this.$router.push(AppServiceBase.getInstance().getRedirectedFromRoute());
        }
    }

    /**
     * 挂载动态路由
     *
     * @param {*} router 路由对象
     * @memberof AppIndexViewShell
     */
    public mountedDynaRoute(router: any) {
        if (router && router.getRoutes().length > 0) {
            const indexView = router.getRoutes().find((route: any) => {
                return route.meta && route.meta.viewType && route.meta.viewType === 'ROOT';
            })
            if (indexView) {
                const indexPath: string = indexView.name;
                this.mountedAllEntityRoute(indexPath, router);
                this.mountedAllAppViewRoute(indexPath, router)
                LogUtil.log('挂载应用动态路由完成', router.getRoutes());
            }
        }
    }

    /**
     * 挂载所有应用实体映射路由
     *
     * @param {string} indexPath 首页路径
     * @param {*} router 路径对象
     * @memberof AuthGuard
     */
    public mountedAllEntityRoute(indexPath: string, router: any) {
        const APP = AppServiceBase.getInstance().getAppModelDataObject();
        if (APP.getAllPSAppDataEntities() && (APP.getAllPSAppDataEntities() as IPSAppDataEntity[]).length > 0) {
            (APP.getAllPSAppDataEntities() as IPSAppDataEntity[]).forEach((appDataEntity: IPSAppDataEntity) => {
                let codeName: string = '';
                if (appDataEntity.refM && appDataEntity.refM.codeName) {
                    codeName = appDataEntity.refM.codeName;
                } else {
                    codeName = appDataEntity.codeName;
                }
                const resPaths = new EntityPathService(codeName).getPSAppDERSPaths();
                this.mountedSingleEntityRoute(indexPath, router, codeName, resPaths);
            })
        }
    }

    /**
     * 初始化单个应用实体映射路由
     *
     * @param {string} indexPath 首页路径
     * @param {*} router 路径对象
     * @param {string} codeName 当前应用实体代码名称
     * @param {string[][]} resPaths 当前应用实体关联路径
     * @memberof AuthGuard
     */
    public mountedSingleEntityRoute(indexPath: string, router: any, codeName: string, resPaths: string[][]) {
        // 挂载关系路由
        if (resPaths && resPaths.length > 0) {
            resPaths.forEach((singleResPaths: string[]) => {
                if (singleResPaths && singleResPaths.length > 0) {
                    let currentPath: string = '';
                    let currentParameters: any = [
                        { pathName: indexPath.toLowerCase(), parameterName: indexPath.toLowerCase() }
                    ];
                    singleResPaths.forEach((resPath: string) => {
                        currentPath += `/${Util.srfpluralize(resPath).toLowerCase()}/:${resPath.toLowerCase()}?`;
                        currentParameters.push({ pathName: Util.srfpluralize(resPath).toLowerCase(), parameterName: resPath.toLowerCase() });
                    })
                    currentPath = `${currentPath.slice(1)}/${Util.srfpluralize(codeName).toLowerCase()}/:${codeName.toLowerCase()}?/views/:view?`;
                    currentParameters.push({ pathName: Util.srfpluralize(codeName).toLowerCase(), parameterName: codeName.toLowerCase() }, { pathName: 'views', parameterName: 'view' });
                    const route = {
                        path: 'viewshell/' + currentPath,
                        meta: {
                            captionTag: '',
                            caption: '',
                            info: '',
                            imgPath: '',
                            iconCls: '',
                            parameters: currentParameters,
                            resource: codeName.toLowerCase(),
                            requireAuth: false,
                        },
                        component: AppViewShell
                    }
                    router.addRoute(indexPath, route);
                }
            })
        }
        // 挂载自身路由
        const route = {
            path: `viewshell/${Util.srfpluralize(codeName).toLowerCase()}/:${codeName.toLowerCase()}?/views/:view?`,
            meta: {
                captionTag: '',
                caption: '',
                info: '',
                imgPath: '',
                iconCls: '',
                parameters: [
                    { pathName: indexPath.toLowerCase(), parameterName: indexPath.toLowerCase() },
                    { pathName: Util.srfpluralize(codeName).toLowerCase(), parameterName: codeName.toLowerCase() },
                    { pathName: 'views', parameterName: 'view' },
                ],
                resource: codeName.toLowerCase(),
                requireAuth: false,
            },
            component: AppViewShell
        }
        router.addRoute(indexPath, route);
    }

    mountedAllAppViewRoute(indexPath: string, router: any) {
        // 挂载应用视图路由
        const appRoute = {
            path: 'viewshell/views/:view?',
            meta: {
                captionTag: '',
                caption: '',
                info: '',
                imgPath: '',
                iconCls: '',
                parameters: [
                    { pathName: indexPath, parameterName: indexPath },
                    { pathName: 'views', parameterName: 'view' },
                ],
                requireAuth: false,
            },
            component: AppViewShell,
        }
        router.addRoute(indexPath, appRoute);
    }

    render(h: any) {
        return <router-view key={this.$route.fullPath}></router-view>
    }

}