@orbcharts/plugins-basic 3.0.0-alpha.79 → 3.0.0-beta.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.
Files changed (40) hide show
  1. package/dist/orbcharts-plugins-basic.es.js +7969 -7502
  2. package/dist/orbcharts-plugins-basic.umd.js +124 -19
  3. package/dist/src/base/BaseTooltip.d.ts +14 -0
  4. package/dist/src/grid/defaults.d.ts +3 -2
  5. package/dist/src/grid/index.d.ts +2 -1
  6. package/dist/src/grid/plugins/GridTooltip.d.ts +1 -0
  7. package/dist/src/grid/plugins/GridZoom.d.ts +1 -0
  8. package/dist/src/multiGrid/defaults.d.ts +2 -1
  9. package/dist/src/multiGrid/index.d.ts +1 -0
  10. package/dist/src/multiGrid/plugins/MultiGridTooltip.d.ts +1 -0
  11. package/dist/src/noneData/index.d.ts +0 -1
  12. package/dist/src/series/defaults.d.ts +2 -1
  13. package/dist/src/series/index.d.ts +1 -0
  14. package/dist/src/series/plugins/SeriesTooltip.d.ts +1 -0
  15. package/dist/src/tree/defaults.d.ts +2 -1
  16. package/dist/src/tree/index.d.ts +1 -0
  17. package/dist/src/tree/plugins/TreeTooltip.d.ts +1 -0
  18. package/package.json +4 -4
  19. package/src/base/BaseDots.ts +4 -4
  20. package/src/base/BaseLegend.ts +75 -39
  21. package/src/base/BaseTooltip.ts +383 -0
  22. package/src/grid/defaults.ts +122 -5
  23. package/src/grid/index.ts +2 -1
  24. package/src/grid/plugins/GridLegend.ts +11 -0
  25. package/src/grid/plugins/GridTooltip.ts +66 -0
  26. package/src/grid/plugins/{ScalingArea.ts → GridZoom.ts} +5 -5
  27. package/src/multiGrid/defaults.ts +69 -3
  28. package/src/multiGrid/index.ts +1 -0
  29. package/src/multiGrid/plugins/MultiGridLegend.ts +11 -0
  30. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -0
  31. package/src/noneData/index.ts +1 -1
  32. package/src/series/defaults.ts +61 -3
  33. package/src/series/index.ts +1 -0
  34. package/src/series/plugins/SeriesLegend.ts +11 -0
  35. package/src/series/plugins/SeriesTooltip.ts +66 -0
  36. package/src/tree/defaults.ts +59 -3
  37. package/src/tree/index.ts +2 -1
  38. package/src/tree/plugins/TreeLegend.ts +11 -0
  39. package/src/tree/plugins/TreeTooltip.ts +66 -0
  40. package/dist/src/grid/plugins/ScalingArea.d.ts +0 -1
@@ -0,0 +1,14 @@
1
+ import { Subject, Observable } from 'rxjs';
2
+ import { EventTypeMap, ChartParams, Layout } from '../../lib/core-types';
3
+ import { BaseTooltipParams } from '../../lib/plugins-basic-types';
4
+ import { BasePluginFn } from './types';
5
+ import * as d3 from 'd3';
6
+ interface BaseTooltipContext {
7
+ rootSelection: d3.Selection<any, unknown, any, unknown>;
8
+ fullParams$: Observable<BaseTooltipParams>;
9
+ fullChartParams$: Observable<ChartParams>;
10
+ layout$: Observable<Layout>;
11
+ event$: Subject<EventTypeMap<any>>;
12
+ }
13
+ export declare const createBaseTooltip: BasePluginFn<BaseTooltipContext>;
14
+ export {};
@@ -1,4 +1,4 @@
1
- import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, ScalingAreaParams, GridLegendParams } from '../../lib/plugins-basic-types';
1
+ import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, GridTooltipParams, GridZoomParams, GridLegendParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_LINES_PARAMS: LinesParams;
4
4
  export declare const DEFAULT_LINE_AREAS_PARAMS: LineAreasParams;
@@ -11,5 +11,6 @@ export declare const DEFAULT_BARS_TRIANGLE_PARAMS: BarsTriangleParams;
11
11
  export declare const DEFAULT_GROUP_AXIS_PARAMS: GroupAxisParams;
12
12
  export declare const DEFAULT_VALUE_AXIS_PARAMS: ValueAxisParams;
