全局配置项
我们给众多组件添加了全局配置功能,你可以通过全局配置来定义组件的默认行为,从而减少在模板中需要写的代码(让你的代码更加清爽),还能在运行时修改全局配置项。
如何使用
想要为某些组件提供默认配置项,请在根注入器中根据注入令牌 NZ_CONFIG
提供一个符合 NzConfig
接口的对象,例如:
import { NzConfig, NZ_CONFIG } from 'ng-zorro-antd/core/config';
const ngZorroConfig: NzConfig = {
// 注意组件名称没有 nz 前缀
message: { nzTop: 120 },
notification: { nzTop: 240 }
};
@NgModule({
declarations: [AppComponent],
imports: [
CommonModule
],
providers: [
{ provide: NZ_CONFIG, useValue: ngZorroConfig }
],
bootstrap: [AppComponent]
})
export class AppModule {}
这些全局配置项将会被注入 NzConfigService
当中并保存。
提供模板
一些组件支持传递模板 TemplateRef<T>
作为默认参数,我们来了解一下如何做到这一点。
最简单的方式是在应用的根组件中调用 NzConfigService
的相关方法:
export class AppComponent implements OnInit {
@ViewChild('nzIndicatorTpl', { static: true })
nzIndicator!: TemplateRef<void>;
constructor(private readonly nzConfigService: NzConfigService) {}
ngOnInit(): void {
this.nzConfigService.set('spin', { nzIndicator: this.nzIndicator });
}
}
然而这种方式可能会让你的 AppComponent 相当臃肿,并违反关注分离原则。
因此,当你的项目比较大时,我们建议你使用一个 FactoryProvider
,如下所示:
// The module-level Component which contains template references.
// Exporting is required for AOT compatibility
@Component({
template: `
<ng-template #nzIndicatorTpl>
<span class="ant-spin-dot">
<i nz-icon [nzType]="'loading'"></i>
</span>
</ng-template>
`
})
export class GlobalTemplatesComponent {
@ViewChild('nzIndicatorTpl', { static: true })
nzIndicator!: TemplateRef<void>;
}
// The Factory function
const nzConfigFactory = (
injector: Injector,
resolver: ComponentFactoryResolver
): NzConfig => {
const factory = resolver.resolveComponentFactory(GlobalTemplatesComponent);
const { nzIndicator } = factory.create(injector).instance;
return {
spin: {
nzIndicator
}
};
};
@NgModule({
imports: [...],
declarations: [
AppComponent,
GlobalTemplatesComponent
],
providers: [
{ // The FactoryProvider
provide: NZ_CONFIG,
useFactory: nzConfigFactory,
deps: [Injector, ComponentFactoryResolver]
}
]
})
export class AppModule {}
动态变更全局配置
你可以通过调用 NzConfigService
的 set
方法来改变某个组件的全局配置项,例如:
import { NzConfigService } from 'ng-zorro-antd/core/config';
@Component({
selector: 'app-change-zorro-config'
})
export class ChangeZorroConfigComponent {
constructor(private nzConfigService: NzConfigService) {}
onChangeConfig() {
// 爷爷:我就喜欢大号字!
this.nzConfigService.set('button', { nzSize: 'large' })
}
}
所有的组件实例都会响应这些改变(只要它们没有被单独赋值)。
全局配置项的优先级
对于任何一个属性来说,各个来源的值的优先级如下:
为组件的某个实例单独设置的值(通过模板或类似于 service.create
的方法)> 通过 NZ_CONFIG
提供的全局默认值(包括 set
方法) > NG-ZORRO 内置的默认值。
例如,你想创建一个 NzNotification 组件:
- 你在调用
NzNotificationService.success
时传递参数{ nzDuration: 6000 }
- 你通过
NZ_CONFIG
提供了全局默认值{ notification: { nzDuration: 5000 } }
- NG-ZORRO 内部默认值为 4500 最终该 Notification 将会显示 6000 毫秒。
查看所有可用的全局配置项
NzConfig
接口提供的类型定义信息能够帮助你找到所有支持全局配置项的组件和属性。另外,每个组件的文档都会指出哪些属性可以通过全局配置项的方式指定。