-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-method.ts
169 lines (140 loc) · 4.5 KB
/
template-method.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Template Method Pattern
// -----------------------
// The Template Method Pattern defines the skeleton of an algorithm in a
// method, deferring some steps to subclasses. Template Method lets
// subclasses redefine certain steps of an algorithm without changing
// the algorithm's structure.
// The Template Method Pattern is also known as the "Template Method
// Design Pattern" or the "Template Method Design Pattern".
// Problem:
// Imagine that you are creating a form generator. The form generator
// should be able to generate different types of params, such as text
// fields, checkboxes, and radio buttons. The form generator should
// also be able to generate different types of forms, such as login
// forms, registration forms, and contact forms.
// Define the interface for form fields
interface FormField {
label: string;
render(): void;
}
// Implement the text field
class TextField implements FormField {
constructor(public label: string) { }
render(): void {
console.log(`Adding ${this.label} text field...`);
}
}
// Implement the checkbox field
class CheckboxField implements FormField {
constructor(public label: string) { }
render(): void {
console.log(`Adding ${this.label} checkbox...`);
}
}
// Implement the radio button field
class RadioButtonField implements FormField {
constructor(public label: string) { }
render(): void {
console.log(`Adding ${this.label} radio button...`);
}
}
// Define the abstract form class
abstract class Form {
protected fields: FormField[];
constructor(fields: FormField[]) {
this.fields = fields;
}
public generateForm(): void {
this.addHeader();
this.addFields();
this.addFooter();
}
protected abstract addHeader(): void;
protected addFields(): void {
this.fields.forEach((field) => {
field.render();
});
}
protected abstract addFooter(): void;
}
// Implement the login form
class LoginForm extends Form {
constructor(fields: FormField[]) {
super(fields);
}
protected addHeader(): void {
console.log("Adding login form header...");
}
protected addFooter(): void {
console.log("Adding login button...");
console.log("Adding forgot password link...");
}
}
// Implement the registration form
class RegistrationForm extends Form {
constructor(fields: FormField[]) {
super(fields);
}
protected addHeader(): void {
console.log("Adding registration form header...");
}
protected addFooter(): void {
console.log("Adding register button...");
}
}
// Implement the contact form
class ContactForm extends Form {
constructor(fields: FormField[]) {
super(fields);
}
protected addHeader(): void {
console.log("Adding contact form header...");
}
protected addFooter(): void {
console.log("Adding send button...");
}
}
// Define the form types
type FormType = "login" | "registration" | "contact";
// Define the form generator
class FormGenerator {
static generateForm(type: FormType): void {
let fields: FormField[] = [];
switch (type) {
case "login":
fields = [new TextField("username"), new TextField("password"), new CheckboxField("remember me")];
break;
case "registration":
fields = [
new TextField("username"),
new TextField("email"),
new TextField("password"),
new TextField("confirm password"),
];
break;
case "contact":
fields = [new TextField("name"), new TextField("email"), new TextField("message")];
break;
default:
throw new Error(`Invalid form type: ${type}`);
}
const form = FormGenerator.createForm(type, fields);
form.generateForm();
}
private static createForm(type: FormType, fields: FormField[]): Form {
switch (type) {
case "login":
return new LoginForm(fields);
case "registration":
return new RegistrationForm(fields);
case "contact":
return new ContactForm(fields);
default:
throw new Error(`Invalid form type: ${type}`);
}
}
}
// Usage
FormGenerator.generateForm("login");
FormGenerator.generateForm("registration");
FormGenerator.generateForm("contact");