playbook_ui 13.12.0.pre.alpha.play900startratingasinput1543 → 13.12.0.pre.alpha.play1051highchartstest1556

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.tsx +36 -32
  3. data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +68 -63
  4. data/app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.ts +257 -3
  5. data/app/pb_kits/playbook/pb_gauge/_gauge.tsx +59 -47
  6. data/app/pb_kits/playbook/pb_line_graph/_line_graph.tsx +40 -34
  7. data/app/pb_kits/playbook/pb_star_rating/_star_rating.scss +47 -80
  8. data/app/pb_kits/playbook/pb_star_rating/_star_rating.tsx +54 -151
  9. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.html.erb +1 -11
  10. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.jsx +2 -17
  11. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_hide.html.erb +1 -6
  12. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_hide.jsx +5 -22
  13. data/app/pb_kits/playbook/pb_star_rating/docs/example.yml +5 -10
  14. data/app/pb_kits/playbook/pb_star_rating/docs/index.js +0 -6
  15. data/app/pb_kits/playbook/pb_star_rating/star_rating.html.erb +15 -56
  16. data/app/pb_kits/playbook/pb_star_rating/star_rating.rb +6 -49
  17. data/app/pb_kits/playbook/pb_star_rating/star_rating.test.js +34 -33
  18. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +107 -102
  19. data/app/pb_kits/playbook/playbook-doc.js +4 -4
  20. data/app/pb_kits/playbook/playbook-rails-react-bindings.js +4 -4
  21. data/dist/playbook-rails.js +7 -7
  22. data/lib/playbook/version.rb +1 -1
  23. metadata +1 -9
  24. data/app/pb_kits/playbook/pb_star_rating/custom-icons.js +0 -356
  25. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_color_options.html.erb +0 -7
  26. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_color_options.jsx +0 -40
  27. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_number_config.html.erb +0 -12
  28. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_number_config.jsx +0 -57
  29. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_size_options.html.erb +0 -23
  30. data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_size_options.jsx +0 -59
  31. data/app/pb_kits/playbook/pb_star_rating/star.svg +0 -3
@@ -4,21 +4,7 @@ import StarRating from '../_star_rating'
4
4
 
