forked from vtex-apps/store-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
253 lines (229 loc) · 6.71 KB
/
index.js
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { ApolloConsumer } from 'react-apollo'
import { injectIntl, intlShape } from 'react-intl'
import { Button, Input } from 'vtex.styleguide'
import ADD_TO_AVAILABILITY_SUBSCRIBER_MUTATION from './mutations/addToAvailabilitySubscriberMutation.gql'
import styles from './styles.css'
/**
* Represents the availability subscriber form, that's shown when
* the product isn't available.
*/
class AvailabilitySubscriber extends Component {
emailInput = React.createRef()
nameInput = React.createRef()
state = {
name: '',
email: '',
emailError: '',
hasBlurredEmail: false,
isLoading: false,
sendStatus: '',
}
static propTypes = {
/** The id of the current product sku */
skuId: PropTypes.string.isRequired,
intl: intlShape.isRequired,
}
validateEmail = email => {
const { emailError } = this.state
const emailRegex = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
let error = ''
if (!emailRegex.test(email.toLowerCase())) {
error = 'store/availability-subscriber.invalid-email'
}
if (error !== emailError) {
this.setState({
emailError: error,
})
}
}
handleEmailBlur = () => {
if (this.state.hasBlurredEmail) {
return
}
this.setState({
hasBlurredEmail: true,
})
}
handleInputChange = e => {
this.setState({
[e.target.name]: e.target.value,
})
if (e.target.name === 'email') {
this.validateEmail(e.target.value)
}
}
handleSubmit = (e, client) => {
e.preventDefault()
const variables = {
acronym: 'AS',
document: {
fields: [
{
key: 'skuId',
value: this.props.skuId,
},
{
key: 'name',
value: this.state.name,
},
{
key: 'email',
value: this.state.email,
},
{
key: 'notificationSend',
value: false,
},
{
key: 'createdAt',
value: new Date().toISOString(),
},
{
key: 'sendAt',
value: null,
},
],
},
}
this.setState({
isLoading: true,
})
client
.mutate({
mutation: ADD_TO_AVAILABILITY_SUBSCRIBER_MUTATION,
variables,
})
.then(
mutationRes => {
this.setState({
name: '',
email: '',
isLoading: false,
sendStatus: 'success',
})
},
mutationErr => {
console.log('ERROR: ', mutationErr)
this.setState({
isLoading: false,
sendStatus: 'error',
})
}
)
const event = new Event('message:success')
event.details = {
success: true,
message: this.translate('store/availability-subscriber.added-message'),
}
document.dispatchEvent(event)
}
translate = id => this.props.intl.formatMessage({ id })
componentDidMount() {
this.setState({
email: this.emailInput.value || '',
name: this.nameInput.value || '',
})
}
render() {
const {
name,
email,
emailError,
hasBlurredEmail,
isLoading,
sendStatus,
} = this.state
const isFormDisabled =
name === '' || email === '' || emailError !== '' || isLoading
let emailErrorMessage = ''
if (hasBlurredEmail && emailError !== '') {
emailErrorMessage = this.translate(emailError)
}
return (
<ApolloConsumer>
{client => (
<div className={styles.subscriberContainer}>
<div className={`${styles.title} t-body mb3`}>
{this.translate('store/availability-subscriber.title')}
</div>
<div className={`${styles.subscribeLabel} t-small fw3`}>
{this.translate('store/availability-subscriber.subscribe-label')}
</div>
<form
className={`${styles.form} mb4`}
onSubmit={e => this.handleSubmit(e, client)}
>
<div
className={`${styles.content} flex-ns justify-between mt4 mw6`}
>
<div
className={`${styles.input} ${
styles.inputName
} w-100 mr5 mb4`}
>
<Input
name="name"
type="text"
placeholder={this.translate(
'store/availability-subscriber.name-placeholder'
)}
value={name}
onChange={this.handleInputChange}
ref={e => {
this.nameInput = e
}}
/>
</div>
<div
className={`${styles.input} ${
styles.inputEmail
} w-100 mr5 mb4`}
>
<Input
name="email"
type="text"
placeholder={this.translate(
'store/availability-subscriber.email-placeholder'
)}
value={email}
onChange={this.handleInputChange}
onBlur={this.handleEmailBlur}
error={hasBlurredEmail && !!emailError}
errorMessage={emailErrorMessage}
ref={e => {
this.emailInput = e
}}
/>
</div>
<div className={`${styles.submit} flex items-center mb4`}>
<Button
type="submit"
variation="primary"
size="small"
disabled={isFormDisabled}
isLoading={isLoading}
>
{this.translate('store/availability-subscriber.send-label')}
</Button>
</div>
</div>
{sendStatus === 'success' && (
<div className={`${styles.success} t-body c-success`}>
{this.translate('store/availability-subscriber.added-message')}
</div>
)}
{sendStatus === 'error' && (
<div className={`${styles.error} c-danger`}>
{this.translate('store/availability-subscriber.error-message')}
</div>
)}
</form>
</div>
)}
</ApolloConsumer>
)
}
}
export default injectIntl(AvailabilitySubscriber)