@triptease/tt-bar-chart 0.1.8 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/TtBarChart.d.ts +3 -1
- package/dist/src/TtBarChart.js +33 -22
- package/dist/src/TtBarChart.js.map +1 -1
- package/dist/src/types.d.ts +9 -6
- package/dist/src/types.js.map +1 -1
- package/dist/src/utils.d.ts +2 -1
- package/dist/src/utils.js +8 -1
- package/dist/src/utils.js.map +1 -1
- package/package.json +1 -1
package/dist/src/TtBarChart.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import * as echarts from 'echarts';
|
|
2
3
|
import { Dataset } from './types.js';
|
|
3
4
|
export declare class TtBarChart extends LitElement {
|
|
4
|
-
labels: string[];
|
|
5
5
|
datasets: Dataset[];
|
|
6
6
|
direction: 'horizontal' | 'vertical';
|
|
7
7
|
xAxisTitle?: string;
|
|
@@ -11,9 +11,11 @@ export declare class TtBarChart extends LitElement {
|
|
|
11
11
|
showLegend: boolean;
|
|
12
12
|
showDataLabels: boolean;
|
|
13
13
|
showTooltip: boolean;
|
|
14
|
+
chart: echarts.ECharts | null;
|
|
14
15
|
private getSeriesColor;
|
|
15
16
|
render(): import("lit-html").TemplateResult<1>;
|
|
16
17
|
protected firstUpdated(): void;
|
|
18
|
+
protected updated(): void;
|
|
17
19
|
}
|
|
18
20
|
declare global {
|
|
19
21
|
interface HTMLElementTagNameMap {
|
package/dist/src/TtBarChart.js
CHANGED
|
@@ -7,14 +7,13 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
import { html, LitElement } from 'lit';
|
|
8
8
|
// @ts-expect-error Known error - https://github.com/apache/echarts/issues/21250
|
|
9
9
|
import * as echarts from 'echarts';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
10
|
+
import { property, state } from 'lit/decorators.js';
|
|
11
|
+
import { axesFormatter, dataLabelsFormatter, jsonConvertor } from './utils.js';
|
|
12
12
|
// @ts-expect-error Known error - https://github.com/apache/echarts/issues/21250
|
|
13
13
|
import { AriaComponent } from 'echarts/components';
|
|
14
|
-
|
|
14
|
+
export class TtBarChart extends LitElement {
|
|
15
15
|
constructor() {
|
|
16
16
|
super(...arguments);
|
|
17
|
-
this.labels = [];
|
|
18
17
|
this.datasets = [];
|
|
19
18
|
this.direction = 'horizontal';
|
|
20
19
|
this.showHorizontalGrid = false;
|
|
@@ -22,6 +21,7 @@ let TtBarChart = class TtBarChart extends LitElement {
|
|
|
22
21
|
this.showLegend = false;
|
|
23
22
|
this.showDataLabels = false;
|
|
24
23
|
this.showTooltip = false;
|
|
24
|
+
this.chart = null;
|
|
25
25
|
this.getSeriesColor = (dataset) => {
|
|
26
26
|
if (this.datasets && this.datasets.length > 1)
|
|
27
27
|
return undefined;
|
|
@@ -34,21 +34,30 @@ let TtBarChart = class TtBarChart extends LitElement {
|
|
|
34
34
|
return html ` <div id=${this.id} style="width: 100%; height:100%;"></div> `;
|
|
35
35
|
}
|
|
36
36
|
firstUpdated() {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
if (this.chart === null) {
|
|
38
|
+
echarts.use([AriaComponent]);
|
|
39
|
+
const divElement = this.renderRoot.querySelector(`#${this.id}`);
|
|
40
|
+
if (!divElement) {
|
|
41
|
+
throw new Error('No div element');
|
|
42
|
+
}
|
|
43
|
+
this.chart = echarts.init(divElement);
|
|
40
44
|
}
|
|
41
|
-
|
|
42
|
-
|
|
45
|
+
}
|
|
46
|
+
updated() {
|
|
47
|
+
const labelsRaw = this.datasets.flatMap((dataset) => dataset.data.map((datapoint) => datapoint.label));
|
|
48
|
+
const labels = [...new Set(labelsRaw)];
|
|
43
49
|
const series = this.datasets.map((dataset) => ({
|
|
44
50
|
name: dataset.label,
|
|
45
51
|
type: 'bar',
|
|
46
|
-
data:
|
|
52
|
+
data: labels.map((label) => {
|
|
53
|
+
const point = dataset.data.find((dp) => dp.label === label);
|
|
54
|
+
return point?.value ?? null;
|
|
55
|
+
}),
|
|
47
56
|
color: this.getSeriesColor(dataset),
|
|
48
57
|
label: {
|
|
49
58
|
show: this.showDataLabels,
|
|
50
59
|
position: 'right',
|
|
51
|
-
formatter: ({ value }) =>
|
|
60
|
+
formatter: ({ value }) => dataLabelsFormatter.format(value),
|
|
52
61
|
},
|
|
53
62
|
cursor: 'default',
|
|
54
63
|
}));
|
|
@@ -63,14 +72,20 @@ let TtBarChart = class TtBarChart extends LitElement {
|
|
|
63
72
|
name: this.xAxisTitle,
|
|
64
73
|
nameLocation: 'center',
|
|
65
74
|
type: this.direction === 'horizontal' ? 'value' : 'category',
|
|
66
|
-
data: this.direction === 'horizontal' ? undefined :
|
|
75
|
+
data: this.direction === 'horizontal' ? undefined : labels,
|
|
76
|
+
axisLabel: {
|
|
77
|
+
formatter: axesFormatter,
|
|
78
|
+
},
|
|
67
79
|
splitLine: { show: this.showHorizontalGrid },
|
|
68
80
|
},
|
|
69
81
|
yAxis: {
|
|
70
82
|
name: this.yAxisTitle,
|
|
71
83
|
nameLocation: 'center',
|
|
72
84
|
type: this.direction === 'horizontal' ? 'category' : 'value',
|
|
73
|
-
data: this.direction === 'horizontal' ?
|
|
85
|
+
data: this.direction === 'horizontal' ? labels : undefined,
|
|
86
|
+
axisLabel: {
|
|
87
|
+
formatter: axesFormatter,
|
|
88
|
+
},
|
|
74
89
|
splitLine: { show: this.showVerticalGrid },
|
|
75
90
|
},
|
|
76
91
|
grid: {
|
|
@@ -89,12 +104,9 @@ let TtBarChart = class TtBarChart extends LitElement {
|
|
|
89
104
|
}),
|
|
90
105
|
series,
|
|
91
106
|
};
|
|
92
|
-
chart.setOption(option);
|
|
107
|
+
this.chart.setOption(option);
|
|
93
108
|
}
|
|
94
|
-
}
|
|
95
|
-
__decorate([
|
|
96
|
-
property({ type: Array, converter: jsonConvertor, attribute: 'categories' })
|
|
97
|
-
], TtBarChart.prototype, "labels", void 0);
|
|
109
|
+
}
|
|
98
110
|
__decorate([
|
|
99
111
|
property({ type: Array, converter: jsonConvertor })
|
|
100
112
|
], TtBarChart.prototype, "datasets", void 0);
|
|
@@ -122,8 +134,7 @@ __decorate([
|
|
|
122
134
|
__decorate([
|
|
123
135
|
property({ type: Boolean, attribute: 'show-tooltip' })
|
|
124
136
|
], TtBarChart.prototype, "showTooltip", void 0);
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
], TtBarChart);
|
|
128
|
-
export { TtBarChart };
|
|
137
|
+
__decorate([
|
|
138
|
+
state()
|
|
139
|
+
], TtBarChart.prototype, "chart", void 0);
|
|
129
140
|
//# sourceMappingURL=TtBarChart.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TtBarChart.js","sourceRoot":"","sources":["../../src/TtBarChart.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AACvC,gFAAgF;AAChF,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"TtBarChart.js","sourceRoot":"","sources":["../../src/TtBarChart.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement } from 'lit';\n// @ts-expect-error Known error - https://github.com/apache/echarts/issues/21250\nimport * as echarts from 'echarts';\nimport { property, state } from 'lit/decorators.js';\nimport { Dataset } from './types.js';\nimport { axesFormatter, dataLabelsFormatter, jsonConvertor } from './utils.js';\n// @ts-expect-error Known error - https://github.com/apache/echarts/issues/21250\nimport { AriaComponent } from 'echarts/components';\n\nexport class TtBarChart extends LitElement {\n @property({ type: Array, converter: jsonConvertor })\n datasets: Dataset[] = [];\n\n @property({ type: String })\n direction: 'horizontal' | 'vertical' = 'horizontal';\n\n @property({ type: String, attribute: 'x-axis-title' })\n xAxisTitle?: string;\n\n @property({ type: String, attribute: 'y-axis-title' })\n yAxisTitle?: string;\n\n @property({ type: Boolean, attribute: 'show-horizontal-grid' })\n showHorizontalGrid: boolean = false;\n\n @property({ type: Boolean, attribute: 'show-vertical-grid' })\n showVerticalGrid: boolean = false;\n\n @property({ type: Boolean, attribute: 'show-legend' })\n showLegend: boolean = false;\n\n @property({ type: Boolean, attribute: 'show-data-labels' })\n showDataLabels: boolean = false;\n\n @property({ type: Boolean, attribute: 'show-tooltip' })\n showTooltip: boolean = false;\n\n @state()\n chart: echarts.ECharts | null = null;\n\n private getSeriesColor = (dataset: Dataset) => {\n if (this.datasets && this.datasets.length > 1) return undefined;\n if (dataset.color) return dataset.color;\n\n return '#4d35a1';\n };\n\n render() {\n return html` <div id=${this.id} style=\"width: 100%; height:100%;\"></div> `;\n }\n\n protected firstUpdated() {\n if (this.chart === null) {\n echarts.use([AriaComponent]);\n const divElement = this.renderRoot.querySelector(`#${this.id}`) as HTMLDivElement;\n\n if (!divElement) {\n throw new Error('No div element');\n }\n\n this.chart = echarts.init(divElement);\n }\n }\n\n protected updated() {\n const labelsRaw = this.datasets.flatMap((dataset) => dataset.data.map((datapoint) => datapoint.label));\n const labels = [...new Set(labelsRaw)];\n\n const series: echarts.SeriesOption[] = this.datasets.map((dataset) => ({\n name: dataset.label,\n type: 'bar',\n data: labels.map((label) => {\n const point = dataset.data.find((dp) => dp.label === label);\n return point?.value ?? null;\n }),\n color: this.getSeriesColor(dataset),\n label: {\n show: this.showDataLabels,\n position: 'right',\n formatter: ({ value }: { value: number }) => dataLabelsFormatter.format(value),\n },\n cursor: 'default',\n }));\n\n const option: echarts.EChartsOption = {\n aria: {\n show: true,\n },\n legend: {\n show: this.showLegend,\n },\n xAxis: {\n name: this.xAxisTitle,\n nameLocation: 'center',\n type: this.direction === 'horizontal' ? 'value' : 'category',\n data: this.direction === 'horizontal' ? undefined : labels,\n axisLabel: {\n formatter: axesFormatter,\n },\n splitLine: { show: this.showHorizontalGrid },\n },\n yAxis: {\n name: this.yAxisTitle,\n nameLocation: 'center',\n type: this.direction === 'horizontal' ? 'category' : 'value',\n data: this.direction === 'horizontal' ? labels : undefined,\n axisLabel: {\n formatter: axesFormatter,\n },\n splitLine: { show: this.showVerticalGrid },\n },\n grid: {\n left: 0,\n right: 0,\n top: 0,\n ...(this.showLegend ? {} : { bottom: 0 }),\n },\n ...(this.showTooltip && {\n tooltip: {\n trigger: 'axis',\n axisPointer: {\n type: 'shadow',\n },\n },\n }),\n series,\n };\n\n this.chart.setOption(option);\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'tt-bar-chart': TtBarChart;\n }\n}\n"]}
|
package/dist/src/types.d.ts
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
interface DataPoint {
|
|
3
|
+
label: string;
|
|
4
|
+
value: number;
|
|
5
|
+
}
|
|
6
|
+
export interface Dataset {
|
|
7
|
+
label: string;
|
|
8
|
+
data: DataPoint[];
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
2
11
|
interface TTBarChartAttributes {
|
|
3
12
|
id?: string;
|
|
4
13
|
style?: React.CSSProperties;
|
|
5
14
|
[key: `data-${string}`]: string | undefined;
|
|
6
|
-
categories?: string;
|
|
7
15
|
datasets?: string;
|
|
8
16
|
direction?: 'horizontal' | 'vertical';
|
|
9
17
|
'x-axis-title'?: string;
|
|
@@ -15,11 +23,6 @@ interface TTBarChartAttributes {
|
|
|
15
23
|
'show-data-labels'?: boolean;
|
|
16
24
|
'show-tooltip'?: boolean;
|
|
17
25
|
}
|
|
18
|
-
export interface Dataset {
|
|
19
|
-
label: string;
|
|
20
|
-
data: number[];
|
|
21
|
-
color?: string;
|
|
22
|
-
}
|
|
23
26
|
declare global {
|
|
24
27
|
namespace JSX {
|
|
25
28
|
interface IntrinsicElements {
|
package/dist/src/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"","sourcesContent":["import React from 'react';\nimport type {} from '@triptease/html-jsx'; // Stops declare module from erroring\n\ninterface TTBarChartAttributes {\n id?: string;\n style?: React.CSSProperties;\n [key: `data-${string}`]: string | undefined;\n
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"","sourcesContent":["import React from 'react';\nimport type {} from '@triptease/html-jsx'; // Stops declare module from erroring\n\ninterface DataPoint {\n label: string;\n value: number;\n}\n\nexport interface Dataset {\n label: string;\n data: DataPoint[];\n color?: string;\n}\n\ninterface TTBarChartAttributes {\n id?: string;\n style?: React.CSSProperties;\n [key: `data-${string}`]: string | undefined;\n datasets?: string;\n direction?: 'horizontal' | 'vertical';\n 'x-axis-title'?: string;\n 'y-axis-title'?: string;\n color?: string;\n 'show-horizontal-grid'?: boolean;\n 'show-vertical-grid'?: boolean;\n 'show-legend'?: boolean;\n 'show-data-labels'?: boolean;\n 'show-tooltip'?: boolean;\n}\n\ndeclare global {\n namespace JSX {\n interface IntrinsicElements {\n 'tt-bar-chart': TTBarChartAttributes & { class?: string };\n }\n }\n\n namespace React {\n namespace JSX {\n interface IntrinsicElements {\n 'tt-bar-chart': TTBarChartAttributes & { className?: string; ref?: React.Ref<unknown> };\n }\n }\n }\n}\n\ndeclare module '@triptease/html-jsx' {\n namespace JSX {\n interface IntrinsicElements {\n 'tt-bar-chart': TTBarChartAttributes & { class?: string };\n }\n }\n}\n"]}
|
package/dist/src/utils.d.ts
CHANGED
package/dist/src/utils.js
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
export const jsonConvertor = (value) => (value ? JSON.parse(value) : undefined);
|
|
2
|
-
export const
|
|
2
|
+
export const dataLabelsFormatter = new Intl.NumberFormat(undefined);
|
|
3
|
+
const numericalAxesFormatter = new Intl.NumberFormat(undefined, { notation: 'compact', maximumFractionDigits: 2 });
|
|
4
|
+
export const axesFormatter = (value) => {
|
|
5
|
+
if (typeof value === 'number') {
|
|
6
|
+
return numericalAxesFormatter.format(value);
|
|
7
|
+
}
|
|
8
|
+
return value;
|
|
9
|
+
};
|
|
3
10
|
//# sourceMappingURL=utils.js.map
|
package/dist/src/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAoB,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;AAC/F,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC","sourcesContent":["export const jsonConvertor = (value: string | null) => (value ? JSON.parse(value) : undefined);\nexport const
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAoB,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;AAC/F,MAAM,CAAC,MAAM,mBAAmB,GAAG,IAAI,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;AACpE,MAAM,sBAAsB,GAAG,IAAI,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,qBAAqB,EAAE,CAAC,EAAE,CAAC,CAAC;AAEnH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAsB,EAAE,EAAE;IACtD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAC9B,OAAO,sBAAsB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC9C,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC,CAAC","sourcesContent":["export const jsonConvertor = (value: string | null) => (value ? JSON.parse(value) : undefined);\nexport const dataLabelsFormatter = new Intl.NumberFormat(undefined);\nconst numericalAxesFormatter = new Intl.NumberFormat(undefined, { notation: 'compact', maximumFractionDigits: 2 });\n\nexport const axesFormatter = (value: number | string) => {\n if (typeof value === 'number') {\n return numericalAxesFormatter.format(value);\n }\n\n return value;\n};\n"]}
|
package/package.json
CHANGED