13
13
  export declare const DEFAULT_VALUE_STACK_AXIS_PARAMS: ValueStackAxisParams;
14
- export declare const DEFAULT_SCALING_AREA_PARAMS: ScalingAreaParams;
14
+ export declare const DEFAULT_GRID_ZOOM_PARAMS: GridZoomParams;
15
15
  export declare const DEFAULT_GRID_LEGEND_PARAMS: GridLegendParams;
16
+ export declare const DEFAULT_GRID_TOOLTIP_PARAMS: GridTooltipParams;
@@ -10,5 +10,6 @@ export { GridLegend } from './plugins/GridLegend';
10
10
  export { GroupAxis } from './plugins/GroupAxis';
11
11
  export { ValueAxis } from './plugins/ValueAxis';
12
12
  export { ValueStackAxis } from './plugins/ValueStackAxis';
13
- export { ScalingArea } from './plugins/ScalingArea';
13
+ export { GridTooltip } from './plugins/GridTooltip';
14
+ export { GridZoom } from './plugins/GridZoom';
14
15
  export { GroupAux } from './plugins/GroupAux';
@@ -0,0 +1 @@
1
+ export declare const GridTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GridTooltip", import('@orbcharts/plugins-basic-types').GridTooltipParams>;
@@ -0,0 +1 @@
1
+ export declare const GridZoom: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GridZoom", import('@orbcharts/plugins-basic-types').GridZoomParams>;
@@ -1,4 +1,4 @@
1
- import { MultiGridLegendParams, MultiBarsParams, MultiBarStackParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiValueAxisParams, MultiValueStackAxisParams, OverlappingValueAxesParams, OverlappingValueStackAxesParams } from '../../lib/plugins-basic-types';
1
+ import { MultiGridLegendParams, MultiBarsParams, MultiBarStackParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiGridTooltipParams, MultiValueAxisParams, MultiValueStackAxisParams, OverlappingValueAxesParams, OverlappingValueStackAxesParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams;
4
4
  export declare const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams;
@@ -12,3 +12,4 @@ export declare const DEFAULT_MULTI_LINE_AREAS_PARAMS: MultiLineAreasParams;
12
12
  export declare const DEFAULT_MULTI_DOTS_PARAMS: MultiDotsParams;
13
13
  export declare const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams;
14
14
  export declare const DEFAULT_OVERLAPPING_VALUE_STACK_AXES_PARAMS: OverlappingValueStackAxesParams;
15
+ export declare const DEFAULT_MULTI_GRID_TOOLTIP_PARAMS: MultiGridTooltipParams;
@@ -8,6 +8,7 @@ export { MultiLineAreas } from './plugins/MultiLineAreas';
8
8
  export { MultiDots } from './plugins/MultiDots';
9
9
  export { MultiGroupAxis } from './plugins/MultiGroupAxis';
10
10
  export { MultiValueAxis } from './plugins/MultiValueAxis';
11
+ export { MultiGridTooltip } from './plugins/MultiGridTooltip';
11
12
  export { MultiValueStackAxis } from './plugins/MultiValueStackAxis';
12
13
  export { OverlappingValueAxes } from './plugins/OverlappingValueAxes';
13
14
  export { OverlappingValueStackAxes } from './plugins/OverlappingValueStackAxes';
@@ -0,0 +1 @@
1
+ export declare const MultiGridTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiGridTooltip", import('@orbcharts/plugins-basic-types').MultiGridTooltipParams>;
@@ -1,2 +1 @@
1
1
  export * from './defaults';
2
- export { Tooltip } from './plugins/Tooltip';
@@ -1,4 +1,4 @@
1
- import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams } from '../../lib/plugins-basic-types';
1
+ import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams, SeriesTooltipParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_BUBBLES_PARAMS: BubblesParams;
4
4
  export declare const DEFAULT_PIE_PARAMS: PieParams;
@@ -7,3 +7,4 @@ export declare const DEFAULT_PIE_LABELS_PARAMS: PieLabelsParams;
7
7
  export declare const DEFAULT_ROSE_PARAMS: RoseParams;
8
8
  export declare const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams;
9
9
  export declare const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams;
10
+ export declare const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams;
@@ -6,3 +6,4 @@ export { PieLabels } from './plugins/PieLabels';
6
6
  export { Rose } from './plugins/Rose';