5
5
  const StarRatingDefault = (props) => (
6
6
  <>
7
- <StarRating {...props} />
8
-
9
- <br />
10
-
11
- <StarRating
12
- rating={0.9}
13
- {...props}
14
- />
15
-
16
- <br />
17
-
18
- <StarRating
19
- rating={1.5}
20
- {...props}
21
- />
7
+ <StarRating />
22
8
 
23
9
  <br />
24
10
 
@@ -30,11 +16,10 @@ const StarRatingDefault = (props) => (
30
16
  <br />
31
17
 
32
18
  <StarRating
33
- rating={4.2}
19
+ rating={1.5}
34
20
  {...props}
35
21
  />
36
22
 
37
-
38
23
  <br />
39
24
 
40
25
  <StarRating
@@ -1,6 +1 @@
1
- <%= pb_rails("star_rating", props: { rating: 3 }) %>
2
- </br>
3
- <%= pb_rails("star_rating", props: { rating: 3, layout_option: "number" }) %>
4
- </br>
5
- <%= pb_rails("star_rating", props: { rating: 3, layout_option: "onestar" }) %>
6
- </br>
1
+ <%= pb_rails("star_rating", props: { rating: 3.5, hide_rating: true }) %>
@@ -3,30 +3,13 @@ import React from 'react'
3
3
  import StarRating from '../_star_rating'
4
4
 
5
5
  const StarRatingHide = (props) => (
6
- <>
7
6
 
8
- <StarRating
9
- rating={3}
10
- {...props}
11
- />
7
+ <StarRating
8
+ hideRating
9
+ rating={3.5}
10
+ {...props}
11
+ />
12
12
 
13
- <br />
14
-
15
- <StarRating
16
- layoutOption={"number"}
17
- rating={3}
18
- {...props}
19
- />
20
-
21
- <br />
22
-
23
- <StarRating
24
- layoutOption={"onestar"}
25
- rating={3}
26
- {...props}
27
- />
28
-
29
- </>
30
13
  )
31
14
 
32
15
  export default StarRatingHide
@@ -1,14 +1,9 @@
1
1
  examples:
2
+
2
3
  rails:
3
- - star_rating_default: Default
4
- - star_rating_color_options: Color Options
5
- - star_rating_hide: Layout Options
6
- - star_rating_number_config: Number Config
7
- - star_rating_size_options: Size Options
4
+ - star_rating_default: Default
5
+ - star_rating_hide: Hide Rating Value
8
6
 
9
7
  react:
10
- - star_rating_default: Default
11
- - star_rating_color_options: Color Options
12
- - star_rating_hide: Layout Options
13
- - star_rating_number_config: Number Config
14
- - star_rating_size_options: Size Options
8
+ - star_rating_default: Default
9
+ - star_rating_hide: Hide Rating Value
@@ -1,9 +1,3 @@
1
1
  export { default as StarRatingDefault } from './_star_rating_default.jsx'
2
2
 
3
- export { default as StarRatingColorOptions } from './_star_rating_color_options.jsx'
4
-
5
3
  export { default as StarRatingHide } from './_star_rating_hide.jsx'
6
-
7
- export { default as StarRatingNumberConfig } from './_star_rating_number_config.jsx'
8
-
9
- export { default as StarRatingSizeOptions } from './_star_rating_size_options.jsx'
@@ -3,70 +3,29 @@
3
3
  data: object.data,
4
4
  class: object.classname) do %>
5
5
  <%# Rating value %>
6
- <% if layout_option == "number" %>
7
- <%= content_tag(:div, class: "number_rails_#{size}") do %>
8
- <% case object.size %>
9
- <% when "xs", "sm" %>
10
- <%= pb_rails("caption", props: { text: object.rating,
11
- size: "sm",
12
- dark: dark,
13
- padding_right: "xxs" }) %>
14
- <% when "md" %>
15
- <%= pb_rails("body", props: { text: object.rating,
16
- dark: dark,
17
- padding_right: "xxs" }) %>
18
- <% when "lg" %>
19
- <%= pb_rails("title", props: { text: object.rating,
20
- size: 2,
21
- dark: dark,
22
- padding_right: "sm" }) %>
23
- <% end %>
24
- <% end %>
6
+ <% if !object.hide_rating %>
7
+ <%= content_tag(:div, object.rating, class: "pb_star_rating_number") %>
25
8
  <% end %>
9
+
26
10
  <%= content_tag(:div, class: "pb_star_rating_wrapper") do %>
27
11
  <%# Gold stars generated by rating value %>
28
12
  <%= content_tag(:div, class: "pb_star_rating_highlight") do %>
29
13
  <% object.star_count.times do %>
30
- <svg width="<%= svg_size %>" class="<%= %>" height="<%= svg_size %>" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
31
- <% case object.color_option %>
32
- <% when "yellow"%>
33
- <path fill-rule="evenodd" clip-rule="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"/>
34
- <% when "primary", "outline" %>
35
- <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"/>
36
- <% when "subtle"%>
37
- <path class="<%= subtle_star_color %>" fill-rule="evenodd" clip-rule="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" />
38
- <% end %>
39
- </svg>
14
+ <%= pb_rails("icon", props: { icon: "star" }) %>
40
15
  <% end %>
41
- <% object.empty_stars.times do %>
42
- <svg width="<%= svg_size %>" height="<%= svg_size %>" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
43
- <% if object.color_option == "outline" %>
44
- <path class="<%= outline_star_color %>" 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" />
45
- <% else %>
46
- <path class="<%= empty_star_color %>" fill-rule="evenodd" clip-rule="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" />
47
- <% end %>
48
- </svg>
16
+ <% unless object.star_full %>
17
+ <%= pb_rails("icon", props: { icon: "star-half" }) %>
49
18
  <% end %>
50
19
  <% end %>
51
- <% end %>
52
- <% if layout_option == "onestar" %>
53
- <%= content_tag(:div, class: "number_rails_#{size}") do %>
54
- <% case object.size %>
55
- <% when "xs", "sm" %>
56
- <%= pb_rails("caption", props: { text: "#{object.rating} of #{object.denominator}",
57
- size: "xs",
58
- dark: dark,
59
- padding_left: "xxs" }) %>
60
- <% when "md" %>
61
- <%= pb_rails("body", props: { text: "#{object.rating} of #{object.denominator}",
62
- dark: dark,
63
- padding_left: "xxs" }) %>
64
- <% when "lg" %>
65
- <%= pb_rails("title", props: { text: "#{object.rating} of #{object.denominator}",
66
- size: 2,
67
- dark: dark,
68
- padding_left: "sm" }) %>
69
- <% end %>
20
+
21
+ <%# Grey background stars as base %>
22
+ <%= content_tag(:div, class: "pb_star_rating_base") do %>
23
+ <%= pb_rails("icon", props: { icon: "star" }) %>
24
+ <%= pb_rails("icon", props: { icon: "star" }) %>
25
+ <%= pb_rails("icon", props: { icon: "star" }) %>
26
+ <%= pb_rails("icon", props: { icon: "star" }) %>
27
+ <%= pb_rails("icon", props: { icon: "star" }) %>
70
28
  <% end %>
29
+
71
30
  <% end %>
72
31
  <% end %>
@@ -3,61 +3,18 @@
3
3
  module Playbook
4
4
  module PbStarRating
5
5
  class StarRating < Playbook::KitBase
6
+ prop :hide_rating, type: Playbook::Props::Boolean,
7
+ default: false
8
+
6
9
  prop :rating, type: Playbook::Props::Numeric,
7
10
  default: 0
8
11
 
9
- prop :denominator, type: Playbook::Props::Numeric,
10
- default: 5
11
-
12
- prop :layout_option, type: Playbook::Props::Enum,
13
- values: %w[default onestar number],
14
- default: "default"
15
-
16
- prop :color_option, type: Playbook::Props::Enum,
17
- values: %w[yellow primary subtle outline],
18
- default: "yellow"
19
-
20
- prop :size, type: Playbook::Props::Enum,
21
- values: %w[xs sm md lg],
22
- default: "sm"
23
-
24
12
  def star_count
25
- rating.floor > denominator_style ? denominator_style : rating.floor
26
- end
27
-
28
- def denominator_style
29
- layout_option == "onestar" ? 1 : denominator
30
- end
31
-
32
- def empty_stars
33
- (denominator_style - rating.floor).negative? ? 0 : denominator_style - rating.floor
34
- end
35
-
36
- def empty_star_color
37
- dark ? "empty_star_dark" : "empty_star_light"
38
- end
39
-
40
- def outline_star_color
41
- dark ? "outline_star_dark" : "outline_star_light"
42
- end
43
-
44
- def subtle_star_color
45
- dark ? "suble_star_dark" : "suble_star_light"
13
+ rating.floor
46
14
  end
47
15
 
48
- def svg_size
49
- case size
50
- when "sx"
51
- 14
52
- when "sm"
53
- 16
54
- when "md"
55
- 24
56
- when "lg"
57
- 48
58
- else
59
- 16
60
- end
16
+ def star_full
17
+ (rating.to_f % 1).zero?
61
18
  end
62
19
 
63
20
  def classname
@@ -1,22 +1,24 @@
1
- import React from "react"
2
- import { render, screen } from "../utilities/test-utils"
1
+ import React from "react";
2
+ import { render, screen } from "../utilities/test-utils";
3
3
 
4
- import StarRating from "./_star_rating"
4
+ import StarRating from "./_star_rating";
5
5
 
6
- const testId = "star-rating-kit"
6
+ const testId = "star-rating-kit";
7
7
 
8
8
  describe("Star Rating Kit", () => {
9
9
  test("Expects to have correct classname", () => {
10
10
  render(
11
11
  <StarRating
12
12
  data={{ testid: testId }}
13
+ rating={2}
13
14
  />
14
- )
15
+ );
15
16
 
16
- const kit = screen.getByTestId(testId)
17
- expect(kit.className).toBe("pb_star_rating_kit")
18
17
 
19
- })
18
+ const kit = screen.getByTestId(testId);
19
+ expect(kit).toHaveClass("pb_star_rating_kit");
20
+
21
+ });
20
22
 
