import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { MatDialogRef } from '@angular/material/dialog'; @Component({ selector: 'member-regist-compose', templateUrl: './compose.component.html', encapsulation: ViewEncapsulation.None, }) export class RegistComposeComponent implements OnInit { composeForm!: FormGroup; copyFields: { cc: boolean; bcc: boolean } = { cc: false, bcc: false, }; quillModules: any = { toolbar: [ ['bold', 'italic', 'underline'], [{ align: [] }, { list: 'ordered' }, { list: 'bullet' }], ['clean'], ], }; /** * Constructor */ constructor( public matDialogRef: MatDialogRef, private _formBuilder: FormBuilder ) {} // ----------------------------------------------------------------------------------------------------- // @ Lifecycle hooks // ----------------------------------------------------------------------------------------------------- /** * On init */ ngOnInit(): void { // Create the form this.composeForm = this._formBuilder.group({ partnerId: [{ value: 'kgon4', disabled: true }], siteName: [''], signinId: [''], password: [''], exchangePw: [''], nickname: [''], calculateType: [''], phoneNumber: [''], bankName: [''], accountNumber: [''], accountHolder: [''], }); } // ----------------------------------------------------------------------------------------------------- // @ Public methods // ----------------------------------------------------------------------------------------------------- /** * Show the copy field with the given field name * * @param name */ showCopyField(name: string): void { // Return if the name is not one of the available names if (name !== 'cc' && name !== 'bcc') { return; } // Show the field this.copyFields[name] = true; } /** * Save and close */ saveAndClose(): void { // Save the message as a draft this.saveAsDraft(); // Close the dialog this.matDialogRef.close(); } /** * Discard the message */ discard(): void {} /** * Save the message as a draft */ saveAsDraft(): void {} /** * Send the message */ send(): void {} }