@orbcharts/plugins-basic 3.0.0-beta.17 → 3.0.0-beta.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orbcharts/plugins-basic",
3
- "version": "3.0.0-beta.17",
3
+ "version": "3.0.0-beta.18",
4
4
  "description": "plugins for OrbCharts",
5
5
  "author": "Blue Planet Inc.",
6
6
  "license": "Apache-2.0",
@@ -37,7 +37,8 @@ export const DEFAULT_FORCE_DIRECTED_PARAMS: ForceDirectedParams = {
37
37
  dotLabel: {
38
38
  colorType: 'primary',
39
39
  sizeFixed: false,
40
- styleFn: (node) => 'text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff'
40
+ // styleFn: (node) => 'text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff'
41
+ styleFn: (node) => ''
41
42
  },
42
43
  arrow: {
43
44
  colorType: 'primary',
@@ -70,7 +71,7 @@ export const DEFAULT_FORCE_DIRECTED_PARAMS: ForceDirectedParams = {
70
71
  }
71
72
  }
72
73
  DEFAULT_FORCE_DIRECTED_PARAMS.dot.styleFn.toString = () => `(node) => ''`
73
- DEFAULT_FORCE_DIRECTED_PARAMS.dotLabel.styleFn.toString = () => `(node) => 'text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff'`
74
+ DEFAULT_FORCE_DIRECTED_PARAMS.dotLabel.styleFn.toString = () => `(node) => ''`
74
75
  DEFAULT_FORCE_DIRECTED_PARAMS.arrow.styleFn.toString = () => `(edge) => ''`
75
76
  DEFAULT_FORCE_DIRECTED_PARAMS.arrowLabel.styleFn.toString = () => `(edge) => ''`
76
77
 
@@ -33,7 +33,7 @@ import type {
33
33
  import {
34
34
  defineRelationshipPlugin } from '../../../lib/core'
35
35
  import type { BubblesParams, ArcScaleType, ForceDirectedParams } from '../../../lib/plugins-basic-types'
36
- import { getDatumColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
36
+ import { getColor, getDatumColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
37
37
  import { DEFAULT_FORCE_DIRECTED_PARAMS } from '../defaults'
38
38
  // import { renderCircleText } from '../../utils/d3Graphics'
39
39
  import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
@@ -317,7 +317,7 @@ function linkArcFn (d: RenderEdge): string {
317
317
 
318
318
 
319
319
 
320
- function renderArrowMarker (defsSelection: d3.Selection<SVGDefsElement, any, any, unknown>, fullParams: ForceDirectedParams) {
320
+ function renderArrowMarker (defsSelection: d3.Selection<SVGDefsElement, any, any, unknown>, fullParams: ForceDirectedParams, fullChartParams: ChartParams) {
321
321
  return defsSelection
322
322
  .selectAll<SVGMarkerElement, any>(`marker.${defsArrowMarkerClassName}`)
323
323
  .data([fullParams])
@@ -327,6 +327,7 @@ function renderArrowMarker (defsSelection: d3.Selection<SVGDefsElement, any, any
327
327
  .append("marker")
328
328
  .classed(defsArrowMarkerClassName, true)
329
329
  .attr('id', defsArrowMarkerId)
330
+ .attr('fill', d => getColor(fullParams.arrow.colorType, fullChartParams ))
330
331
  .attr("viewBox", d => `-${d.arrow.pointerWidth} -${d.arrow.pointerHeight / 2} ${d.arrow.pointerWidth} ${d.arrow.pointerHeight}`)
331
332
  .attr("orient", "auto")
332
333
  enterSelection.append("path")
@@ -887,10 +888,14 @@ export const ForceDirected = defineRelationshipPlugin(pluginConfig)(({ selection
887
888
  const mouseEvent$ = new Subject<EventRelationship>()
888
889
 
889
890
  // <marker> marker selection
890
- observer.fullParams$.pipe(
891
+ combineLatest({
892
+ fullParams: observer.fullParams$,
893
+ fullChartParams: observer.fullChartParams$
894
+ }).pipe(
891
895
  takeUntil(destroy$),
892
- map(fullParams => {
893
- return renderArrowMarker(defsSelection, fullParams)
896
+ switchMap(async d => d),
897
+ map(({ fullParams, fullChartParams }) => {
898
+ return renderArrowMarker(defsSelection, fullParams, fullChartParams)
894
899
  })
895
900
  ).subscribe()
896
901
 
@@ -35,7 +35,7 @@ import {
35
35
  getMinMax
36
36
  } from '../../../lib/core'
37
37
  import type { BubblesParams, ArcScaleType, ForceDirectedBubblesParams } from '../../../lib/plugins-basic-types'
38
- import { getDatumColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
38
+ import { getColor, getDatumColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
39
39
  import { DEFAULT_FORCE_DIRECTED_BUBBLES_PARAMS } from '../defaults'
40
40
  // import { renderCircleText } from '../../utils/d3Graphics'
41
41
  import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
@@ -356,10 +356,12 @@ function linkArcFn (d: RenderEdge): string {
356
356
 
357
357
 
358
358
 
359
- function renderArrowMarker ({ defsSelection, markerParams, markerData }: {
359
+ function renderArrowMarker ({ defsSelection, markerParams, markerData, fullParams, fullChartParams }: {
360
360
  defsSelection: d3.Selection<SVGDefsElement, any, any, unknown>
361
361
  markerParams: MarkerParams
362
362
  markerData: MarkerDatum[]
363
+ fullParams: ForceDirectedBubblesParams
364
+ fullChartParams: ChartParams
363
365
  }) {
364
366
  return defsSelection
365
367
  .selectAll<SVGMarkerElement, any>(`marker.${defsArrowMarkerClassName}`)
@@ -383,6 +385,7 @@ function renderArrowMarker ({ defsSelection, markerParams, markerData }: {
383
385
  }
384
386
  )
385
387
  .attr('id', d => d.id)
388
+ .attr('fill', d => getColor(fullParams.arrow.colorType, fullChartParams ))
386
389
  .attr("markerWidth", markerParams.pointerWidth)
387
390
  .attr("markerHeight", markerParams.pointerHeight)
388
391
  .attr('refX', d => d.refX)
@@ -1208,14 +1211,19 @@ export const ForceDirectedBubbles = defineRelationshipPlugin(pluginConfig)(({ se
1208
1211
  combineLatest({
1209
1212
  defsSelection,
1210
1213
  markerParams: markerParams$,
1211
- markerData: markerData$
1214
+ markerData: markerData$,
1215
+ fullParams: observer.fullParams$,
1216
+ fullChartParams: observer.fullChartParams$
1212
1217
  }).pipe(
1213
1218
  takeUntil(destroy$),
1219
+ switchMap(async d => d),
1214
1220
  map(data => {
1215
1221
  return renderArrowMarker({
1216
1222
  defsSelection,
1217
1223
  markerParams: data.markerParams,
1218
- markerData: data.markerData
1224
+ markerData: data.markerData,
1225
+ fullParams: data.fullParams,
1226
+ fullChartParams: data.fullChartParams
1219
1227
  })
1220
1228
  })
1221
1229
  ).subscribe()