21
23
  test('should render aria-label', () => {
22
24
  render(
@@ -25,46 +27,45 @@ describe("Star Rating Kit", () => {
25
27
  data={{ testid: testId }}
26
28
  rating={2}
27
29
  />
28
- )
30
+ );
29
31
 
30
32
  const kit = screen.getByTestId(testId)
31
33
  expect(kit).toHaveAttribute('aria-label', testId)
32
- })
34
+ });
33
35
 
34
- test("Displays correct denominator", () => {
36
+ test("Displays two highlighted stars", () => {
35
37
  render(
36
38
  <StarRating
37
39
  data={{ testid: testId }}
38
- denominator={4}
39
40
  rating={2}
40
41
  />
41
- )
42
+ );
42
43
 
43
- const kit = screen.getByTestId(testId)
44
- const highlight = kit.querySelector(".pb_star_rating_wrapper")
45
- const stars = highlight.querySelectorAll(".pb_star_sm")
46
- const count = stars.length
47
44
 
48
- expect(count).toBe(4)
49
- })
45
+ const kit = screen.getByTestId(testId);
46
+ const highlight = kit.querySelector(".pb_star_rating_highlight");
47
+ const stars = highlight.querySelectorAll(".far.fa-star");
48
+ const count = stars.length;
50
49
 
51
- test("Uses correct size", () => {
50
+ expect(count).toBe(2);
51
+ });
52
+
53
+ test("Displays three highlighted stars and a half star", () => {
52
54
  render(
53
55
  <StarRating
54
56
  data={{ testid: testId }}
55
- layoutOption="number"
56
- rating={2}
57
- size="lg"
57
+ rating={3.5}
58
58
  />
59
- )
59
+ );
60
60
 
61
- const kit = screen.getByTestId(testId)
62
- const highlight = kit.querySelector(".pb_star_rating_wrapper")
63
- const title = kit.querySelector(".pb_star_rating_number_lg")
64
- const stars = highlight.querySelectorAll(".pb_star_lg")
65
- const count = stars.length
61
+ const kit = screen.getByTestId(testId);
62
+ const highlight = kit.querySelector(".pb_star_rating_highlight");
63
+ const stars = highlight.querySelectorAll(".far.fa-star");
64
+ const halfStars = highlight.querySelectorAll(".far.fa-star-half");
65
+ const starCount = stars.length;
66
+ const halfStarCount = halfStars.length;
66
67
 
67
- expect(title.className).toBe("pb_star_rating_number_lg")
68
- expect(count).toBe(5)
69
- })
70
- })
68
+ expect(starCount).toBe(3);
69
+ expect(halfStarCount).toBe(1);
70
+ });
71
+ });
@@ -1,111 +1,116 @@
1
- import React, { useState, useEffect } from "react";
2
- import classnames from "classnames";
1
+ // import React, { useState, useEffect } from "react";
2
+ // import classnames from "classnames";
3
3
 
