import { Component, OnInit, TemplateRef, ViewChild, inject } from '@angular/core';
import { YelonFormModule, SFObjectWidgetSchema, SFSchema } from '@yelon/form';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({
selector: 'form-object-card',
template: `
@if (schema) {
<sf [schema]="schema" (formSubmit)="submit($event)" />
}
<ng-template #extra>
<a (click)="msg.success('Success')">More</a>
</ng-template>
`,
standalone: true,
imports: [YelonFormModule]
})
export class FormObjectCardComponent implements OnInit {
readonly msg = inject(NzMessageService);
@ViewChild('extra', { static: true }) private extra!: TemplateRef<void>;
schema?: SFSchema;
ngOnInit(): void {
this.schema = {
properties: {
name: { type: 'string' },
age: { type: 'number' },
address1: {
title: '地址1',
type: 'object',
properties: {
country: { type: 'string' },
city: { type: 'string' },
zone: { type: 'string' }
},
ui: {
type: 'card',
cardExtra: this.extra
} as SFObjectWidgetSchema
},
address2: {
title: '地址2',
type: 'object',
properties: {
country: { type: 'string' },
city: { type: 'string' },
zone: { type: 'string' }
},
ui: {
type: 'card',
showExpand: false
} as SFObjectWidgetSchema
}
},
required: ['name', 'age'],
ui: {
spanLabelFixed: 150,
grid: { span: 12, gutter: 16 }
} as SFObjectWidgetSchema
};
}
submit(value: {}): void {
this.msg.success(JSON.stringify(value));
}
}