playbook_ui 13.12.0.pre.alpha.PLAY1093typeaheadkitdocbug1577 → 13.12.0.pre.alpha.play900startratingasinput1543

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_star_rating/_star_rating.scss +80 -47
  3. data/app/pb_kits/playbook/pb_star_rating/_star_rating.tsx +151 -54
  4. data/app/pb_kits/playbook/pb_star_rating/custom-icons.js +356 -0
  5. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_color_options.html.erb +7 -0
  6. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_color_options.jsx +40 -0
  7. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.html.erb +11 -1
  8. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.jsx +17 -2
  9. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_hide.html.erb +6 -1
  10. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_hide.jsx +22 -5
  11. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_number_config.html.erb +12 -0
  12. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_number_config.jsx +57 -0
  13. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_size_options.html.erb +23 -0
  14. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_size_options.jsx +59 -0
  15. data/app/pb_kits/playbook/pb_star_rating/docs/example.yml +10 -5
  16. data/app/pb_kits/playbook/pb_star_rating/docs/index.js +6 -0
  17. data/app/pb_kits/playbook/pb_star_rating/star.svg +3 -0
  18. data/app/pb_kits/playbook/pb_star_rating/star_rating.html.erb +56 -15
  19. data/app/pb_kits/playbook/pb_star_rating/star_rating.rb +49 -6
  20. data/app/pb_kits/playbook/pb_star_rating/star_rating.test.js +33 -34
  21. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_highlight.jsx +2 -2
  22. data/dist/playbook-rails.js +5 -5
  23. data/lib/playbook/version.rb +1 -1
  24. metadata +10 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2e75ac2b96498c068416a578e7ffe91d6f97831b1b44e2b80d647fb8ce0c3d1
4
- data.tar.gz: f9605134e0684d8ba51ab2d6404ec4fd4699269b9fcd5cd714d43275a8f135f7
3
+ metadata.gz: 2daeb37609ca6ef566bc397c5088084ebac5857f79f989201bbd33c538e1e35a
4
+ data.tar.gz: 853196b395dd63bf09b59d8374bb7784d3339cbf3d4e11197daccaca6b76426f
5
5
  SHA512:
6
- metadata.gz: 68ab223d1d4c85efaa3fdf6f2d18661dcf2a7389b79c1df35cdfd150d8594ce2bb3c28bcc10402578dc9dcc59f0eaf08bc0f81b1140de200b3fcd640ee2ed93e
7
- data.tar.gz: 628889add191c4e59f40a6a9660b6b944f203920f18fa90089d0a5454356bc438f523235df4650b1a5c9de5c27d9af0b8f55bf036b0eca355720043804c5fd1f
6
+ metadata.gz: 57caaf48d216427e283dcd3fd6067c8cd5e9361e60cda1044c978f2210ef4bc1144359297a1e8abfe62a2555991fcf5d6e4f566acfc074a0a6872a896c2901fa
7
+ data.tar.gz: 3706eb8a4ed554d67f5cea0087ada781752d9a158cda4c5f952631a444a2dbc8a10af929f5e1561a4a68609641043f95c90850b5256ae48daa4e17ff946bd9c0
@@ -2,61 +2,94 @@
2
2
  @import "../tokens/opacity";
3
3
  @import "../tokens/spacing";
4
4
 
5
- $pb_star_rating_number_width: 30px;
6
- $pb_star_rating_wrapper_width: 90px;
7
- $pb_star_rating_height: 26px;
8
5
 