7
7
  export { RoseLabels } from './plugins/RoseLabels';
8
8
  export { SeriesLegend } from './plugins/SeriesLegend';
9
+ export { SeriesTooltip } from './plugins/SeriesTooltip';
@@ -0,0 +1 @@
1
+ export declare const SeriesTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "SeriesTooltip", import('@orbcharts/plugins-basic-types').SeriesTooltipParams>;
@@ -1,4 +1,5 @@
1
- import { TreeMapParams, TreeLegendParams } from '../../lib/plugins-basic-types';
1
+ import { TreeMapParams, TreeLegendParams, TreeTooltipParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_TREE_MAP_PARAMS: TreeMapParams;
4
4
  export declare const DEFAULT_TREE_LEGEND_PARAMS: TreeLegendParams;
5
+ export declare const DEFAULT_TREE_TOOLTIP_PARAMS: TreeTooltipParams;
@@ -1,3 +1,4 @@
1
1
  export * from './defaults';
2
2
  export { TreeLegend } from './plugins/TreeLegend';
3
3
  export { TreeMap } from './plugins/TreeMap';
4
+ export { TreeTooltip } from './plugins/TreeTooltip';
@@ -0,0 +1 @@
1
+ export declare const TreeTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"tree", "TreeTooltip", import('@orbcharts/plugins-basic-types').TreeTooltipParams>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orbcharts/plugins-basic",
3
- "version": "3.0.0-alpha.79",
3
+ "version": "3.0.0-beta.1",
4
4
  "description": "plugins for OrbCharts",
5
5
  "author": "Blue Planet Inc.",
6
6
  "license": "Apache-2.0",
@@ -35,9 +35,9 @@
35
35
  "vite-plugin-dts": "^3.7.3"
36
36
  },
37
37
  "dependencies": {
38
- "@orbcharts/core": "^3.0.0-alpha.68",
39
- "@orbcharts/core-types": "^3.0.0-alpha.3",
40
- "@orbcharts/plugins-basic-types": "^3.0.0-alpha.3",
38
+ "@orbcharts/core": "^3.0.0-beta.1",
39
+ "@orbcharts/core-types": "^3.0.0-beta.1",
40
+ "@orbcharts/plugins-basic-types": "^3.0.0-beta.1",
41
41
  "d3": "^7.8.5",
42
42
  "rxjs": "^7.8.1"
43
43
  }
@@ -394,7 +394,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
394
394
 
395
395
  data.graphicSelection
396
396
  .on('mouseover', (event, datum) => {
397
- event.stopPropagation()
397
+ // event.stopPropagation()
398
398
 
399
399
  event$.next({
400
400
  type: 'grid',
@@ -414,7 +414,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
414
414
  })
415
415
  })
416
416
  .on('mousemove', (event, datum) => {
417
- event.stopPropagation()
417
+ // event.stopPropagation()
418
418
 
419
419
  event$.next({
420
420
  type: 'grid',
@@ -434,7 +434,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
434
434
  })
435
435
  })
436
436
  .on('mouseout', (event, datum) => {
437
- event.stopPropagation()
437
+ // event.stopPropagation()
438
438
 
439
439
  event$.next({
440
440
  type: 'grid',
@@ -454,7 +454,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
454
454
  })
455
455
  })
