mdt-charts 1.11.0 → 1.12.2
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/lib/config/config.d.ts +9 -3
- package/lib/engine/features/legend/legend.d.ts +10 -1
- package/lib/engine/features/legend/legend.js +10 -22
- package/lib/engine/features/legend/legendHelper.d.ts +4 -5
- package/lib/engine/features/legend/legendHelper.js +19 -23
- package/lib/engine/features/legend/legendHelperService.d.ts +12 -0
- package/lib/engine/features/legend/legendHelperService.js +30 -0
- package/lib/engine/features/recordOverflowAlert/recordOverflowAlertCore.d.ts +28 -0
- package/lib/engine/features/recordOverflowAlert/recordOverflowAlertCore.js +50 -0
- package/lib/engine/intervalNotation/intervalManager.js +0 -3
- package/lib/engine/polarNotation/extenders/polarRecordOverflowAlert.d.ts +15 -0
- package/lib/engine/polarNotation/extenders/polarRecordOverflowAlert.js +40 -0
- package/lib/engine/polarNotation/polarManager.js +10 -5
- package/lib/engine/twoDimensionalNotation/extenders/twoDimRecordOverflowAlert.d.ts +15 -0
- package/lib/engine/twoDimensionalNotation/extenders/twoDimRecordOverflowAlert.js +32 -0
- package/lib/engine/twoDimensionalNotation/twoDimensionalManager.js +9 -3
- package/lib/model/{dataManagerModel.d.ts → dataManagerModel/dataManagerModel.d.ts} +18 -7
- package/lib/model/{dataManagerModel.js → dataManagerModel/dataManagerModel.js} +51 -45
- package/lib/model/dataManagerModel/dataManagerModelService.d.ts +5 -0
- package/lib/model/dataManagerModel/dataManagerModelService.js +28 -0
- package/lib/model/featuresModel/axisModel.d.ts +5 -4
- package/lib/model/featuresModel/axisModel.js +14 -12
- package/lib/model/featuresModel/axisModelService.d.ts +4 -0
- package/lib/model/featuresModel/axisModelService.js +11 -0
- package/lib/model/featuresModel/legendModel/legendCanvasModel.d.ts +4 -2
- package/lib/model/featuresModel/legendModel/legendCanvasModel.js +42 -29
- package/lib/model/featuresModel/legendModel/legendModel.d.ts +1 -4
- package/lib/model/featuresModel/legendModel/legendModel.js +15 -16
- package/lib/model/featuresModel/legendModel/polarMarginCalculator.d.ts +11 -0
- package/lib/model/featuresModel/legendModel/polarMarginCalculator.js +42 -0
- package/lib/model/featuresModel/scaleModel.d.ts +3 -3
- package/lib/model/featuresModel/titleModel.js +1 -1
- package/lib/model/marginModel.d.ts +3 -2
- package/lib/model/marginModel.js +11 -7
- package/lib/model/model.d.ts +1 -2
- package/lib/model/modelBuilder.js +8 -8
- package/lib/model/modelInstance/canvasModel/canvasModel.d.ts +2 -0
- package/lib/model/modelInstance/canvasModel/canvasModel.js +2 -0
- package/lib/model/modelInstance/canvasModel/legendCanvasModel.d.ts +7 -0
- package/lib/model/modelInstance/canvasModel/legendCanvasModel.js +13 -0
- package/lib/model/modelInstance/dataModel.d.ts +11 -0
- package/lib/model/modelInstance/dataModel.js +23 -0
- package/lib/model/modelInstance/modelInstance.d.ts +3 -0
- package/lib/model/modelInstance/modelInstance.js +7 -1
- package/lib/model/notations/intervalModel.js +2 -3
- package/lib/model/notations/polarModel.d.ts +9 -3
- package/lib/model/notations/polarModel.js +24 -2
- package/lib/model/notations/twoDimensionalModel.d.ts +2 -2
- package/lib/model/notations/twoDimensionalModel.js +2 -3
- package/lib/style/charts-main.css +24 -7
- package/lib/style/charts-main.less +24 -7
- package/package.json +2 -2
- package/tsconfig.production.json +23 -0
- package/lib/engine/features/recordOverflowAlert/recordOverflowAlert.d.ts +0 -14
- package/lib/engine/features/recordOverflowAlert/recordOverflowAlert.js +0 -97
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
import { AxisModel } from "
|
|
2
|
-
import { LegendCanvasModel } from "
|
|
3
|
-
import {
|
|
4
|
-
import { ModelHelper } from "
|
|
1
|
+
import { AxisModel } from "../featuresModel/axisModel";
|
|
2
|
+
import { LegendCanvasModel } from "../featuresModel/legendModel/legendCanvasModel";
|
|
3
|
+
import { LegendPolarMarginCalculator } from "../featuresModel/legendModel/polarMarginCalculator";
|
|
4
|
+
import { ModelHelper } from "../modelHelper";
|
|
5
|
+
import { MIN_DONUT_BLOCK_SIZE, PolarModel } from "../notations/polarModel";
|
|
6
|
+
import { DataManagerModelService } from "./dataManagerModelService";
|
|
5
7
|
export class DataManagerModel {
|
|
6
8
|
static getPreparedData(data, allowableKeys, config) {
|
|
7
9
|
const scopedData = this.getScopedData(data, allowableKeys, config);
|
|
8
10
|
this.setDataType(scopedData, config);
|
|
9
11
|
return scopedData;
|
|
10
12
|
}
|
|
11
|
-
static
|
|
13
|
+
static initDataScope(config, data, designerConfig, legendBlock, modelInstance) {
|
|
12
14
|
if (config.options.type === '2d' || config.options.type === 'interval') {
|
|
13
|
-
|
|
15
|
+
this.initDataScopeFor2D(config.options, modelInstance, data, designerConfig);
|
|
14
16
|
}
|
|
15
17
|
else if (config.options.type === 'polar') {
|
|
16
|
-
|
|
18
|
+
this.initDataScopeForPolar(config.options, modelInstance, data, legendBlock, designerConfig.canvas.legendBlock);
|
|
17
19
|
}
|
|
18
20
|
}
|
|
19
21
|
static getDataValuesByKeyField(data, dataSourceName, keyFieldName) {
|
|
20
22
|
return data[dataSourceName].map(dataRow => dataRow[keyFieldName]);
|
|
21
23
|
}
|
|
22
|
-
static
|
|
24
|
+
static initDataScopeFor2D(configOptions, modelInstance, data, designerConfig) {
|
|
23
25
|
// Для interval всегда один элемент, так как там может быть только один столбик
|
|
24
26
|
let itemsLength = 1;
|
|
25
27
|
if (configOptions.type === '2d') {
|
|
@@ -34,45 +36,54 @@ export class DataManagerModel {
|
|
|
34
36
|
const dataLength = uniqueKeys.length;
|
|
35
37
|
const limit = this.getDataLimitByItemSize(this.getElementsInGroupAmount(configOptions, itemsLength), dataLength, axisLength, designerConfig.canvas.chartOptions.bar);
|
|
36
38
|
const allowableKeys = uniqueKeys.slice(0, limit);
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
const hidedRecordsAmount = dataLength - allowableKeys.length;
|
|
40
|
+
modelInstance.dataModel.initScope(this.limitAllowableKeys(allowableKeys, hidedRecordsAmount, modelInstance.dataModel));
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
const allKeys = this.getDataValuesByKeyField(data, configOptions.data.dataSource, configOptions.data.keyField.name);
|
|
44
|
+
modelInstance.dataModel.initScope(this.getMaximumPossibleScope(allKeys, modelInstance.dataModel));
|
|
41
45
|
}
|
|
42
|
-
return {
|
|
43
|
-
allowableKeys: this.getDataValuesByKeyField(data, configOptions.data.dataSource, configOptions.data.keyField.name),
|
|
44
|
-
hidedRecordsAmount: 0
|
|
45
|
-
};
|
|
46
46
|
}
|
|
47
|
-
static
|
|
48
|
-
const
|
|
49
|
-
const dataset = data[configOptions.data.dataSource];
|
|
47
|
+
static initDataScopeForPolar(configOptions, modelInstance, data, legendBlock, legendCanvas) {
|
|
48
|
+
const canvasModel = modelInstance.canvasModel;
|
|
50
49
|
const keyFieldName = configOptions.data.keyField.name;
|
|
51
|
-
const keys =
|
|
50
|
+
const keys = data[configOptions.data.dataSource].map(dataRow => dataRow[keyFieldName]);
|
|
52
51
|
if (!configOptions.legend.show) {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
52
|
+
modelInstance.dataModel.initScope(this.getMaximumPossibleScope(keys, modelInstance.dataModel));
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
let position = PolarModel.getLegendPositionByBlockSize(modelInstance.canvasModel);
|
|
56
|
+
let { amount: maxItemsNumber, size } = this.getLegendDataParams(position, keys, legendCanvas, canvasModel, legendBlock);
|
|
57
|
+
if (position === "right" && !PolarModel.doesChartBlockHasEnoughWidthForContainsLegend(canvasModel.getChartBlockWidth(), size.width, legendBlock.coordinate)) {
|
|
58
|
+
const doesFreeSpaceExist = PolarModel.doesChartBlockHasEnoughHeightForContainsLegend(canvasModel.getChartBlockHeight(), legendBlock.coordinate);
|
|
59
|
+
if (doesFreeSpaceExist) {
|
|
60
|
+
const newParams = this.getLegendDataParams("bottom", keys, legendCanvas, canvasModel, legendBlock);
|
|
61
|
+
position = "bottom";
|
|
62
|
+
maxItemsNumber = newParams.amount;
|
|
63
|
+
size = newParams.size;
|
|
64
|
+
}
|
|
57
65
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
66
|
+
//TODO: global refactor of method
|
|
67
|
+
const allowableKeys = keys.slice(0, maxItemsNumber);
|
|
68
|
+
const hidedRecordsAmount = keys.length - maxItemsNumber;
|
|
69
|
+
const marginCalculator = new LegendPolarMarginCalculator();
|
|
70
|
+
marginCalculator.updateMargin(position, canvasModel, legendBlock, position === "bottom" ? size.height : size.width);
|
|
71
|
+
modelInstance.dataModel.initScope(this.limitAllowableKeys(allowableKeys, hidedRecordsAmount, modelInstance.dataModel));
|
|
72
|
+
}
|
|
73
|
+
//TODO: position type
|
|
74
|
+
static getLegendDataParams(position, keys, legendCanvas, canvasModel, legendBlock) {
|
|
64
75
|
if (position === 'right') {
|
|
65
|
-
|
|
76
|
+
return LegendCanvasModel.findElementsAmountByLegendSize(keys, position, legendCanvas.maxWidth, canvasModel.getChartBlockHeight() - legendBlock.coordinate.bottom.margin.bottom);
|
|
66
77
|
}
|
|
67
78
|
else {
|
|
68
|
-
|
|
69
|
-
const marginBottomWithoutLegendBlock = margin.bottom - (legendBlock.coordinate.bottom.size === 0 ? legendBlock.coordinate.bottom.size : legendBlock.coordinate.bottom.size - legendBlock.coordinate.bottom.margin.bottom);
|
|
70
|
-
maxItemsNumber = LegendCanvasModel.findElementsAmountByLegendSize(keys, position, canvas.getChartBlockWidth(), canvas.getBlockSize().height - margin.top - marginBottomWithoutLegendBlock - legendBlock.coordinate.bottom.margin.bottom - MIN_DONUT_BLOCK_SIZE);
|
|
79
|
+
return LegendCanvasModel.findElementsAmountByLegendSize(keys, position, canvasModel.getChartBlockWidth() - legendBlock.coordinate.bottom.margin.left - legendBlock.coordinate.bottom.margin.right, canvasModel.getChartBlockHeight() - legendBlock.coordinate.bottom.margin.bottom - legendBlock.coordinate.bottom.margin.top - MIN_DONUT_BLOCK_SIZE);
|
|
71
80
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
81
|
+
}
|
|
82
|
+
static getMaximumPossibleScope(keys, dataModel) {
|
|
83
|
+
return this.service.getMaximumPossibleAmount(keys, dataModel.getMaxRecordsAmount());
|
|
84
|
+
}
|
|
85
|
+
static limitAllowableKeys(allowableKeys, hidedRecordsAmount, dataModel) {
|
|
86
|
+
return this.service.limitAllowableKeys(allowableKeys, hidedRecordsAmount, dataModel.getMaxRecordsAmount());
|
|
76
87
|
}
|
|
77
88
|
/**
|
|
78
89
|
* Выводит количество элементов (преимущественно баров) в одной группе. Группа - один ключ
|
|
@@ -103,13 +114,7 @@ export class DataManagerModel {
|
|
|
103
114
|
return data.filter(d => allowableKeys.findIndex(key => key === d[keyFieldName]) !== -1);
|
|
104
115
|
}
|
|
105
116
|
static setDataType(data, config) {
|
|
106
|
-
if (config.options.type === '
|
|
107
|
-
// Форматиривание для оси ключей пока не совсем верно установлено
|
|
108
|
-
// if(config.options.data.keyField.format === 'date') {
|
|
109
|
-
// data[config.options.data.dataSource] = this.getTypedData(data[config.options.data.dataSource], config.options.data.keyField);
|
|
110
|
-
// }
|
|
111
|
-
}
|
|
112
|
-
else if (config.options.type === 'interval') {
|
|
117
|
+
if (config.options.type === 'interval') {
|
|
113
118
|
const chart = config.options.chart;
|
|
114
119
|
if (chart.data.valueField1.format === 'date') {
|
|
115
120
|
data[config.options.data.dataSource] = this.getTypedData(data[config.options.data.dataSource], chart.data.valueField1);
|
|
@@ -137,3 +142,4 @@ export class DataManagerModel {
|
|
|
137
142
|
return dataLength;
|
|
138
143
|
}
|
|
139
144
|
}
|
|
145
|
+
DataManagerModel.service = new DataManagerModelService();
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { DataScope } from "../model";
|
|
2
|
+
export declare class DataManagerModelService {
|
|
3
|
+
getMaximumPossibleAmount(keys: string[], maxPossibleAmount: number): DataScope;
|
|
4
|
+
limitAllowableKeys(allowableKeys: string[], hidedRecordsAmount: number, globalRecordsMaxAmount: number): DataScope;
|
|
5
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export class DataManagerModelService {
|
|
2
|
+
getMaximumPossibleAmount(keys, maxPossibleAmount) {
|
|
3
|
+
if (maxPossibleAmount >= keys.length) {
|
|
4
|
+
return {
|
|
5
|
+
allowableKeys: keys,
|
|
6
|
+
hidedRecordsAmount: 0
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
else {
|
|
10
|
+
return {
|
|
11
|
+
allowableKeys: keys.slice(0, maxPossibleAmount),
|
|
12
|
+
hidedRecordsAmount: keys.length - maxPossibleAmount
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
limitAllowableKeys(allowableKeys, hidedRecordsAmount, globalRecordsMaxAmount) {
|
|
17
|
+
if (allowableKeys.length <= globalRecordsMaxAmount) {
|
|
18
|
+
return {
|
|
19
|
+
allowableKeys,
|
|
20
|
+
hidedRecordsAmount
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
allowableKeys: allowableKeys.slice(0, globalRecordsMaxAmount),
|
|
25
|
+
hidedRecordsAmount: hidedRecordsAmount + allowableKeys.length - globalRecordsMaxAmount
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AxisPosition, ChartOrientation,
|
|
2
|
-
import {
|
|
1
|
+
import { AxisPosition, ChartOrientation, MdtChartsDataSource, NumberAxisOptions, AxisLabelPosition, MdtChartsTwoDimensionalOptions, DiscreteAxisOptions } from "../../config/config";
|
|
2
|
+
import { AxisModelOptions, Orient } from "../model";
|
|
3
3
|
import { AxisType } from "../modelBuilder";
|
|
4
4
|
import { AxisLabelCanvas, TooltipSettings } from "../../designer/designerConfig";
|
|
5
5
|
import { CanvasModel } from "../modelInstance/canvasModel/canvasModel";
|
|
@@ -8,12 +8,13 @@ export interface LabelSize {
|
|
|
8
8
|
height: number;
|
|
9
9
|
}
|
|
10
10
|
export declare class AxisModel {
|
|
11
|
-
static
|
|
11
|
+
private static service;
|
|
12
|
+
static getKeyAxis(options: MdtChartsTwoDimensionalOptions, data: MdtChartsDataSource, labelConfig: AxisLabelCanvas, canvasModel: CanvasModel, tooltipSettings: TooltipSettings): AxisModelOptions;
|
|
12
13
|
static getValueAxis(orient: ChartOrientation, axisConfig: NumberAxisOptions, labelConfig: AxisLabelCanvas, canvasModel: CanvasModel): AxisModelOptions;
|
|
13
14
|
static getAxisLength(chartOrientation: ChartOrientation, canvasModel: CanvasModel): number;
|
|
14
15
|
static getAxisOrient(axisType: AxisType, chartOrientation: ChartOrientation, axisPosition: AxisPosition): Orient;
|
|
15
16
|
static getAxisTranslateX(axisType: AxisType, chartOrientation: ChartOrientation, axisPosition: AxisPosition, canvasModel: CanvasModel): number;
|
|
16
17
|
static getAxisTranslateY(axisType: AxisType, chartOrientation: ChartOrientation, axisPosition: AxisPosition, canvasModel: CanvasModel): number;
|
|
17
|
-
static getKeyAxisLabelPosition(canvasModel: CanvasModel, scopedDataLength: number): AxisLabelPosition;
|
|
18
|
+
static getKeyAxisLabelPosition(canvasModel: CanvasModel, scopedDataLength: number, axisConfig?: DiscreteAxisOptions): AxisLabelPosition;
|
|
18
19
|
static getLabelSize(labelMaxWidth: number, labelTexts: any[]): LabelSize;
|
|
19
20
|
}
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
import { ModelHelper } from "../modelHelper";
|
|
2
2
|
import { AxisType, CLASSES } from "../modelBuilder";
|
|
3
|
-
import { DataManagerModel } from "../dataManagerModel";
|
|
3
|
+
import { DataManagerModel } from "../dataManagerModel/dataManagerModel";
|
|
4
4
|
import { TwoDimensionalModel } from "../notations/twoDimensionalModel";
|
|
5
|
+
import { AxisModelService } from "./axisModelService";
|
|
5
6
|
export class AxisModel {
|
|
6
|
-
static getKeyAxis(
|
|
7
|
+
static getKeyAxis(options, data, labelConfig, canvasModel, tooltipSettings) {
|
|
8
|
+
const { charts, orientation, data: dataOptions } = options;
|
|
9
|
+
const axisConfig = options.axis.key;
|
|
7
10
|
return {
|
|
8
11
|
type: 'key',
|
|
9
|
-
orient: AxisModel.getAxisOrient(AxisType.Key,
|
|
12
|
+
orient: AxisModel.getAxisOrient(AxisType.Key, orientation, axisConfig.position),
|
|
10
13
|
translate: {
|
|
11
|
-
translateX: AxisModel.getAxisTranslateX(AxisType.Key,
|
|
12
|
-
translateY: AxisModel.getAxisTranslateY(AxisType.Key,
|
|
14
|
+
translateX: AxisModel.getAxisTranslateX(AxisType.Key, orientation, axisConfig.position, canvasModel),
|
|
15
|
+
translateY: AxisModel.getAxisTranslateY(AxisType.Key, orientation, axisConfig.position, canvasModel)
|
|
13
16
|
},
|
|
14
17
|
cssClass: 'key-axis',
|
|
15
18
|
ticks: axisConfig.ticks,
|
|
16
19
|
labels: {
|
|
17
20
|
maxSize: AxisModel.getLabelSize(labelConfig.maxSize.main, data[dataOptions.dataSource].map(d => d[dataOptions.keyField.name])).width,
|
|
18
|
-
position: AxisModel.getKeyAxisLabelPosition(canvasModel, DataManagerModel.getDataValuesByKeyField(data, dataOptions.dataSource, dataOptions.keyField.name).length),
|
|
19
|
-
visible: !TwoDimensionalModel.getChartsEmbeddedLabelsFlag(charts,
|
|
21
|
+
position: AxisModel.getKeyAxisLabelPosition(canvasModel, DataManagerModel.getDataValuesByKeyField(data, dataOptions.dataSource, dataOptions.keyField.name).length, axisConfig),
|
|
22
|
+
visible: !TwoDimensionalModel.getChartsEmbeddedLabelsFlag(charts, orientation),
|
|
20
23
|
defaultTooltip: tooltipSettings.position === 'fixed'
|
|
21
24
|
},
|
|
22
25
|
visibility: axisConfig.visibility
|
|
@@ -75,11 +78,9 @@ export class AxisModel {
|
|
|
75
78
|
return canvasModel.getBlockSize().height - canvasModel.getMarginSide("bottom");
|
|
76
79
|
return canvasModel.getMarginSide("top");
|
|
77
80
|
}
|
|
78
|
-
static getKeyAxisLabelPosition(canvasModel, scopedDataLength) {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
return 'rotated';
|
|
82
|
-
return 'straight';
|
|
81
|
+
static getKeyAxisLabelPosition(canvasModel, scopedDataLength, axisConfig) {
|
|
82
|
+
var _a;
|
|
83
|
+
return this.service.getKeyAxisLabelPosition(canvasModel.getChartBlockWidth(), scopedDataLength, (_a = axisConfig === null || axisConfig === void 0 ? void 0 : axisConfig.labels) === null || _a === void 0 ? void 0 : _a.position);
|
|
83
84
|
}
|
|
84
85
|
static getLabelSize(labelMaxWidth, labelTexts) {
|
|
85
86
|
const labelSize = {
|
|
@@ -109,3 +110,4 @@ export class AxisModel {
|
|
|
109
110
|
return labelSize;
|
|
110
111
|
}
|
|
111
112
|
}
|
|
113
|
+
AxisModel.service = new AxisModelService();
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export class AxisModelService {
|
|
2
|
+
getKeyAxisLabelPosition(chartBlockWidth, scopedDataLength, positionFromConfig) {
|
|
3
|
+
if (positionFromConfig === "rotated" || positionFromConfig === "straight") {
|
|
4
|
+
return positionFromConfig;
|
|
5
|
+
}
|
|
6
|
+
const minBandSize = 50;
|
|
7
|
+
if (chartBlockWidth / scopedDataLength < minBandSize)
|
|
8
|
+
return 'rotated';
|
|
9
|
+
return 'straight';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { DataLegendParams } from "../../dataManagerModel/dataManagerModel";
|
|
1
2
|
import { LegendPosition } from "../../model";
|
|
2
3
|
export declare type LegendItemsDirection = 'row' | 'column';
|
|
3
4
|
export declare class LegendCanvasModel {
|
|
4
|
-
static getLegendHeight(texts: string[],
|
|
5
|
+
static getLegendHeight(texts: string[], chartBlockWidth: number, itemsDirection: LegendItemsDirection, legendPosition: LegendPosition): number;
|
|
5
6
|
static getLegendItemWidth(text: string): number;
|
|
6
|
-
static findElementsAmountByLegendSize(texts: string[], position: LegendPosition, legendBlockWidth: number, legendBlockHeight: number):
|
|
7
|
+
static findElementsAmountByLegendSize(texts: string[], position: LegendPosition, legendBlockWidth: number, legendBlockHeight: number): DataLegendParams;
|
|
8
|
+
private static getLegendWrapperEl;
|
|
7
9
|
}
|
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
import { CLASSES } from "../../modelBuilder";
|
|
2
|
-
import { LegendModel } from "./legendModel";
|
|
3
2
|
export class LegendCanvasModel {
|
|
4
|
-
static getLegendHeight(texts,
|
|
5
|
-
const legendWrapper =
|
|
6
|
-
legendWrapper.style.opacity = '0';
|
|
7
|
-
legendWrapper.style.display = 'flex';
|
|
8
|
-
if (itemsPosition === 'column')
|
|
9
|
-
legendWrapper.style.flexDirection = 'column';
|
|
10
|
-
legendWrapper.style.position = 'absolute';
|
|
11
|
-
legendWrapper.style.width = blockWidth - marginLeft - marginRight + 'px';
|
|
3
|
+
static getLegendHeight(texts, chartBlockWidth, itemsDirection, legendPosition) {
|
|
4
|
+
const legendWrapper = this.getLegendWrapperEl(chartBlockWidth, itemsDirection);
|
|
12
5
|
texts.forEach(text => {
|
|
13
6
|
const itemWrapper = document.createElement('div');
|
|
14
7
|
const colorBlock = document.createElement('span');
|
|
15
8
|
const textBlock = document.createElement('span');
|
|
16
|
-
itemWrapper.classList.add(
|
|
17
|
-
if (
|
|
18
|
-
itemWrapper.
|
|
19
|
-
|
|
9
|
+
itemWrapper.classList.add("legend-item");
|
|
10
|
+
if (legendPosition === 'bottom') {
|
|
11
|
+
itemWrapper.classList.add('legend-item-inline');
|
|
12
|
+
textBlock.classList.add('legend-label-nowrap');
|
|
13
|
+
}
|
|
14
|
+
else {
|
|
15
|
+
itemWrapper.classList.add('legend-item-row');
|
|
20
16
|
}
|
|
21
17
|
colorBlock.classList.add(CLASSES.legendColor);
|
|
22
18
|
textBlock.classList.add(CLASSES.legendLabel);
|
|
@@ -27,7 +23,7 @@ export class LegendCanvasModel {
|
|
|
27
23
|
document.body.append(legendWrapper);
|
|
28
24
|
const height = legendWrapper.offsetHeight;
|
|
29
25
|
legendWrapper.remove();
|
|
30
|
-
return height;
|
|
26
|
+
return height + 1;
|
|
31
27
|
}
|
|
32
28
|
static getLegendItemWidth(text) {
|
|
33
29
|
const itemWrapper = document.createElement('div');
|
|
@@ -48,39 +44,56 @@ export class LegendCanvasModel {
|
|
|
48
44
|
return sumWidth;
|
|
49
45
|
}
|
|
50
46
|
static findElementsAmountByLegendSize(texts, position, legendBlockWidth, legendBlockHeight) {
|
|
51
|
-
const legendWrapper =
|
|
52
|
-
legendWrapper.style.opacity = '0';
|
|
53
|
-
legendWrapper.style.display = 'flex';
|
|
54
|
-
legendWrapper.style.flexDirection = 'column';
|
|
55
|
-
legendWrapper.style.position = 'absolute';
|
|
56
|
-
legendWrapper.style.width = legendBlockWidth + 'px';
|
|
47
|
+
const legendWrapper = this.getLegendWrapperEl(legendBlockWidth, position === "right" ? "column" : "row");
|
|
57
48
|
document.body.append(legendWrapper);
|
|
58
49
|
let amount = 0;
|
|
59
50
|
for (let i = 0; i < texts.length; i++) {
|
|
60
51
|
const itemWrapper = document.createElement('div');
|
|
61
52
|
const colorBlock = document.createElement('span');
|
|
62
53
|
const textBlock = document.createElement('span');
|
|
63
|
-
itemWrapper.classList.add(
|
|
64
|
-
if (position === 'bottom')
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
54
|
+
itemWrapper.classList.add("legend-item");
|
|
55
|
+
if (position === 'bottom') {
|
|
56
|
+
itemWrapper.classList.add('legend-item-inline');
|
|
57
|
+
textBlock.classList.add('legend-label-nowrap');
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
itemWrapper.classList.add('legend-item-row');
|
|
61
|
+
}
|
|
68
62
|
colorBlock.classList.add(CLASSES.legendColor);
|
|
69
63
|
textBlock.classList.add(CLASSES.legendLabel);
|
|
70
64
|
textBlock.textContent = texts[i];
|
|
71
65
|
itemWrapper.append(colorBlock, textBlock);
|
|
72
66
|
legendWrapper.append(itemWrapper);
|
|
67
|
+
amount++;
|
|
73
68
|
if (legendWrapper.offsetHeight > legendBlockHeight) {
|
|
74
69
|
itemWrapper.remove();
|
|
75
70
|
if (legendBlockHeight - legendWrapper.offsetHeight >= 15 && position !== 'bottom')
|
|
76
|
-
amount =
|
|
71
|
+
amount = amount; //TODO: remove
|
|
77
72
|
else
|
|
78
|
-
amount
|
|
73
|
+
amount -= 1;
|
|
79
74
|
break;
|
|
80
75
|
}
|
|
81
|
-
amount++;
|
|
82
76
|
}
|
|
77
|
+
const size = {
|
|
78
|
+
width: legendWrapper.offsetWidth,
|
|
79
|
+
height: legendWrapper.offsetHeight
|
|
80
|
+
};
|
|
83
81
|
legendWrapper.remove();
|
|
84
|
-
return
|
|
82
|
+
return {
|
|
83
|
+
amount: amount < 0 ? 0 : amount,
|
|
84
|
+
size
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
static getLegendWrapperEl(legendBlockWidth, itemsDirection) {
|
|
88
|
+
const legendWrapper = document.createElement('div');
|
|
89
|
+
legendWrapper.style.opacity = '0';
|
|
90
|
+
legendWrapper.style.position = 'absolute';
|
|
91
|
+
legendWrapper.style.display = "flex";
|
|
92
|
+
if (itemsDirection === "column")
|
|
93
|
+
legendWrapper.classList.add("legend-block-column");
|
|
94
|
+
else
|
|
95
|
+
legendWrapper.classList.add("legend-block-row", "legend-wrapper-with-wrap");
|
|
96
|
+
legendWrapper.style.maxWidth = legendBlockWidth + 'px';
|
|
97
|
+
return legendWrapper;
|
|
85
98
|
}
|
|
86
99
|
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import { ChartNotation, Size } from "../../../config/config";
|
|
2
|
-
import { ILegendModel, LegendBlockModel,
|
|
2
|
+
import { ILegendModel, LegendBlockModel, Orient } from "../../model";
|
|
3
3
|
import { CanvasModel } from "../../modelInstance/canvasModel/canvasModel";
|
|
4
4
|
import { LegendItemsDirection } from "./legendCanvasModel";
|
|
5
|
-
/** If donut block has width less than this const, legend change postion from "right" to "bottom" */
|
|
6
|
-
export declare const MIN_DONUT_BLOCK_SIZE = 260;
|
|
7
5
|
export declare class LegendModel {
|
|
8
6
|
static getLegendSize(chartNotation: ChartNotation, position: Orient, texts: string[], legendMaxWidth: number, blockSize: Size, legendBlockModel: LegendBlockModel): number;
|
|
9
7
|
static getBaseLegendBlockModel(notation: ChartNotation, canvasModel: CanvasModel): LegendBlockModel;
|
|
10
8
|
static getLegendModel(chartNotation: ChartNotation, legendShow: boolean, canvasModel: CanvasModel): ILegendModel;
|
|
11
9
|
static getLegendItemClass(itemsPosition: LegendItemsDirection): string;
|
|
12
|
-
static getMarginClass(legendPosition: LegendPosition): string;
|
|
13
10
|
private static getLegendWidth;
|
|
14
11
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { ModelHelper } from "../../modelHelper";
|
|
2
|
+
import { PolarModel } from "../../notations/polarModel";
|
|
2
3
|
import { LegendCanvasModel } from "./legendCanvasModel";
|
|
3
|
-
/** If donut block has width less than this const, legend change postion from "right" to "bottom" */
|
|
4
|
-
export const MIN_DONUT_BLOCK_SIZE = 260;
|
|
5
4
|
export class LegendModel {
|
|
6
5
|
static getLegendSize(chartNotation, position, texts, legendMaxWidth, blockSize, legendBlockModel) {
|
|
7
6
|
if (position === 'left' || position === 'right')
|
|
8
7
|
return this.getLegendWidth(texts, legendMaxWidth);
|
|
8
|
+
//TODO: rm duplicate
|
|
9
9
|
if (chartNotation === '2d' || chartNotation === 'interval') {
|
|
10
|
-
return LegendCanvasModel.getLegendHeight(texts, blockSize.width
|
|
10
|
+
return LegendCanvasModel.getLegendHeight(texts, blockSize.width - legendBlockModel.coordinate[position].margin.left - legendBlockModel.coordinate[position].margin.right, 'row', position);
|
|
11
11
|
}
|
|
12
12
|
else if (chartNotation === 'polar') {
|
|
13
|
-
const size = LegendCanvasModel.getLegendHeight(texts, blockSize.width
|
|
13
|
+
const size = LegendCanvasModel.getLegendHeight(texts, blockSize.width - legendBlockModel.coordinate[position].margin.left - legendBlockModel.coordinate[position].margin.right, 'row', position);
|
|
14
14
|
return size;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -25,17 +25,17 @@ export class LegendModel {
|
|
|
25
25
|
},
|
|
26
26
|
bottom: {
|
|
27
27
|
size: 0,
|
|
28
|
-
margin: { top: 0, bottom: 20, left:
|
|
28
|
+
margin: { top: 0, bottom: 20, left: 0, right: 0 },
|
|
29
29
|
pad: 0
|
|
30
30
|
},
|
|
31
31
|
right: {
|
|
32
32
|
size: 0,
|
|
33
|
-
margin: { top: canvasModel.titleCanvas.getAllNeededSpace(), bottom: mb, left:
|
|
33
|
+
margin: { top: canvasModel.titleCanvas.getAllNeededSpace(), bottom: mb, left: 10, right: 0 },
|
|
34
34
|
pad: 0
|
|
35
35
|
},
|
|
36
36
|
top: {
|
|
37
37
|
size: 0,
|
|
38
|
-
margin: { top:
|
|
38
|
+
margin: { top: 10, bottom: 10, left: 20, right: 20 },
|
|
39
39
|
pad: canvasModel.titleCanvas.getAllNeededSpace()
|
|
40
40
|
}
|
|
41
41
|
},
|
|
@@ -43,13 +43,15 @@ export class LegendModel {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
static getLegendModel(chartNotation, legendShow, canvasModel) {
|
|
46
|
+
if (!legendShow)
|
|
47
|
+
return {
|
|
48
|
+
position: 'off'
|
|
49
|
+
};
|
|
46
50
|
let legendPosition = 'off';
|
|
47
|
-
if (
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
legendPosition = canvasModel.getChartBlockWidth() < MIN_DONUT_BLOCK_SIZE ? 'bottom' : 'right';
|
|
52
|
-
}
|
|
51
|
+
if (chartNotation === '2d' || chartNotation === 'interval')
|
|
52
|
+
legendPosition = 'top';
|
|
53
|
+
else if (chartNotation === 'polar') {
|
|
54
|
+
legendPosition = PolarModel.getLegendPositionByBlockSize(canvasModel);
|
|
53
55
|
}
|
|
54
56
|
return {
|
|
55
57
|
position: legendPosition
|
|
@@ -58,9 +60,6 @@ export class LegendModel {
|
|
|
58
60
|
static getLegendItemClass(itemsPosition) {
|
|
59
61
|
return itemsPosition === 'column' ? 'legend-item-row' : 'legend-item-inline';
|
|
60
62
|
}
|
|
61
|
-
static getMarginClass(legendPosition) {
|
|
62
|
-
return legendPosition === 'right' ? 'mt-15' : 'mt-10';
|
|
63
|
-
}
|
|
64
63
|
static getLegendWidth(texts, legendMaxWidth) {
|
|
65
64
|
let longestText = '';
|
|
66
65
|
let biggestScore = 0;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MdtChartsDataSource, MdtChartsPolarOptions } from "../../../config/config";
|
|
2
|
+
import { LegendBlockModel } from "../../model";
|
|
3
|
+
import { CanvasModel } from "../../modelInstance/canvasModel/canvasModel";
|
|
4
|
+
import { ModelInstance } from "../../modelInstance/modelInstance";
|
|
5
|
+
export declare class LegendPolarMarginCalculator {
|
|
6
|
+
recalcMargin(modelInstance: ModelInstance, options: MdtChartsPolarOptions, legendMaxWidth: number, legendBlockModel: LegendBlockModel, data: MdtChartsDataSource): void;
|
|
7
|
+
updateMargin(legendPosition: "right" | "bottom", canvasModel: CanvasModel, legendBlockModel: LegendBlockModel, size: number): void;
|
|
8
|
+
private updateMarginObj;
|
|
9
|
+
private getLegendSize;
|
|
10
|
+
private getLegendItemsContent;
|
|
11
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { DataManagerModel } from "../../dataManagerModel/dataManagerModel";
|
|
2
|
+
import { MarginModel } from "../../marginModel";
|
|
3
|
+
import { MIN_DONUT_BLOCK_SIZE } from "../../notations/polarModel";
|
|
4
|
+
import { LegendModel } from "./legendModel";
|
|
5
|
+
export class LegendPolarMarginCalculator {
|
|
6
|
+
recalcMargin(modelInstance, options, legendMaxWidth, legendBlockModel, data) {
|
|
7
|
+
const canvasModel = modelInstance.canvasModel;
|
|
8
|
+
let legendPosition = LegendModel.getLegendModel(options.type, options.legend.show, modelInstance.canvasModel).position;
|
|
9
|
+
modelInstance.canvasModel.legendCanvas.setPosition(legendPosition);
|
|
10
|
+
if (legendPosition === "off")
|
|
11
|
+
return;
|
|
12
|
+
let legendSize = this.getLegendSize(options, legendMaxWidth, legendBlockModel, data, canvasModel, legendPosition);
|
|
13
|
+
if (legendPosition === "right" && canvasModel.getChartBlockWidth() - legendSize < MIN_DONUT_BLOCK_SIZE) {
|
|
14
|
+
legendSize = this.getLegendSize(options, legendMaxWidth, legendBlockModel, data, canvasModel, "bottom");
|
|
15
|
+
legendPosition = "bottom";
|
|
16
|
+
modelInstance.canvasModel.legendCanvas.setPosition(legendPosition);
|
|
17
|
+
}
|
|
18
|
+
if (legendSize !== 0) {
|
|
19
|
+
canvasModel.increaseMarginSide(legendPosition, legendSize);
|
|
20
|
+
MarginModel.appendToGlobalMarginValuesLegendMargin(canvasModel, legendPosition, legendBlockModel);
|
|
21
|
+
}
|
|
22
|
+
legendBlockModel.coordinate[legendPosition].size = legendSize;
|
|
23
|
+
}
|
|
24
|
+
updateMargin(legendPosition, canvasModel, legendBlockModel, size) {
|
|
25
|
+
canvasModel.legendCanvas.setPosition(legendPosition);
|
|
26
|
+
this.updateMarginObj(legendBlockModel, legendPosition, size, canvasModel);
|
|
27
|
+
}
|
|
28
|
+
updateMarginObj(legendBlockModel, legendPosition, legendSize, canvasModel) {
|
|
29
|
+
if (legendSize !== 0) {
|
|
30
|
+
canvasModel.increaseMarginSide(legendPosition, legendSize);
|
|
31
|
+
MarginModel.appendToGlobalMarginValuesLegendMargin(canvasModel, legendPosition, legendBlockModel);
|
|
32
|
+
}
|
|
33
|
+
legendBlockModel.coordinate[legendPosition].size = legendSize;
|
|
34
|
+
}
|
|
35
|
+
getLegendSize(options, legendMaxWidth, legendBlockModel, data, canvasModel, legendPosition) {
|
|
36
|
+
const legendItemsContent = this.getLegendItemsContent(options, data);
|
|
37
|
+
return LegendModel.getLegendSize(options.type, legendPosition, legendItemsContent, legendMaxWidth, canvasModel.getBlockSize(), legendBlockModel);
|
|
38
|
+
}
|
|
39
|
+
getLegendItemsContent(options, data) {
|
|
40
|
+
return DataManagerModel.getDataValuesByKeyField(data, options.data.dataSource, options.data.keyField.name);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ScaleKeyModel, ScaleKeyType, ScaleValueModel, ScaleValueType } from "../model";
|
|
2
|
-
import { AxisPosition, NumberDomain, IntervalChart, TwoDimensionalChart,
|
|
2
|
+
import { AxisPosition, NumberDomain, IntervalChart, TwoDimensionalChart, MdtChartsTwoDimensionalOptions, ChartOrientation, MdtChartsDataSource } from "../../config/config";
|
|
3
3
|
import { CanvasModel } from "../modelInstance/canvasModel/canvasModel";
|
|
4
4
|
export declare enum ScaleType {
|
|
5
5
|
Key = 0,
|
|
@@ -7,10 +7,10 @@ export declare enum ScaleType {
|
|
|
7
7
|
}
|
|
8
8
|
export declare class ScaleModel {
|
|
9
9
|
static getScaleKey(allowableKeys: string[], orient: ChartOrientation, canvasModel: CanvasModel, charts: TwoDimensionalChart[], barCharts: TwoDimensionalChart[]): ScaleKeyModel;
|
|
10
|
-
static getScaleLinear(options:
|
|
10
|
+
static getScaleLinear(options: MdtChartsTwoDimensionalOptions, data: MdtChartsDataSource, canvasModel: CanvasModel): ScaleValueModel;
|
|
11
11
|
static getRangePeek(scaleType: ScaleType, chartOrientation: string, canvasModel: CanvasModel): number;
|
|
12
12
|
static getDateValueDomain(data: MdtChartsDataSource, chart: IntervalChart, keyAxisPosition: AxisPosition, dataSource: string): [Date, Date];
|
|
13
|
-
static getLinearDomain(configDomain: NumberDomain, data: MdtChartsDataSource, configOptions:
|
|
13
|
+
static getLinearDomain(configDomain: NumberDomain, data: MdtChartsDataSource, configOptions: MdtChartsTwoDimensionalOptions): [number, number];
|
|
14
14
|
static getScaleKeyType(charts: TwoDimensionalChart[]): ScaleKeyType;
|
|
15
15
|
static getScaleValueType(charts: TwoDimensionalChart[] | IntervalChart[]): ScaleValueType;
|
|
16
16
|
static getElementsAmount(barCharts: TwoDimensionalChart[]): number;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { MdtChartsConfig, MdtChartsDataSource } from "../config/config";
|
|
2
2
|
import { DesignerConfig } from "../designer/designerConfig";
|
|
3
|
-
import { DataScope, LegendBlockModel, OtherCommonComponents, PolarOptionsModel } from "./model";
|
|
3
|
+
import { DataScope, LegendBlockModel, Orient, OtherCommonComponents, PolarOptionsModel } from "./model";
|
|
4
4
|
import { ModelInstance } from "./modelInstance/modelInstance";
|
|
5
|
+
import { CanvasModel } from "./modelInstance/canvasModel/canvasModel";
|
|
5
6
|
export declare const AXIS_HORIZONTAL_LABEL_PADDING = 15;
|
|
6
7
|
export declare const AXIS_VERTICAL_LABEL_PADDING = 10;
|
|
7
8
|
export declare class MarginModel {
|
|
@@ -13,7 +14,7 @@ export declare class MarginModel {
|
|
|
13
14
|
private static recalcHorizontalMarginByAxisLabelWidth;
|
|
14
15
|
private static recalcMarginWithLegend;
|
|
15
16
|
private static getLegendItemsContent;
|
|
16
|
-
|
|
17
|
+
static appendToGlobalMarginValuesLegendMargin(canvasModel: CanvasModel, position: Orient, legendBlockModel: LegendBlockModel): void;
|
|
17
18
|
private static clearMarginByLegendBlockPosition;
|
|
18
19
|
private static recalcMarginByTitle;
|
|
19
20
|
}
|