File size: 5,966 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"use client"

import type {
  AbsoluteCenterProps,
  FlexProps,
  StackProps,
  Tokens,
} from "@chakra-ui/react"
import {
  AbsoluteCenter,
  Box,
  Flex,
  HStack,
  Show,
  Stack,
  Text,
} from "@chakra-ui/react"
import * as React from "react"
import { type UseChartReturn } from "../use-chart"

export interface BarListData {
  name: string
  value: number
  href?: string
}

interface ChartProps {
  chart: UseChartReturn<BarListData>
}

const ChartContext = React.createContext({} as UseChartReturn<BarListData>)

////////////////////////////////////////////////////////////////////////////////////

export interface BarListRootProps extends StackProps, ChartProps {
  barSize?: Tokens["sizes"]
}

export function BarListRoot(props: BarListRootProps) {
  const { chart, barSize = "10", children, ...rest } = props
  return (
    <Box {...rest} css={{ "--bar-size": chart.size(barSize) }}>
      <ChartContext.Provider value={chart}>{children}</ChartContext.Provider>
    </Box>
  )
}

////////////////////////////////////////////////////////////////////////////////////

export const BarListTitle = (props: StackProps) => {
  return <HStack textStyle="md" mb="4" fontWeight="medium" {...props} />
}

////////////////////////////////////////////////////////////////////////////////////

export const BarListContent = (props: FlexProps) => {
  return <Flex flexWrap="nowrap" align="flex-end" gap="4" {...props} />
}

////////////////////////////////////////////////////////////////////////////////////

export interface BarListTooltipProps extends AbsoluteCenterProps {
  payload: BarListData
  labelFormatter?: (value: number) => React.ReactNode
}

export function BarListTooltip(props: BarListTooltipProps) {
  const { payload, labelFormatter, ...rest } = props
  const chart = React.useContext(ChartContext)
  const formatter = labelFormatter || chart.formatNumber({ style: "decimal" })

  if (!payload || chart.highlightedSeries !== payload.name) return null

  return (
    <AbsoluteCenter
      display={{ base: "none", _groupHover: "block" }}
      axis="vertical"
      right="2"
      zIndex="1"
      textStyle="xs"
      fontWeight="medium"
      bg="bg.panel"
      px="1.5"
      py="1"
      rounded="l2"
      shadow="xs"
      pointerEvents="none"
      {...rest}
    >
      {formatter(payload.value)}
    </AbsoluteCenter>
  )
}

////////////////////////////////////////////////////////////////////////////////////

export interface BarListBarProps extends StackProps {
  tooltip?: boolean | ((props: BarListTooltipProps) => React.ReactNode)
  label?: (props: { payload: BarListData; index: number }) => React.ReactNode
}

export function BarListBar(props: BarListBarProps) {
  const { label, tooltip, ...rest } = props

  const chart = React.useContext(ChartContext)
  const getPercent = (value: number) =>
    chart.getValuePercent("value", value, (e) => [0, e.max])

  const series = chart.getSeries({ name: "name" })

  return (
    <Stack flex="1" {...rest}>
      {chart.data.map((item, index) => (
        <HStack
          key={item.name}
          flex={1}
          minH="var(--bar-size)"
          w="full"
          gap="8"
          _hover={{ bg: "bg.subtle" }}
          onMouseMove={() => {
            if (!tooltip) return
            if (chart.highlightedSeries === item.name) return
            chart.setHighlightedSeries(item.name)
          }}
          onMouseLeave={() => {
            if (!tooltip) return
            chart.setHighlightedSeries(null)
          }}
        >
          <Box pos="relative" flex="1" className="group">
            {typeof tooltip === "function" ? tooltip({ payload: item }) : null}
            {typeof tooltip === "boolean" && tooltip && (
              <BarListTooltip payload={item} />
            )}
            <Box
              pos="absolute"
              insetStart="0"
              h="full"
              bg={series?.color}
              rounded="l2"
              width="var(--bar-width)"
              style={{
                ["--bar-width" as string]: `${getPercent(item.value)}%`,
              }}
            />
            <HStack
              flex="1"
              justify="flex-start"
              textStyle="sm"
              pos="relative"
              wordBreak="break-all"
              w="full"
              minH="var(--bar-size)"
              px="2.5"
            >
              <Show when={label} fallback={item.name}>
                {label?.({ payload: item, index })}
              </Show>
            </HStack>
          </Box>
        </HStack>
      ))}
    </Stack>
  )
}

////////////////////////////////////////////////////////////////////////////////////

export interface BarListValueProps extends StackProps {
  valueFormatter?: (value: number) => React.ReactNode
}

export function BarListValue(props: BarListValueProps) {
  const { valueFormatter, ...rest } = props

  const chart = React.useContext(ChartContext)

  const formatter =
    valueFormatter ||
    chart.formatNumber({
      notation: "compact",
      maximumFractionDigits: 2,
    })

  return (
    <Stack {...rest}>
      {chart.data.map((item) => (
        <HStack
          key={item.name}
          minH="var(--bar-size)"
          justify="flex-end"
          textStyle="sm"
          fontWeight="medium"
        >
          {formatter(item.value)}
        </HStack>
      ))}
    </Stack>
  )
}

////////////////////////////////////////////////////////////////////////////////////

export interface BarListLabelProps extends Omit<StackProps, "title"> {
  title: React.ReactNode
  titleAlignment?: StackProps["textAlign"]
}

export function BarListLabel(props: BarListLabelProps) {
  const { title, titleAlignment, children, ...rest } = props
  return (
    <Stack {...rest}>
      <Text
        textStyle="xs"
        fontWeight="medium"
        color="fg.muted"
        textAlign={titleAlignment}
      >
        {title}
      </Text>
      {children}
    </Stack>
  )
}