4
- import { globalProps } from "../utilities/globalProps";
5
- import { buildAriaProps, buildDataProps } from "../utilities/props";
4
+ // import { globalProps } from "../utilities/globalProps";
5
+ // import { buildAriaProps, buildDataProps } from "../utilities/props";
6
6
 
7
- import HighchartsReact from "highcharts-react-official";
8
- import Highcharts from "highcharts";
9
- import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
10
- import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
11
- import mapColors from "../pb_dashboard/pbChartsColorsHelper";
12
- import treemap from 'highcharts/modules/treemap'
7
+ // import HighchartsReact from "highcharts-react-official";
8
+ // import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
9
+ // import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
10
+ // import mapColors from "../pb_dashboard/pbChartsColorsHelper";
11
+ // import treemap from 'highcharts/modules/treemap'
13
12
 
14
- type TreemapChartProps = {
15
- chartData: {
16
- name: string;
17
- parent?: string | number;
18
- value: number;
19
- color?: string;
20
- id?: string | number;
21
- }[];
22
- className?: string;
23
- colors: string[];
24
- dark?: boolean;
25
- drillable: boolean;
26
- grouped: boolean;
27
- height?: string;
28
- id: number | string;
29
- title?: string;
30
- tooltipHtml: string;
31
- type?: string;
32
- aria?: { [key: string]: string };
33
- data?: { [key: string]: string };
34
- };
13
+ // type TreemapChartProps = {
14
+ // chartData: {
15
+ // name: string,
16
+ // parent?: string | number,
17
+ // value: number,
18
+ // color?: string,
19
+ // id?: string | number,
20
+ // }[],
21
+ // className?: string,
22
+ // colors: string[],
23
+ // dark?: boolean,
24
+ // drillable: boolean,
25
+ // grouped: boolean,
26
+ // height?: string,
27
+ // id: number | string,
28
+ // title?: string,
29
+ // tooltipHtml: string,
30
+ // type?: string,
31
+ // aria?: { [key: string]: string },
32
+ // data?: { [key: string]: string },
33
+ // };
35
34
 
