-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
welcome.tsx
175 lines (162 loc) · 5.67 KB
/
welcome.tsx
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
170
171
172
173
174
175
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
/*
* The UI and related logic for the welcome screen that *should* show only
* when it is enabled (the default) and there is no Kibana-consumed data
* in Elasticsearch.
*/
import React, { Fragment } from 'react';
import {
EuiLink,
EuiTextColor,
EuiTitle,
EuiSpacer,
EuiFlexGroup,
EuiFlexItem,
EuiIcon,
EuiPortal,
} from '@elastic/eui';
import { METRIC_TYPE } from '@kbn/analytics';
import { FormattedMessage } from '@kbn/i18n/react';
import { getServices } from '../kibana_services';
import { TelemetryPluginStart } from '../../../../telemetry/public';
import { SampleDataCard } from './sample_data';
interface Props {
urlBasePath: string;
onSkip: () => void;
telemetry?: TelemetryPluginStart;
}
/**
* Shows a full-screen welcome page that gives helpful quick links to beginners.
*/
export class Welcome extends React.Component<Props> {
private services = getServices();
private hideOnEsc = (e: KeyboardEvent) => {
if (e.key === 'Escape') {
this.props.onSkip();
}
};
private redirecToAddData() {
const path = this.services.addBasePath('#/tutorial_directory');
window.location.href = path;
}
private onSampleDataDecline = () => {
this.services.trackUiMetric(METRIC_TYPE.CLICK, 'sampleDataDecline');
this.props.onSkip();
};
private onSampleDataConfirm = () => {
this.services.trackUiMetric(METRIC_TYPE.CLICK, 'sampleDataConfirm');
this.redirecToAddData();
};
componentDidMount() {
const { telemetry } = this.props;
this.services.trackUiMetric(METRIC_TYPE.LOADED, 'welcomeScreenMount');
if (telemetry?.telemetryService.userCanChangeSettings) {
telemetry.telemetryNotifications.setOptedInNoticeSeen();
}
document.addEventListener('keydown', this.hideOnEsc);
}
componentWillUnmount() {
document.removeEventListener('keydown', this.hideOnEsc);
}
private renderTelemetryEnabledOrDisabledText = () => {
const { telemetry } = this.props;
if (!telemetry || !telemetry.telemetryService.userCanChangeSettings) {
return null;
}
const isOptedIn = telemetry.telemetryService.getIsOptedIn();
if (isOptedIn) {
return (
<Fragment>
<FormattedMessage
id="home.dataManagementDisableCollection"
defaultMessage=" To stop collection, "
/>
<EuiLink href={this.services.addBasePath('management/kibana/settings')}>
<FormattedMessage
id="home.dataManagementDisableCollectionLink"
defaultMessage="disable usage data here."
/>
</EuiLink>
</Fragment>
);
} else {
return (
<Fragment>
<FormattedMessage
id="home.dataManagementEnableCollection"
defaultMessage=" To start collection, "
/>
<EuiLink href={this.services.addBasePath('management/kibana/settings')}>
<FormattedMessage
id="home.dataManagementEnableCollectionLink"
defaultMessage="enable usage data here."
/>
</EuiLink>
</Fragment>
);
}
};
render() {
const { urlBasePath, telemetry } = this.props;
return (
<EuiPortal>
<div className="homWelcome" data-test-subj="homeWelcomeInterstitial">
<header className="homWelcome__header">
<div className="homWelcome__content eui-textCenter">
<EuiSpacer size="xl" />
<span className="homWelcome__logo">
<EuiIcon type="logoElastic" size="xxl" />
</span>
<EuiTitle size="l" className="homWelcome__title">
<h1>
<FormattedMessage id="home.welcomeTitle" defaultMessage="Welcome to Elastic" />
</h1>
</EuiTitle>
<EuiSpacer size="m" />
</div>
</header>
<div className="homWelcome__content homWelcome-body">
<EuiFlexGroup gutterSize="l">
<EuiFlexItem>
<SampleDataCard
urlBasePath={urlBasePath}
onConfirm={this.onSampleDataConfirm}
onDecline={this.onSampleDataDecline}
/>
<EuiSpacer size="s" />
{!!telemetry && (
<Fragment>
<EuiTextColor className="euiText--small" color="subdued">
<FormattedMessage
id="home.dataManagementDisclaimerPrivacy"
defaultMessage="To learn about how usage data helps us manage and improve our products and services, see our "
/>
<EuiLink
href={telemetry.telemetryConstants.getPrivacyStatementUrl()}
target="_blank"
rel="noopener"
>
<FormattedMessage
id="home.dataManagementDisclaimerPrivacyLink"
defaultMessage="Privacy Statement."
/>
</EuiLink>
{this.renderTelemetryEnabledOrDisabledText()}
</EuiTextColor>
<EuiSpacer size="xs" />
</Fragment>
)}
</EuiFlexItem>
</EuiFlexGroup>
</div>
</div>
</EuiPortal>
);
}
}