456
456
  .on('click', (event, datum) => {
457
- event.stopPropagation()
457
+ // event.stopPropagation()
458
458
 
459
459
  event$.next({
460
460
  type: 'grid',
@@ -5,6 +5,7 @@ import {
5
5
  switchMap,
6
6
  takeUntil,
7
7
  shareReplay,
8
+ distinctUntilChanged,
8
9
  Observable,
9
10
  Subject } from 'rxjs'
10
11
  import type { BasePluginFn } from './types'
@@ -101,9 +102,6 @@ function getSeriesColor (seriesIndex: number, fullChartParams: ChartParams) {
101
102
  return fullChartParams.colors[fullChartParams.colorScheme].series[colorIndex]
102
103
  }
103
104
 
104
- function getLegendColor () {
105
-
106
- }
107
105
 
108
106
  export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: string, {
109
107
  rootSelection,
@@ -166,17 +164,52 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
166
164
  })
167
165
  )
168
166
 
169
- const lineDirection$ = fullParams$.pipe(
167
+ const position$: Observable<"top" | "bottom" | "left" | "right"> = fullParams$.pipe(
170
168
  takeUntil(destroy$),
171
169
  map(data => {
172
- return data.position === 'bottom' || data.position === 'top'
170
+ const position: "top" | "bottom" | "left" | "right" = data.placement === 'top' || data.placement === 'top-start' || data.placement === 'top-end'
171
+ ? 'top'
172
+ : data.placement === 'bottom' || data.placement === 'bottom-start' || data.placement === 'bottom-end'
173
+ ? 'bottom'
174
+ : data.placement === 'left' || data.placement === 'left-start' || data.placement === 'left-end'
175
+ ? 'left'
176
+ : 'right'
177
+ return position
178
+ }),
179
+ distinctUntilChanged((a, b) => a === b),
180
+ shareReplay(1)
181
+ )
182
+
183
+ const justify$: Observable<"start" | "center" | "end"> = fullParams$.pipe(
184
+ takeUntil(destroy$),
185
+ map(data => {
186
+ const justify: "start" | "center" | "end" = data.placement === 'top-start' || data.placement === 'bottom-start' || data.placement === 'left-start' || data.placement === 'right-start'
187
+ ? 'start'
188
+ : data.placement === 'top-end' || data.placement === 'bottom-end' || data.placement === 'left-end' || data.placement === 'right-end'
189
+ ? 'end'
190
+ : data.placement === 'top' || data.placement === 'bottom' || data.placement === 'left' || data.placement === 'right'
191
+ ? 'center'
192
+ : 'center'
193
+ return justify
194
+ }),
195
+ distinctUntilChanged((a, b) => a === b),
196
+ shareReplay(1)
197
+ )
198
+
199
+ const lineDirection$ = position$.pipe(
200
+ takeUntil(destroy$),
201
+ map(data => {
202
+ return data === 'bottom' || data === 'top'
173
203
  ? 'row'
174
204
  : 'column'
175
- })
205
+ }),
206
+ distinctUntilChanged((a, b) => a === b),
207
+ shareReplay(1)
176
208
  )
177
209
 
178
210
  const lineMaxSize$ = combineLatest({
179
211
  fullParams: fullParams$,
212
+ position: position$,
180
213
  layout: layout$
181
214
  }).pipe(
182
215
  takeUntil(destroy$),
@@ -184,7 +217,7 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
184
217
  map(data => {
185
218
  const ourterSize = (data.fullParams.padding) * 2 + (data.fullParams.gap * 2) // 卡片離場景的間距 & 卡片內的間距
186
219
 
187
- return data.fullParams.position === 'bottom' || data.fullParams.position === 'top'
220
+ return data.position === 'bottom' || data.position === 'top'
188
221
  ? data.layout.rootWidth - ourterSize
189
222
  : data.layout.rootHeight - ourterSize
190
223
  })
@@ -192,47 +225,48 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
192
225
 
193
226
  const rootPosition$ = combineLatest({
194
227
  layout: layout$,
195
- fullParams: fullParams$,
228
+ position: position$,
229
+ justify: justify$
196
230
  }).pipe(
197
231
  takeUntil(destroy$),
198
232
  switchMap(async d => d),
199
233
  map(data => {
200
234
  let x = 0
201
235
  let y = 0
202
- if (data.fullParams.position === 'bottom') {
236
+ if (data.position === 'bottom') {
203
237
  y = data.layout.rootHeight
204
- if (data.fullParams.justify === 'start') {
238
+ if (data.justify === 'start') {
205
239
  x = 0
206
- } else if (data.fullParams.justify === 'center') {
240
+ } else if (data.justify === 'center') {
207
241
  x = data.layout.rootWidth / 2
208
- } else if (data.fullParams.justify === 'end') {
242
+ } else if (data.justify === 'end') {
209
243
  x = data.layout.rootWidth
210
244
  }
211
- } else if (data.fullParams.position === 'right') {
245
+ } else if (data.position === 'right') {
212
246
  x = data.layout.rootWidth
213
- if (data.fullParams.justify === 'start') {
247
+ if (data.justify === 'start') {
214
248
  y = 0
215
- } else if (data.fullParams.justify === 'center') {
249
+ } else if (data.justify === 'center') {
216
250
  y = data.layout.rootHeight / 2
217
- } else if (data.fullParams.justify === 'end') {
251
+ } else if (data.justify === 'end') {
218
252
  y = data.layout.rootHeight
219
253
  }
220
- } else if (data.fullParams.position === 'top') {
254
+ } else if (data.position === 'top') {
221
255
  y = 0
222
- if (data.fullParams.justify === 'start') {
256
+ if (data.justify === 'start') {
223
257
  x = 0
224
- } else if (data.fullParams.justify === 'center') {
258
+ } else if (data.justify === 'center') {
225
259
  x = data.layout.rootWidth / 2
226
- } else if (data.fullParams.justify === 'end') {
260
+ } else if (data.justify === 'end') {
227
261
  x = data.layout.rootWidth
228
262
  }
229
- } else if (data.fullParams.position === 'left') {
263
+ } else if (data.position === 'left') {
230
264
  x = 0
231
- if (data.fullParams.justify === 'start') {
265
+ if (data.justify === 'start') {
232
266
  y = 0
233
- } else if (data.fullParams.justify === 'center') {
267
+ } else if (data.justify === 'center') {
234
268
  y = data.layout.rootHeight / 2
235
- } else if (data.fullParams.justify === 'end') {
269
+ } else if (data.justify === 'end') {
236
270
  y = data.layout.rootHeight
237
271
  }
238
272
  }
@@ -432,6 +466,8 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
432
466
 
433
467
  const legendCard$: Observable<LegendCard> = combineLatest({
434
468
  fullParams: fullParams$,
469
+ position: position$,
470
+ justify: justify$,
435
471
  lengendList: lengendList$
436
472
  }).pipe(
437
473
  takeUntil(destroy$),
@@ -442,47 +478,47 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
442
478
  let translateX = 0
443
479
  let translateY = 0
444
480
 
445
- if (data.fullParams.position === 'left') {
446
- if (data.fullParams.justify === 'start') {
481
+ if (data.position === 'left') {
482
+ if (data.justify === 'start') {
447
483
  translateX = data.fullParams.padding
448
484
  translateY = data.fullParams.padding
449
- } else if (data.fullParams.justify === 'center') {
485
+ } else if (data.justify === 'center') {
450
486
  translateX = data.fullParams.padding
451
487
  translateY = - height / 2
452
- } else if (data.fullParams.justify === 'end') {
488
+ } else if (data.justify === 'end') {
453
489
  translateX = data.fullParams.padding
454
490
  translateY = - height - data.fullParams.padding
455
491
  }
456
- } else if (data.fullParams.position === 'right') {
457
- if (data.fullParams.justify === 'start') {
492
+ } else if (data.position === 'right') {
493
+ if (data.justify === 'start') {
458
494
  translateX = - width - data.fullParams.padding
459
495
  translateY = data.fullParams.padding
460
- } else if (data.fullParams.justify === 'center') {
496
+ } else if (data.justify === 'center') {
461
497
  translateX = - width - data.fullParams.padding
462
498
  translateY = - height / 2
463
- } else if (data.fullParams.justify === 'end') {
499
+ } else if (data.justify === 'end') {
464
500
  translateX = - width - data.fullParams.padding
465
501
  translateY = - height - data.fullParams.padding
466
502
  }
467
- } else if (data.fullParams.position === 'top') {
468
- if (data.fullParams.justify === 'start') {
503
+ } else if (data.position === 'top') {
504
+ if (data.justify === 'start') {
469
505
  translateX = data.fullParams.padding
470
506
  translateY = data.fullParams.padding
471
- } else if (data.fullParams.justify === 'center') {
507
+ } else if (data.justify === 'center') {
472
508
  translateX = - width / 2
473
509
  translateY = data.fullParams.padding
474
- } else if (data.fullParams.justify === 'end') {
510
+ } else if (data.justify === 'end') {
475
511
  translateX = - width - data.fullParams.padding
476
512
  translateY = data.fullParams.padding
477
513
  }
478
514
  } else {
479
- if (data.fullParams.justify === 'start') {
515
+ if (data.justify === 'start') {
480
516
  translateX = data.fullParams.padding
481
517
  translateY = - height - data.fullParams.padding
482
- } else if (data.fullParams.justify === 'center') {
518
+ } else if (data.justify === 'center') {
483
519
  translateX = - width / 2
484
520
  translateY = - height - data.fullParams.padding
485
- } else if (data.fullParams.justify === 'end') {
521
+ } else if (data.justify === 'end') {
486
522
  translateX = - width - data.fullParams.padding
487
523
  translateY = - height - data.fullParams.padding
488
524
  }