playbook_ui 14.6.0.pre.alpha.PBNTR5554217 → 14.6.0.pre.alpha.play1586datearea4218
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_currency/_currency.tsx +6 -16
- data/app/pb_kits/playbook/pb_currency/currency.rb +11 -38
- data/app/pb_kits/playbook/pb_currency/currency.test.js +0 -35
- data/app/pb_kits/playbook/pb_currency/docs/example.yml +1 -3
- data/app/pb_kits/playbook/pb_currency/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_timeline/_item.tsx +59 -23
- data/app/pb_kits/playbook/pb_timeline/_timeline.tsx +8 -0
- data/app/pb_kits/playbook/pb_timeline/date_area.html.erb +12 -0
- data/app/pb_kits/playbook/pb_timeline/date_area.rb +13 -0
- data/app/pb_kits/playbook/pb_timeline/detail_area.html.erb +3 -0
- data/app/pb_kits/playbook/pb_timeline/detail_area.rb +11 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.html.erb +43 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.jsx +68 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.md +4 -0
- data/app/pb_kits/playbook/pb_timeline/docs/example.yml +2 -1
- data/app/pb_kits/playbook/pb_timeline/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_timeline/item.html.erb +17 -21
- data/app/pb_kits/playbook/pb_timeline/item.rb +4 -0
- data/app/pb_kits/playbook/pb_timeline/node_area.html.erb +14 -0
- data/app/pb_kits/playbook/pb_timeline/node_area.rb +16 -0
- data/app/pb_kits/playbook/pb_timeline/subcomponents/Detail.tsx +29 -0
- data/app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx +38 -0
- data/app/pb_kits/playbook/pb_timeline/subcomponents/Step.tsx +42 -0
- data/app/pb_kits/playbook/pb_timeline/subcomponents/index.tsx +3 -0
- data/app/pb_kits/playbook/pb_timeline/timeline.test.js +84 -0
- data/dist/chunks/_weekday_stacked-C-VEa5Ar.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +15 -4
- data/app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.html.erb +0 -7
- data/app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.jsx +0 -18
- data/dist/chunks/_weekday_stacked-C2icYweq.js +0 -45
@@ -0,0 +1,38 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import classnames from 'classnames'
|
3
|
+
import { buildHtmlProps } from '../../utilities/props'
|
4
|
+
import { globalProps, GlobalProps } from "../../utilities/globalProps"
|
5
|
+
import DateStacked from '../../pb_date_stacked/_date_stacked'
|
6
|
+
|
7
|
+
type TimelineLabelProps = {
|
8
|
+
date?: Date,
|
9
|
+
children?: React.ReactNode,
|
10
|
+
className?: string,
|
11
|
+
htmlOptions?: { [key: string]: any },
|
12
|
+
} & GlobalProps
|
13
|
+
|
14
|
+
const TimelineLabel: React.FC<TimelineLabelProps> = ({
|
15
|
+
date,
|
16
|
+
children,
|
17
|
+
className,
|
18
|
+
htmlOptions = {},
|
19
|
+
...props
|
20
|
+
}) => {
|
21
|
+
const htmlProps = buildHtmlProps(htmlOptions)
|
22
|
+
return (
|
23
|
+
<div
|
24
|
+
{...htmlProps}
|
25
|
+
className={classnames('pb_timeline_item_left_block', globalProps(props), className)}
|
26
|
+
>
|
27
|
+
{children}
|
28
|
+
{date && (
|
29
|
+
<DateStacked align="center"
|
30
|
+
date={date}
|
31
|
+
size="sm"
|
32
|
+
/>
|
33
|
+
)}
|
34
|
+
</div>
|
35
|
+
)
|
36
|
+
}
|
37
|
+
|
38
|
+
export default TimelineLabel
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import classnames from 'classnames'
|
3
|
+
import { buildHtmlProps } from '../../utilities/props'
|
4
|
+
import { globalProps, GlobalProps } from "../../utilities/globalProps"
|
5
|
+
import IconCircle from '../../pb_icon_circle/_icon_circle'
|
6
|
+
|
7
|
+
type TimelineStepProps = {
|
8
|
+
icon?: string,
|
9
|
+
iconColor?: 'default' | 'royal' | 'blue' | 'purple' | 'teal' | 'red' | 'yellow' | 'green',
|
10
|
+
children?: React.ReactNode,
|
11
|
+
className?: string,
|
12
|
+
htmlOptions?: { [key: string]: any },
|
13
|
+
} & GlobalProps
|
14
|
+
|
15
|
+
const TimelineStep: React.FC<TimelineStepProps> = ({
|
16
|
+
icon = 'user',
|
17
|
+
iconColor = 'default',
|
18
|
+
children,
|
19
|
+
className,
|
20
|
+
htmlOptions = {},
|
21
|
+
...props
|
22
|
+
}) => {
|
23
|
+
const htmlProps = buildHtmlProps(htmlOptions)
|
24
|
+
return (
|
25
|
+
<div
|
26
|
+
{...htmlProps}
|
27
|
+
className={classnames('pb_timeline_item_step', globalProps(props), className)}
|
28
|
+
>
|
29
|
+
{children ? (
|
30
|
+
children
|
31
|
+
) : (
|
32
|
+
<IconCircle icon={icon}
|
33
|
+
size="xs"
|
34
|
+
variant={iconColor}
|
35
|
+
/>
|
36
|
+
)}
|
37
|
+
<div className="pb_timeline_item_connector" />
|
38
|
+
</div>
|
39
|
+
)
|
40
|
+
}
|
41
|
+
|
42
|
+
export default TimelineStep
|
@@ -2,6 +2,10 @@ import React from 'react'
|
|
2
2
|
import { render, screen } from '../utilities/test-utils'
|
3
3
|
|
4
4
|
import Timeline from './_timeline'
|
5
|
+
import TimelineItem from './_item'
|
6
|
+
import TimelineLabel from './subcomponents/Label'
|
7
|
+
import TimelineStep from './subcoponents/Step'
|
8
|
+
import TimelineDetail from './subcomponents/Detail'
|
5
9
|
import TitleDetail from '../pb_title_detail/_title_detail'
|
6
10
|
|
7
11
|
const testId = 'timeline'
|
@@ -43,18 +47,91 @@ const TimelineDefault = (props) => (
|
|
43
47
|
</>
|
44
48
|
)
|
45
49
|
|
50
|
+
const TimelineWithChildren = (props) => (
|
51
|
+
<>
|
52
|
+
<Timeline
|
53
|
+
className={className}
|
54
|
+
data={{ testid: testId }}
|
55
|
+
orientation="horizontal"
|
56
|
+
showDate
|
57
|
+
{...props}
|
58
|
+
>
|
59
|
+
<TimelineItem lineStyle="solid"
|
60
|
+
{...props}
|
61
|
+
>
|
62
|
+
<TimelineLabel date={new Date()} />
|
63
|
+
<TimelineStep icon="user"
|
64
|
+
iconColor="royal"
|
65
|
+
/>
|
66
|
+
<TimelineDetail>
|
67
|
+
<TitleDetail
|
68
|
+
detail="37-27 74th Street"
|
69
|
+
title="Jackson Heights"
|
70
|
+
{...props}
|
71
|
+
/>
|
72
|
+
</TimelineDetail>
|
73
|
+
</TimelineItem>
|
74
|
+
|
75
|
+
<TimelineItem lineStyle="dotted"
|
76
|
+
{...props}
|
77
|
+
>
|
78
|
+
<TimelineStep icon="check"
|
79
|
+
iconColor="teal"
|
80
|
+
/>
|
81
|
+
<TimelineDetail>
|
82
|
+
<TitleDetail
|
83
|
+
detail="81 Gate St Brooklyn"
|
84
|
+
title="Greenpoint"
|
85
|
+
{...props}
|
86
|
+
/>
|
87
|
+
</TimelineDetail>
|
88
|
+
</TimelineItem>
|
89
|
+
|
90
|
+
<TimelineItem lineStyle="solid"
|
91
|
+
{...props}
|
92
|
+
>
|
93
|
+
<TimelineLabel
|
94
|
+
date={new Date(new Date().setDate(new Date().getDate() + 1))}
|
95
|
+
/>
|
96
|
+
<TimelineStep icon="map-marker-alt"
|
97
|
+
iconColor="purple"
|
98
|
+
/>
|
99
|
+
<TimelineDetail>
|
100
|
+
<TitleDetail
|
101
|
+
detail="72 E St Astoria"
|
102
|
+
title="Society Hill"
|
103
|
+
{...props}
|
104
|
+
/>
|
105
|
+
</TimelineDetail>
|
106
|
+
</TimelineItem>
|
107
|
+
</Timeline>
|
108
|
+
</>
|
109
|
+
)
|
110
|
+
|
46
111
|
test('should pass data prop', () => {
|
47
112
|
render(<TimelineDefault />)
|
48
113
|
const kit = screen.getByTestId(testId)
|
49
114
|
expect(kit).toBeInTheDocument()
|
50
115
|
})
|
51
116
|
|
117
|
+
test('should pass data prop using children', () => {
|
118
|
+
render(<TimelineWithChildren />)
|
119
|
+
const kit = screen.getByTestId(testId)
|
120
|
+
expect(kit).toBeInTheDocument()
|
121
|
+
})
|
122
|
+
|
52
123
|
test('should pass className prop', () => {
|
53
124
|
render(<TimelineDefault />)
|
54
125
|
const kit = screen.getByTestId(testId)
|
55
126
|
expect(kit).toHaveClass(className)
|
56
127
|
})
|
57
128
|
|
129
|
+
test('should pass className prop with children', () => {
|
130
|
+
render(<TimelineWithChildren />)
|
131
|
+
const kit = screen.getByTestId(testId)
|
132
|
+
expect(kit).toHaveClass(className)
|
133
|
+
})
|
134
|
+
|
58
135
|
test('should pass aria prop', () => {
|
59
136
|
render(<TimelineDefault />)
|
60
137
|
const kit = screen.getByTestId(testId)
|
@@ -86,3 +163,10 @@ test('should pass showDate prop', () => {
|
|
86
163
|
const kit = screen.getByTestId(testId)
|
87
164
|
expect(kit).toHaveClass('pb_timeline_kit__horizontal__with_date')
|
88
165
|
})
|
166
|
+
|
167
|
+
test('should pass showDate prop with Children', () => {
|
168
|
+
const props = { showDate: true }
|
169
|
+
render(<TimelineWithChildren {...props} />)
|
170
|
+
const kit = screen.getByTestId(testId)
|
171
|
+
expect(kit).toHaveClass('pb_timeline_kit__horizontal__with_date')
|
172
|
+
})
|