-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathApp.story.js
408 lines (399 loc) · 12.6 KB
/
App.story.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
import { storiesOf } from '@storybook/react'
import React, { Component } from 'react'
import { Timeline, TimelineBlip, TimelineEvent } from '../components'
import Image from './sample.jpg'
const globalStyles = {
backgroundColor: 'rgb(255, 234, 234)',
height: '100vh',
fontFamily: 'Roboto'
}
const container = story => <div style={globalStyles}>{story()}</div>
storiesOf('Timeline', module)
.addDecorator(container)
.add(
'Default View',
() => (
<Timeline>
<TimelineEvent
title='John Doe sent a SMS'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
>
I received the payment for $543. Should be shipping the item within a
couple of hours. Thanks for the order!
</TimelineEvent>
<TimelineEvent
title='You sent an email to John Doe'
createdAt='2016-09-11 09:06 AM'
icon={<i className='material-icons md-18'>email</i>}
iconColor='#03a9f4'
>
<p>Subject: Any updates?</p>
<p>
Like we talked, you said that you would share the shipment details?
This is an urgent order and so I am losing patience. Can you
expedite the process and pls do share the details asap. Consider
this a gentle reminder if you are on track already!
</p>
<p>- Maya</p>
</TimelineEvent>
</Timeline>
),
{ info: 'Timeline view with sensible defaults' }
)
.add(
'Orientation',
() => (
<Timeline orientation='right'>
<TimelineEvent
title='John Doe sent a SMS'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
>
I received the payment for $543. Should be shipping the item within a
couple of hours. Thanks for the order!
</TimelineEvent>
<TimelineEvent
title='You sent an email to John Doe'
createdAt='2016-09-11 09:06 AM'
icon={<i className='material-icons md-18'>email</i>}
iconColor='#03a9f4'
>
<p>Subject: Any updates?</p>
<p>
Like we talked, you said that you would share the shipment details?
This is an urgent order and so I am losing patience. Can you
expedite the process and pls do share the details asap. Consider
this a gentle reminder if you are on track already!
</p>
<p>- Maya</p>
</TimelineEvent>
</Timeline>
),
{ info: 'Timeline view with the other orientation' }
)
.add(
'Condensed Timeline',
() => (
<Timeline>
<TimelineBlip
title='Remove PropTypes warning'
iconStyle={{ marginLeft: 1, marginTop: 0 }}
icon={<i className='material-icons md-18'>assignment_late</i>}
iconColor='#03a9f4'
style={{
color: '#9c27b0'
}}
/>
<TimelineBlip
title='John starred this thread'
icon={<i className='material-icons md-18'>grade</i>}
iconColor='#6fba1c'
/>
</Timeline>
),
{ info: 'Use TimelineBlip to display micro events' }
)
.add(
'Action buttons',
() => (
<Timeline>
<TimelineEvent
title='You have sent a SMS'
createdAt='2016-10-02 08:02 AM'
icon={<i className='material-icons md-18'>textsms</i>}
buttons={
<i className='material-icons md-18' style={{ color: '#01579B' }}>
reply
</i>
}
iconColor='#6fba1c'
>
You should be receiving the shipment by tomorrow evening. Please reply
back if you have more questions
</TimelineEvent>
</Timeline>
),
{ info: 'Checkout the reply button to the top right corner of the event' }
)
.add(
'Content with images',
() => (
<Timeline>
<TimelineEvent
title='John Doe sent a SMS'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
>
<p>Please check if this image is good for printing</p>
<img src={Image} />
</TimelineEvent>
</Timeline>
),
{ info: 'The event can contain any content include media' }
)
.add(
'Card Appearance',
() => (
<Timeline>
<TimelineEvent
title='Introduction to Redux in React applications'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>event</i>}
iconColor='#757575'
buttons={
<i
className='material-icons md-24'
style={{ color: '#FFF', marginTop: -5 }}
>
play_circle_filled
</i>
}
container='card'
style={{
boxShadow: '0 0 6px 1px #BD3B36',
border: '1px solid #777',
borderRadius: 3,
fontWeight: 400,
color: '#828282c'
}}
cardHeaderStyle={{ backgroundColor: '#8bc34a', color: '#503331' }}
>
Card as timeline event with custom container and header styling
</TimelineEvent>
<TimelineEvent
title='Introduction to Redux in React applications'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>event</i>}
iconColor='#757575'
buttons={
<i
className='material-icons md-24'
style={{ color: '#FFF', marginTop: -5 }}
>
play_circle_filled
</i>
}
container='card'
>
A simple card with sensible defaults for styling
</TimelineEvent>
</Timeline>
),
{ info: 'Timeline event container can be modelled as a card' }
)
.add(
'Content Event handlers',
() => (
<Timeline>
<TimelineEvent
title='John Doe sent you a click bomb'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
onClick={() => alert('You clicked here!')}
>
Clicking this should raise an alert!
</TimelineEvent>
</Timeline>
),
{ info: 'Timeline events can listen to user actions' }
)
.add(
'Icon Event handlers',
() => {
class IconEventDemo extends React.Component {
constructor(props) {
super(props)
this.state = {
active: true,
iconColor: 'red'
}
this.toggleEvent = this.toggleEvent.bind(this)
}
get icon() {
return this.state.active ? 'stop' : 'play_arrow'
}
toggleEvent() {
alert('Will toggle event status between play and stop')
this.setState({
active: !this.state.active,
iconColor: this.state.iconColor === 'red' ? 'green' : 'red'
})
}
render() {
return (
<Timeline>
<TimelineEvent
title="Playing Beethoven's Moonlight Sonata"
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>{this.icon}</i>}
iconColor={this.state.iconColor}
onIconClick={this.toggleEvent}
>
Press icon on the bubble to stop music
</TimelineEvent>
</Timeline>
)
}
}
return <IconEventDemo />
},
{ info: 'Timeline events can listen to user actions' }
)
.add(
'Event Styling',
() => (
<Timeline>
<TimelineEvent
title='John Doe sent a SMS'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
style={{
backgroundColor: '#fff',
padding: 10,
boxShadow: '0 0 3px 1px #BD3B36',
border: '1px solid #eee'
}}
contentStyle={{ backgroundColor: '#00BCD4', color: '#fff' }}
>
This message should appear on a different background
</TimelineEvent>
</Timeline>
),
{ info: 'TimelineEvent is completely customizable' }
)
.add(
'Icon and Bubble Styling',
() => (
<Timeline lineStyle={{ background: '#999', width: 3 }}>
<TimelineEvent
title='John Doe sent a SMS'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
bubbleStyle={{ backgroundColor: '#00ff81' }}
>
Notice the style variations to the bubble and icons
</TimelineEvent>
<TimelineEvent
title={'Phone event'}
createdAt='2016-10-12 12:12 AM'
icon={<i className='material-icons md-18'>phone</i>}
iconStyle={{ marginLeft: 1, marginTop: 0 }}
iconColor='#5C6BC0'
>
John called!
</TimelineEvent>
</Timeline>
),
{ info: 'Modify the appearance of bubbles and containing icons' }
)
.add(
'Dynamic Prop Updates DontTest ',
() => {
class DynamicTimeline extends Component {
constructor(props) {
super(props)
this.state = {
createdAt: new Date()
}
this.onClick = this.onClick.bind(this)
}
onClick() {
this.setState({ createdAt: new Date() })
}
render() {
return (
<div>
<Timeline>
<TimelineEvent
title='John Doe sent a SMS'
createdAt={this.state.createdAt.toLocaleString()}
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
>
This message should appear on a different background
</TimelineEvent>
</Timeline>
<button onClick={this.onClick} style={{ margin: 10 }}>
Refresh Date
</button>
</div>
)
}
}
return <DynamicTimeline />
},
{ info: 'Props passed to the events are updated in realtime' }
)
.add(
'Title and Subtitle styling',
() => (
<Timeline>
<TimelineEvent
title='John Doe sent a SMS'
subtitle='☞ Needs RSVP'
subtitleStyle={{ color: '#2962FF' }}
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
>
I received the payment for $543. Should be shipping the item within a
couple of hours. Thanks for the order!
</TimelineEvent>
<TimelineEvent
title='You sent an email to John Doe'
titleStyle={{ fontWeight: 'bold' }}
subtitle='✔ Mail delivered'
subtitleStyle={{ color: 'green' }}
icon={<i className='material-icons md-18'>email</i>}
iconColor='#03a9f4'
>
Like we talked, you said that you would share the shipment details?
This is an urgent order and so I am losing patience. Can you expedite
the process and pls do share the details asap. Consider this a gentle
reminder if you are on track already!
</TimelineEvent>
</Timeline>
),
{ info: 'Add your own title and subtitle to events' }
)
.add(
'TimelineEvent with collapsible content',
() => (
<Timeline>
<TimelineEvent
title='John Doe sent a SMS'
createdAt='2016-09-12 10:06 PM'
icon={<i className='material-icons md-18'>textsms</i>}
iconColor='#6fba1c'
collapsible
showContent
>
I received the payment for $543. Should be shipping the item within a
couple of hours. Thanks for the order!
</TimelineEvent>
<TimelineEvent
title='You sent an email to John Doe'
createdAt='2016-09-11 09:06 AM'
icon={<i className='material-icons md-18'>email</i>}
iconColor='#03a9f4'
collapsible
>
<p>Subject: Any updates?</p>
<p>
Like we talked, you said that you would share the shipment details?
This is an urgent order and so I am losing patience. Can you
expedite the process and pls do share the details asap. Consider
this a gentle reminder if you are on track already!
</p>
<p>- Maya</p>
</TimelineEvent>
</Timeline>
),
{ info: 'Make the content collapsible' }
)