-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadapter.ts
80 lines (69 loc) · 1.57 KB
/
adapter.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
import { ExternalInstagramPackage } from "./external-pkg";
/**
* Represents a generic social media platform that can be used to post content.
*/
abstract class Social {
abstract post(): void;
}
/**
* Schedules posting to various social media platforms.
*/
class Scheduler {
constructor() {}
schedule(social: Social) {
console.log(`Posting to social media...`);
social.post();
}
}
/**
* Our class to post to Facebook.
*/
class Facebook extends Social {
post(): void {
console.log(`Posting to Facebook...`);
}
}
/**
* Our class to post to LinkedIn
*/
class LinkeIn extends Social {
post(): void {
console.log(`Posting to LinkeIn...`);
}
}
/**
* We can create a wrapper class to adapt the external package to our design.
* The example of using the adapter.
*
* @example
* ```ts
* function main() {
* const facebook = new Facebook();
* const linkedIn = new LinkeIn();
* // We use the adapter instead of the external package diectly.
* const instagram = new InstagramAdapter(new ExternalInstagramPackage());
*
* // We can use the scheduler to post to different social media.
* const scheduler = new Scheduler();
* scheduler.schedule(facebook);
* scheduler.schedule(linkedIn);
* scheduler.schedule(instagram);
* }
* ```
*/
class InstagramAdapter extends Social {
constructor(private instagram: ExternalInstagramPackage) {
super();
}
post(): void {
this.instagram.postWithDifferentName();
}
}
export {
ExternalInstagramPackage,
Facebook,
InstagramAdapter,
LinkeIn,
Scheduler,
Social,
};