-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstatus-page.ts
108 lines (100 loc) · 2.6 KB
/
status-page.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
import { Construct } from './construct'
import { Session } from './project'
import { StatusPageService } from './status-page-service'
import { Ref } from './ref'
export interface StatusPageCardProps {
/**
* The name of the card.
*/
name: string
/**
* A list of services to include in the card.
*/
services?: Array<StatusPageService>
}
export type StatusPageTheme = 'AUTO' | 'DARK' | 'LIGHT'
export interface StatusPageProps {
/**
* The name of the status page.
*/
name: string
/**
* The URL of the status page.
*/
url: string
/**
* A list of cards to add to your status page.
*/
cards?: StatusPageCardProps[]
/**
* A custom user domain, e.g. "status.example.com". See the docs on updating your DNS and SSL usage.
*/
customDomain?: string
/**
* A URL pointing to an image file that serves as the logo for the status page.
*/
logo?: string
/**
* The URL that clicking the logo should redirect the user to.
*/
redirectTo?: string
/**
* A URL pointing to an image file to be used as the favicon for the status page.
*/
favicon?: string
/**
* The default theme of the status page.
*/
defaultTheme?: StatusPageTheme
}
/**
* Creates a Status Page
*/
export class StatusPage extends Construct {
name: string
cards?: StatusPageCardProps[]
url: string
customDomain?: string
logo?: string
redirectTo?: string
favicon?: string
defaultTheme?: StatusPageTheme
static readonly __checklyType = 'status-page'
/**
* Constructs the Status Page instance
*
* @param logicalId unique project-scoped resource name identification
* @param props status page configuration properties
*
* {@link https://checklyhq.com/docs/cli/constructs-reference/#statuspage Read more in the docs}
*/
constructor (logicalId: string, props: StatusPageProps) {
super(StatusPage.__checklyType, logicalId)
this.name = props.name
this.url = props.url
this.cards = props.cards
this.customDomain = props.customDomain
this.logo = props.logo
this.redirectTo = props.redirectTo
this.favicon = props.favicon
this.defaultTheme = props.defaultTheme
Session.registerConstruct(this)
}
synthesize (): any|null {
return {
name: this.name,
url: this.url,
customDomain: this.customDomain,
logo: this.logo,
redirectTo: this.redirectTo,
favicon: this.favicon,
defaultTheme: this.defaultTheme,
cards: this.cards?.map(card => ({
name: card.name,
services: card
.services
?.map((service) => Ref.from(service.logicalId)),
})),
}
}
}