UNPKG

router-register-plugin

Version:

鸿蒙ZRouter动态路由框架插件

54 lines (46 loc) 2.29 kB
/** * @author: HZWei * @date: 2024/10/8 * @desc: */ export default class Constants { static readonly ROUTER_PLUGIN_ID = "routerRegisterPlugin" static readonly BUILDER_REGISTER_FUN_FILE_NAME: string = 'builderRegister.ets' static readonly ROUTER_TEMPLATE_PATH: string = '../../template/builderRegister.txt' static readonly SERVICE_TEMPLATE_PATH: string = '../../template/serviceRegister.txt' static readonly PREFIX_ZR: string = 'ZR' static readonly ETS_SUFFIX : string = '.ets' static readonly Z_ROUTER_PATHS: string[] = ['@hzw/zrouter', 'routerapi'] static readonly DEF_MODULE_NAME: string = "entry" static readonly DEF_OBSERVER_ATTRIBUTE_NAME: string = "lifecycleObserver" static readonly ZR_SERVICE_NAME: string = "ZRService.ets" static readonly TASK_DO_NATIVE_STRIP: string = "@DoNativeStrip" static readonly TASK_PREVIEW_BUILD: string = "PreviewBuild" static readonly TASK_INIT: string = "init" static readonly TASK_CLEAN: string = "clean" static readonly TASK_BUILD_Z: string = "ZRouter@Build" static readonly TASK_CLEAN_Z: string = "ZRouter@Clean" static readonly TASK_INIT_Z: string = "ZRouter@Init" static readonly TASK_PREVIEW_BUILD_Z: string = "ZRouter@PreviewBuild" static readonly TASK_CLEAR_CACHE_Z: string = "clearCache" /** * 未知类型 */ static readonly TYPE_UNKNOWN: number = -1 /** * 查找模块的Index.ets文件类型 */ static readonly TYPE_FIND_MODULE_INDEX_PATH: number = 0 /** * 查找注解常量 */ static readonly TYPE_FIND_ANNOTATION_CONST_VALUE: number = 1 static readonly ENTRY_NAME: string = 'entry' static readonly ETS_RELATIVE_PATH: string = "/src/main/ets/" static readonly _GENERATED_RELATIVE_PATH: string = "/src/main/ets/_generated/" static readonly PROFILE_RELATIVE_PATH: string = "/src/main/resources/base/profile/" static readonly ROUTER_MAP_RELATIVE_FILE_PATH: string = "/src/main/resources/rawfile/router_map.json" static readonly KEY_ROUTER_MAP: string = "key_router_map" static readonly MODULE_RELATIVE_FILE_PATH: string = "/src/main/module.json5" static readonly ROUTE_MAP_FILE_NAME: string = "route_map.json" }