36
- const TreemapChart = ({
37
- aria = {},
38
- data = {},
39
- chartData,
40
- colors,
41
- dark = false,
42
- drillable = false,
43
- grouped = false,
44
- height,
45
- id,
46
- title = "",
47
- tooltipHtml = '<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: <b>{point.value}</b>',
48
- type = "treemap",
49
- ...props
50
- }: TreemapChartProps) => {
51
- const ariaProps = buildAriaProps(aria);
52
- const dataProps = buildDataProps(data);
53
- const setupTheme = () => {
54
- dark
55
- ? Highcharts.setOptions(highchartsDarkTheme)
56
- : Highcharts.setOptions(highchartsTheme);
57
- };
58
- treemap(Highcharts)
59
- setupTheme();
35
+ // const TreemapChart = ({
36
+ // aria = {},
37
+ // data = {},
38
+ // chartData,
39
+ // colors,
40
+ // dark = false,
41
+ // drillable = false,
42
+ // grouped = false,
43
+ // height,
44
+ // id,
45
+ // title = "",
46
+ // tooltipHtml = '<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: <b>{point.value}</b>',
47
+ // type = "treemap",
48
+ // ...props
49
+ // }: TreemapChartProps) => {
50
+ // const ariaProps = buildAriaProps(aria);
51
+ // const dataProps = buildDataProps(data);
60
52
 
61
- const staticOptions = {
62
- title: {
63
- text: title,
64
- },
65
- chart: {
66
- height: height,
67
- type: type,
68
- },
69
- credits: false,
70
- series: [
71
- {
72
- data: chartData,
73
- },
74
- ],
75
- plotOptions: {
76
- treemap: {
77
- tooltip: {
78
- pointFormat: tooltipHtml,
79
- },
80
- allowTraversingTree: drillable,
81
- colorByPoint: !grouped,
82
- colors:
83
- colors !== undefined && colors.length > 0
84
- ? mapColors(colors)
85
- : highchartsTheme.colors,
86
- },
87
- },
88
- };
53
+ // const staticOptions = {
54
+ // title: {
55
+ // text: title,
56
+ // },
57
+ // chart: {
58
+ // height: height,
59
+ // type: type,
60
+ // },
61
+ // credits: false,
62
+ // series: [
63
+ // {
64
+ // data: chartData,
65
+ // },
66
+ // ],
67
+ // plotOptions: {
68
+ // treemap: {
69
+ // tooltip: {
70
+ // pointFormat: tooltipHtml,
71
+ // },
72
+ // allowTraversingTree: drillable,
73
+ // colorByPoint: !grouped,
74
+ // colors:
75
+ // colors !== undefined && colors.length > 0
76
+ // ? mapColors(colors)
77
+ // : highchartsTheme.colors,
78
+ // },
79
+ // },
80
+ // };
89
81
 
90
- const [options, setOptions] = useState({});
82
+ // const [options, setOptions] = useState({});
83
+ // const [isHighchartsLoaded, setIsHighchartsLoaded] = useState(false);
91
84
 
92
- useEffect(() => {
93
-
94
- setOptions({ ...staticOptions });
95
- }, [chartData]);
85
+ // useEffect(() => {
86
+ // setOptions({ ...staticOptions });
96
87
 
97
- return (
98
- <HighchartsReact
99
- containerProps={{
100
- className: classnames(globalProps(props), "pb_treemap_chart"),
101
- id: id,
102
- ...ariaProps,
103
- ...dataProps,
104
- }}
105
- highcharts={Highcharts}
106
- options={options}
107
- />
108
- );
109
- };
88
+ // const interval = setInterval(() => {
89
+ // if (window.Highcharts) {
90
+ // clearInterval(interval)
91
+ // dark
92
+ // ? window.Highcharts.setOptions(highchartsDarkTheme(window.Highcharts))
93
+ // : window.Highcharts.setOptions(highchartsTheme)
94
+
95
+ // treemap(window.Highcharts)
96
+ // setIsHighchartsLoaded(true)
97
+ // }
98
+ // }, 0)
99
+ // }, [chartData]);
110
100
 
