我正在使用棱角4.3,打字稿2.2
我想基于相同的代码库创建多个应用程序(网站)。所有网站都完全相同,但其中一些网站可能有一些额外的/不同的logc /模板。
我的想法是创建一个核心模块(主要包含组件),然后让应用程序使用该模块构建它,并根据需要重载: - 风格 - 模板(完全替换模板,或只修改模板的一部分)
我只设法覆盖路由中明确使用的组件,但是我无法覆盖Core模块模板中直接调用的子组件。我是否需要动态注入这些组件?
我想每个需要重写的模板部分都必须更改为核心模块中的一个组件(然后回到问题#1以使用子应用程序中的继承组件)
由于
答案 0 :(得分:2)
问题#1
这是一个适合我的解决方案
第1步
我将所有核心组件都放在核心应用程序的核心模块中。
第2步
我在核心应用程序中声明了以下CustomModule功能
declare var Reflect : any;
export function CustomModule(annotations: any)
{
return function (target: Function)
{
let parentTarget = Object.getPrototypeOf(target.prototype).constructor;
let parentAnnotations = Reflect.getMetadata("annotations", parentTarget);
let parentAnnotation = parentAnnotations[0];
Object.keys(parentAnnotation).forEach(key =>
{
if (parentAnnotation[key] != null)
{
if (typeof annotations[key] === "function")
{
annotations[key] = annotations[key].call(this, parentAnnotation[key]);
}
else if (typeof Array.isArray(annotations[key]))
{
let mergedArrayItems = [];
for (let item of parentAnnotation[key])
{
let childItem = annotations[key].find(i => i.name == item.name);
mergedArrayItems.push(childItem ? childItem : item);
}
annotations[key] = mergedArrayItems;
}
else if (annotations[key] == null)
{ // force override in annotation base
annotations[key] = parentAnnotation[key];
}
}
});
let metadata = new NgModule(annotations);
Reflect.defineMetadata("annotations", [metadata], target);
};
}
第3步
在另一个应用程序中,我创建了一个名为InheritedModule的不同模块,我创建了从CoreModule中的组件继承的组件。继承的组件必须与父组件具有相同的名称和相同的选择器。
第4步
我使InheritedModule继承自CoreModule。使用上面的CustomModule注释声明了InheritedModule(不要使用NgModule)
新模块应声明并导出在步骤3中创建的组件
@CustomModule({
declarations: [ Component1, Component2 ],
exports: [ Component1, Component2],
bootstrap: [AppComponent]
})
export class InheritedModule extends CoreModule
{
}
第5步
在子应用程序中导入InheritedModule。
自定义模块函数将做的是合并2个模块的注释,并在它们具有相同名称时用InheritedModule的组件替换CoreModule的组件
问题#2
我想每当我想要从核心应用程序覆盖部分html时,我就必须用微小的组件替换一些html模板。我暂时不接受答案,以防有人得到更好的想法