9
- [class^=pb_star_rating_kit] {
10
- position: relative;
11
- display: inline-flex;
6
+ [class*=pb_star_rating_kit] {
7
+ display: flex;
8
+ align-items: flex-end;
12
9
  justify-content: flex-start;
13
- align-items: flex-start;
14
-
15
- .pb_star_rating_number {
16
- flex-shrink: 0;
17
- flex-grow: 0;
18
- flex-basis: $pb_star_rating_number_width;
19
- width: $pb_star_rating_number_width;
20
- min-height: $pb_star_rating_height;
21
- padding: 0 $space-xs 0;
22
- color: $text_lt_light;
23
- font-size: $text-small;
10
+
11
+ path {
12
+ &.suble_star_dark {
13
+ fill: $text_dk_default; // Replace "red" with your desired color
14
+ }
15
+ &.suble_star_light {
16
+ fill: #242B42; // Replace "red" with your desired color
17
+ }
18
+ &.outline_star_dark {
19
+ stroke: $text_dk_lighter; // Replace "red" with your desired color
20
+ }
21
+ &.outline_star_light {
22
+ stroke: #C1CDD6; // Replace "red" with your desired color
23
+ }
24
+ &.empty_star_dark {
25
+ fill: $border_dark; // Replace "red" with your desired color
26
+ }
27
+ &.empty_star_light {
28
+ fill: #E4E8F0; // Replace "red" with your desired color
29
+ }
30
+ }
31
+
32
+ .number_rails_xs {
33
+ height: 22px !important;
34
+ }
35
+
36
+ .number_rails_sm {
37
+ height: 22px !important;
38
+ }
39
+
40
+ .number_rails_md {
41
+ height: 26px;
42
+ }
43
+
44
+ .number_rails_lg {
45
+ height: 38px;
46
+ }
47
+
48
+ .pb_star_rating_wrapper {
49
+ display: flex;
50
+ }
51
+
52
+ .pb_star_rating_number_xs {
53
+ max-height: 16px;
54
+ }
55
+
56
+ .pb_star_rating_number_sm {
57
+ max-height: 16px;
58
+ }
59
+
60
+ .pb_star_rating_number_md {
61
+ max-height: 32px;
62
+ }
63
+
64
+ .pb_star_rating_number_lg {
65
+ max-height: 56px;
66
+ }
67
+
68
+ .pb_star_xs {
24
69
  display: flex;
70
+ align-items: center;
25
71
  justify-content: center;
72
+ padding-right: 4px;
73
+ }
74
+
75
+ .pb_star_sm {
76
+ display: flex;
26
77
  align-items: center;
78
+ justify-content: center;
79
+ padding-right: 4px;
27
80
  }
28
81
 
29
- .pb_star_rating_wrapper {
30
- position: relative;
31
- width: $pb_star_rating_wrapper_width;
32
- flex-basis: $pb_star_rating_wrapper_width;
33
- flex-shrink: 0;
34
- flex-grow: 1;
35
- min-height: $pb_star_rating_height;
36
-
37
- .pb_star_rating_highlight {
38
- display: flex;
39
- position: absolute;
40
- top: 5px;
41
- left: 0;
42
- z-index: 5;
43
- color: $yellow;
44
- line-height: $pb_star_rating_height;
45
- }
46
- .pb_star_rating_base {
47
- display: flex;
48
- position: absolute;
49
- top: 5px;
50
- left: 0;
51
- z-index: 0;
52
- color: rgba($slate, $opacity-4);
53
- line-height: $pb_star_rating_height;
54
- }
82
+ .pb_star_md {
83
+ display: flex;
84
+ align-items: center;
85
+ justify-content: center;
86
+ padding-right: 6px;
55
87
  }
56
88
 
57
- &[class*=_hide_rating] {
58
- .pb_star_rating_number {
59
- display: none;
60
- }
89
+ .pb_star_lg {
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: center;
93
+ padding-right: 12px;
61
94
  }
62
95
  }
@@ -2,27 +2,36 @@ import React from "react"
2
2
  import classnames from "classnames"
3
3
 
4
4
  import { buildAriaProps, buildDataProps } from "../utilities/props"
5
-
6
- import Icon from "../pb_icon/_icon"
5
+ import Caption from '../pb_caption/_caption'
6
+ import Body from '../pb_body/_body'
7
+ import Title from '../pb_title/_title'
7
8
 
8
9
  type StarRatingProps = {
9
10
  aria?: {[key: string]: string},
10
11
  className?: string,
11
12
  data?: object,
13
+ dark?: boolean,
12
14
  fixedWidth?: boolean,
13
- hideRating: boolean,
15
+ layoutOption?: "default" | "number" | "onestar",
14
16
  icon?: string,
15
17
  id?: string,
16
18
  rating: number,
19
+ denominator: number,
20
+ colorOption?: "yellow" | "primary" | "subtle" | "outline",
21
+ size?: "xs" | "sm" | "md" | "lg";
17
22
  };
18
23
 
19
24
  const StarRating = ({
20
25
  aria = {},
21
26
  className,
22
27
  data = {},
23
- hideRating = false,
28
+ dark = false,
29
+ layoutOption = "default",
24
30
  id,
25
31
  rating = 0,
32
+ denominator = 5,
33
+ colorOption = "yellow",
34
+ size = "sm",
26
35
  }: StarRatingProps) => {
27
36
  const ariaProps = buildAriaProps(aria)
28
37
  const dataProps = buildDataProps(data)
@@ -30,12 +39,51 @@ const StarRating = ({
30
39
  "pb_star_rating_kit", className,
31
40
  ])
32
41
 
33
- const starCount = () => (
34
- [...Array(Math.floor(rating))]
42
+ const denominatorStyle = layoutOption === "onestar" ? 1 : denominator
43
+ const activeStars = Math.round(rating) > denominatorStyle ? denominatorStyle : Math.round(rating)
44
+ const emptyStars = denominatorStyle - Math.round(rating) < 0 ? 0 : denominatorStyle - Math.round(rating)
45
+ let svgSize
46
+
47
+ if (size === 'xs') {
48
+ svgSize = 14;
49
+ } else if (size === 'sm') {
50
+ svgSize = 16;
51
+ } else if (size === 'md') {
52
+ svgSize = 24;
53
+ } else if (size === 'lg') {
54
+ svgSize = 48;
55
+ } else {
56
+ svgSize = 16;
57
+ }
58
+
59
+ const starYellow = (
60
+ <svg width={svgSize} height={svgSize} viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
61
+ <path fillRule="evenodd" clipRule="evenodd" d="M9.86015 0.4371C9.73527 0.187329 9.4855 0 9.17328 0C8.89229 0 8.64252 0.187329 8.51763 0.4371L6.36335 4.83932L1.58647 5.55742C1.30547 5.58864 1.08692 5.80719 0.99326 6.05696C0.899595 6.33795 0.962038 6.61895 1.18059 6.8375L4.64617 10.2719L3.80319 15.1112C3.77197 15.3922 3.89685 15.7044 4.11541 15.8605C4.36518 16.0166 4.64617 16.0478 4.89594 15.9229L9.17328 13.6126L13.4506 15.9229C13.7004 16.0478 14.0126 16.0166 14.2624 15.8605C14.4809 15.7044 14.6058 15.3922 14.5434 15.1112L13.7316 10.2719L17.1972 6.8375C17.4157 6.61895 17.4782 6.33795 17.3845 6.05696C17.2909 5.80719 17.0723 5.58864 16.7913 5.55742L12.0144 4.83932L9.86015 0.4371Z" fill="#F9BB00"/>
62
+ </svg>
63
+ )
64
+
65
+ const starPrimary = (
66
+ <svg width={svgSize} height={svgSize} viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
67
+ <path fillRule="evenodd" clipRule="evenodd" d="M9.86015 0.4371C9.73527 0.187329 9.4855 0 9.17328 0C8.89229 0 8.64252 0.187329 8.51763 0.4371L6.36335 4.83932L1.58647 5.55742C1.30547 5.58864 1.08692 5.80719 0.99326 6.05696C0.899595 6.33795 0.962038 6.61895 1.18059 6.8375L4.64617 10.2719L3.80319 15.1112C3.77197 15.3922 3.89685 15.7044 4.11541 15.8605C4.36518 16.0166 4.64617 16.0478 4.89594 15.9229L9.17328 13.6126L13.4506 15.9229C13.7004 16.0478 14.0126 16.0166 14.2624 15.8605C14.4809 15.7044 14.6058 15.3922 14.5434 15.1112L13.7316 10.2719L17.1972 6.8375C17.4157 6.61895 17.4782 6.33795 17.3845 6.05696C17.2909 5.80719 17.0723 5.58864 16.7913 5.55742L12.0144 4.83932L9.86015 0.4371Z" fill="#0056CF"/>
68
+ </svg>
69
+ );
70
+
71
+ const starSubtle = (
72
+ <svg width={svgSize} height={svgSize} viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
73
+ <path fill={dark === true ? "#FFFFFF" : "#242B42"} fillRule="evenodd" clipRule="evenodd" d="M8.90904 0.4371C8.78416 0.187329 8.53438 0 8.22217 0C7.94118 0 7.69141 0.187329 7.56652 0.4371L5.41224 4.83932L0.635357 5.55742C0.354364 5.58864 0.135813 5.80719 0.042149 6.05696C-0.0515154 6.33795 0.0109275 6.61895 0.229478 6.8375L3.69506 10.2719L2.85208 15.1112C2.82086 15.3922 2.94574 15.7044 3.16429 15.8605C3.41407 16.0166 3.69506 16.0478 3.94483 15.9229L8.22217 13.6126L12.4995 15.9229C12.7493 16.0478 13.0615 16.0166 13.3113 15.8605C13.5298 15.7044 13.6547 15.3922 13.5923 15.1112L12.7805 10.2719L16.2461 6.8375C16.4646 6.61895 16.5271 6.33795 16.4334 6.05696C16.3397 5.80719 16.1212 5.58864 15.8402 5.55742L11.0633 4.83932L8.90904 0.4371Z" />
74
+ </svg>
75
+ );
76
+
77
+ const starBackground = (
78
+ <svg width={svgSize} height={svgSize} viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
79
+ <path fill={dark === true ? "#CECDD3" : "#E4E8F0"} fillRule="evenodd" clipRule="evenodd" d="M9.31126 0.4371C9.18638 0.187329 8.93661 0 8.62439 0C8.3434 0 8.09363 0.187329 7.96874 0.4371L5.81446 4.83932L1.03758 5.55742C0.756585 5.58864 0.538035 5.80719 0.444371 6.05696C0.350706 6.33795 0.413149 6.61895 0.631699 6.8375L4.09728 10.2719L3.2543 15.1112C3.22308 15.3922 3.34797 15.7044 3.56652 15.8605C3.81629 16.0166 4.09728 16.0478 4.34705 15.9229L8.62439 13.6126L12.9017 15.9229C13.1515 16.0478 13.4637 16.0166 13.7135 15.8605C13.932 15.7044 14.0569 15.3922 13.9945 15.1112L13.1827 10.2719L16.6483 6.8375C16.8669 6.61895 16.9293 6.33795 16.8356 6.05696C16.742 5.80719 16.5234 5.58864 16.2424 5.55742L11.4655 4.83932L9.31126 0.4371Z" />
80
+ </svg>
35
81
  )
36
82
 
37
- const hasHalfStar = () => (
38
- rating % 1 !== 0
83
+ const starOutline = (
84
+ <svg width={svgSize} height={svgSize} fill="none" xmlns="http://www.w3.org/2000/svg">
85
+ <path stroke={dark === true ? "rgba(255,255,255,0.4)" : "#C1CDD6"} d="M5.91323 5.33377L6.17269 5.29477L6.28801 5.0591L8.44116 0.659187C8.49971 0.543364 8.59517 0.5 8.64884 0.5C8.74499 0.5 8.83506 0.555009 8.88775 0.659235L11.0409 5.0591L11.1562 5.29477L11.4157 5.33377L16.1925 6.05186L16.2021 6.0533L16.2117 6.05436C16.2359 6.05706 16.2671 6.06847 16.3024 6.09973C16.3374 6.13062 16.3686 6.17476 16.3886 6.22412C16.4186 6.32162 16.401 6.40181 16.3198 6.48332C16.3196 6.48353 16.3194 6.48374 16.3192 6.48394L12.8552 9.91671L12.6712 10.0991L12.7141 10.3546L13.5258 15.1939L13.528 15.2068L13.5308 15.2196C13.5488 15.3004 13.5074 15.402 13.4567 15.4462C13.3391 15.5132 13.2227 15.5096 13.1546 15.4781L8.88646 13.1726L8.64884 13.0443L8.41121 13.1726L4.14274 15.4782C4.07877 15.5083 3.99031 15.5147 3.87267 15.4466C3.82302 15.4033 3.76655 15.2914 3.77463 15.1781L4.61431 10.3577L4.65911 10.1005L4.47368 9.91671L1.0097 6.48394C1.00947 6.48372 1.00925 6.4835 1.00903 6.48327C0.927878 6.40178 0.910311 6.3216 0.94026 6.22412C0.960274 6.17476 0.99154 6.13062 1.02646 6.09973C1.0618 6.06847 1.09296 6.05706 1.11724 6.05436L1.12682 6.0533L1.13635 6.05186L5.91323 5.33377Z"/>
86
+ </svg>
39
87
  )
40
88
 
41
89
  return (
@@ -45,53 +93,102 @@ const StarRating = ({
45
93
  className={css}
46
94
  id={id}
47
95
  >
48
- {!hideRating && (
49
- <div className="pb_star_rating_number">
50
- {rating}
51
- </div>
52
- )}
53
- <div className="pb_star_rating_wrapper">
54
- <div className="pb_star_rating_highlight">
55
- {starCount().map((_, index) => (
56
- <Icon
57
- fixedWidth={false}
58
- icon="star"
59
- key={index}
60
- />
61
- ))}
62
- {hasHalfStar() && (
63
- <Icon
64
- fixedWidth={false}
65
- icon="star-half"
66
- />
67
- )}
68
- </div>
69
-
70
- <div className="pb_star_rating_base">
71
- <Icon
72
- fixedWidth={false}
73
- icon="star"
74
- />
75
- <Icon
76
- fixedWidth={false}
77
- icon="star"
78
- />
79
- <Icon
80
- fixedWidth={false}
81
- icon="star"
82
- />
83
- <Icon
84
- fixedWidth={false}
85
- icon="star"
86
- />
87
- <Icon
88
- fixedWidth={false}
89
- icon="star"
90
- />
96
+ {layoutOption === "number" && (
97
+ <div className={`pb_star_rating_number_${size}`}>
98
+ {size === 'xs' && (
99
+ <Caption
100
+ text={rating.toString()}
101
+ size="xs"
102
+ paddingRight="xs"
103
+ dark={dark}
104
+ />
105
+ )}
106
+ {size === 'sm' && (
107
+ <Caption
108
+ text={rating.toString()}
109
+ size="xs"
110
+ paddingRight="xs"
111
+ dark={dark}
112
+ />
113
+ )}
114
+ {size === 'md' && (
115
+ <Body
116
+ text={rating.toString()}
117
+ paddingRight="xs"
118
+ dark={dark}
119
+ />
120
+ )}
121
+ {size === 'lg' && (
122
+ <Title
123
+ text={rating.toString()}
124
+ size={2}
125
+ paddingRight="sm"
126
+ dark={dark}
127
+ />
128
+ )}
91
129
  </div>
130
+ )}
131
+ <div className={`pb_star_rating_wrapper ${layoutOption}`}>
132
+ {[...Array(activeStars)].map((_, index) => (
133
+ <div className={`pb_star_${size}`} key={index}>
134
+ {colorOption === 'yellow' && (
135
+ starYellow
136
+ ) }
137
+ {colorOption === 'primary' && (
138
+ starPrimary
139
+ ) }
140
+ {colorOption === 'outline' && (
141
+ starPrimary
142
+ ) }
143
+ {colorOption === 'subtle' && (
144
+ starSubtle
145
+ ) }
146
+ </div>
147
+ ))}
148
+ {[...Array(emptyStars)].map((_, index) => (
149
+ <div className={`pb_star_${size}`} key={index}>
150
+ {colorOption === 'outline' && (
151
+ starOutline
152
+ ) }
153
+ {colorOption !== 'outline' && (
154
+ starBackground
155
+ ) }
156
+ </div>
157
+ ))}
92
158
  </div>
93
- </div>
94
- )
95
- }
159
+ {layoutOption === "onestar" && (
160
+ <div className={`pb_star_rating_number_${size}`}>
161
+ {size === 'xs' && (
162
+ <Caption
163
+ text={`${rating.toString()} of ${denominator}`}
164
+ size="xs"
165
+ dark={dark}
166
+ />
167
+ )}
168
+ {size === 'sm' && (
169
+ <Caption
170
+ text={`${rating.toString()} of ${denominator}`}
171
+ size="xs"
172
+ dark={dark}
173
+ />
174
+ )}
175
+ {size === 'md' && (
176
+ <Body
177
+ text={`${rating.toString()} of ${denominator}`}
178
+ dark={dark}
179
+ />
180
+ )}
181
+ {size === 'lg' && (
182
+ <Title
183
+ text={`${rating.toString()} of ${denominator}`}
184
+ size={2}
185
+ dark={dark}
186
+ />
187
+ )}
188
+ </div>
189
+ )}
190
+ </div>
191
+ )
192
+ }
96
193
 
97
194
  export default StarRating