111
- export default TreemapChart;
101
+ // return (
102
+ // isHighchartsLoaded &&
103
+ // <HighchartsReact
104
+ // containerProps={{
105
+ // className: classnames(globalProps(props), "pb_treemap_chart"),
106
+ // id: id,
107
+ // ...ariaProps,
108
+ // ...dataProps,
109
+ // }}
110
+ // highcharts={window.Highcharts}
111
+ // options={options}
112
+ // />
113
+ // );
114
+ // };
115
+
116
+ // export default TreemapChart;
@@ -39,7 +39,7 @@ import * as FixedConfirmationToast from 'pb_fixed_confirmation_toast/docs'
39
39
  import * as Flex from 'pb_flex/docs'
40
40
  import * as FormGroup from 'pb_form_group/docs'
41
41
  import * as FormPill from 'pb_form_pill/docs'
42
- import * as Gauge from 'pb_gauge/docs'
42
+ //import * as Gauge from 'pb_gauge/docs'
43
43
  import * as Hashtag from 'pb_hashtag/docs'
44
44
  import * as Highlight from 'pb_highlight/docs'
45
45
  import * as HomeAddressStreet from 'pb_home_address_street/docs'
@@ -97,7 +97,7 @@ import * as TitleCount from 'pb_title_count/docs'
97
97
  import * as TitleDetail from 'pb_title_detail/docs'
98
98
  import * as Toggle from 'pb_toggle/docs'
99
99
  import * as Tooltip from 'pb_tooltip/docs'
100
- import * as TreemapChart from 'pb_treemap_chart/docs'
100
+ //import * as TreemapChart from 'pb_treemap_chart/docs'
101
101
  import * as Typeahead from 'pb_typeahead/docs'
102
102
  import * as User from 'pb_user/docs'
103
103
  import * as UserBadge from 'pb_user_badge/docs'
@@ -140,7 +140,7 @@ WebpackerReact.registerComponents({
140
140
  ...Flex,
141
141
  ...FormGroup,
142
142
  ...FormPill,
143
- ...Gauge,
143
+ //...Gauge,
144
144
  ...Hashtag,
145
145
  ...Highlight,
146
146
  ...HomeAddressStreet,
@@ -198,7 +198,7 @@ WebpackerReact.registerComponents({
198
198
  ...TitleDetail,
199
199
  ...Toggle,
200
200
  ...Tooltip,
201
- ...TreemapChart,
201
+ //...TreemapChart,
202
202
  ...Typeahead,
203
203
  ...User,
204
204
  ...UserBadge,
@@ -10,13 +10,13 @@ import DialogBody from './pb_dialog/child_kits/_dialog_body'
10
10
  import DialogFooter from './pb_dialog/child_kits/_dialog_footer'
11
11
  import DialogHeader from './pb_dialog/child_kits/_dialog_header'
12
12
  import DistributionBar from './pb_distribution_bar/_distribution_bar'
13
- import Gauge from './pb_gauge/_gauge'
13
+ //import Gauge from './pb_gauge/_gauge'
14
14
  import Legend from './pb_legend/_legend'
15
15
  import LineGraph from './pb_line_graph/_line_graph'
16
16
  import MultiLevelSelect from './pb_multi_level_select/_multi_level_select'
17
17
  import Passphrase from './pb_passphrase/_passphrase'
18
18
  import RichTextEditor from './pb_rich_text_editor/_rich_text_editor'
19
- import TreemapChart from './pb_treemap_chart/_treemap_chart'
19
+ //import TreemapChart from './pb_treemap_chart/_treemap_chart'
20
20
  import Typeahead from './pb_typeahead/_typeahead'
21
21
  import PhoneNumberInput from './pb_phone_number_input/_phone_number_input'
22
22
 
@@ -33,9 +33,9 @@ WebpackerReact.registerComponents({
33
33
  LineGraph,
34
34
  Passphrase,
35
35
  RichTextEditor,
36
- TreemapChart,
36
+ //TreemapChart,
37
37
  Typeahead,
38
- Gauge,
38
+ //Gauge,
39
39
  PhoneNumberInput
40
40
  })
41
41