@infomaximum/widget-sdk 4.0.0-next3 → 4.0.0-next5
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/index.d.ts +14 -11
- package/dist/index.esm.js +7 -3
- package/dist/index.js +7 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -467,9 +467,11 @@ interface IWidgetTableColumn {
|
|
|
467
467
|
dataType: ESimpleDataType;
|
|
468
468
|
}
|
|
469
469
|
interface IScripField {
|
|
470
|
+
/** @deprecated удалить после выполнения BI-13602, задача BI-13650 */
|
|
470
471
|
guid: string;
|
|
471
472
|
name: string;
|
|
472
473
|
dataType: ESimpleDataType;
|
|
474
|
+
isRequired: boolean;
|
|
473
475
|
}
|
|
474
476
|
interface IActionScript {
|
|
475
477
|
key: string;
|
|
@@ -511,6 +513,8 @@ interface IGlobalContext {
|
|
|
511
513
|
workspaceGroupNameById: Map<number, string>;
|
|
512
514
|
/** Переменные отчета */
|
|
513
515
|
variables: Map<string, TWidgetVariable>;
|
|
516
|
+
/** Системные переменные */
|
|
517
|
+
systemVariables: Map<string, TSystemVariable>;
|
|
514
518
|
/** Метод установки значения переменной отчета */
|
|
515
519
|
setVariableValue(name: string, value: TNullable<string> | string[]): void;
|
|
516
520
|
states: Map<string, ICommonState>;
|
|
@@ -743,7 +747,7 @@ interface IWidgetAction extends IActionCommon {
|
|
|
743
747
|
type TAction = TActionsOnClick | IWidgetAction;
|
|
744
748
|
declare const isExecuteScriptActionValid: (action: Extract<TAction, {
|
|
745
749
|
type: EActionTypes.EXECUTE_SCRIPT;
|
|
746
|
-
}>, { scripts, tables, variables }: Pick<IGlobalContext, "scripts" | "tables" | "variables">) => boolean;
|
|
750
|
+
}>, { scripts, tables, variables, systemVariables, }: Pick<IGlobalContext, "scripts" | "tables" | "variables" | "systemVariables">) => boolean;
|
|
747
751
|
|
|
748
752
|
declare enum ESortDirection {
|
|
749
753
|
descend = "DESC",
|
|
@@ -902,6 +906,14 @@ declare enum EIndicatorType {
|
|
|
902
906
|
/** Пользовательская сортировка */
|
|
903
907
|
USER_SORTING = "USER_SORTING"
|
|
904
908
|
}
|
|
909
|
+
type TSystemVariable = {
|
|
910
|
+
/** Имя переменной */
|
|
911
|
+
name: string;
|
|
912
|
+
/** Значение */
|
|
913
|
+
value: string;
|
|
914
|
+
/** Тип данных */
|
|
915
|
+
dataType: ESimpleDataType;
|
|
916
|
+
};
|
|
905
917
|
type TWidgetVariable = {
|
|
906
918
|
/** Тип переменной */
|
|
907
919
|
type: EIndicatorType.STATIC;
|
|
@@ -1196,15 +1208,6 @@ declare const escapeSpecialCharacters: (formula: string) => string;
|
|
|
1196
1208
|
/** Удалить из строки символы экранирования */
|
|
1197
1209
|
declare function unescapeSpecialCharacters(str: string): string;
|
|
1198
1210
|
|
|
1199
|
-
/** Вид переменной для калькулятора */
|
|
1200
|
-
interface ICalculatorVariable {
|
|
1201
|
-
dataType: ESimpleDataType;
|
|
1202
|
-
value: string | string[];
|
|
1203
|
-
}
|
|
1204
|
-
/** Коллекция значений переменных по их имени */
|
|
1205
|
-
interface ICalculatorVariablesValues extends Map<string, ICalculatorVariable> {
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
1211
|
interface ICalculatorFactory {
|
|
1209
1212
|
general: () => IGeneralCalculator;
|
|
1210
1213
|
pie: () => IPieCalculator;
|
|
@@ -1728,4 +1731,4 @@ declare global {
|
|
|
1728
1731
|
}
|
|
1729
1732
|
}
|
|
1730
1733
|
|
|
1731
|
-
export { EActionTypes, ECalculatorFilterMethods, EColorMode, EControlType, ECustomSelectTemplates, EDbType, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationUnit, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureTemplateNames, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESortDirection, ESortingValueModes, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionGoToUrl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAppearanceSettings, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type
|
|
1734
|
+
export { EActionTypes, ECalculatorFilterMethods, EColorMode, EControlType, ECustomSelectTemplates, EDbType, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationUnit, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureTemplateNames, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESortDirection, ESortingValueModes, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionGoToUrl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAppearanceSettings, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IExportColumnOrder, type IFillSettings, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRange, type ISelectBranchOption, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectOption, type ISelectSystemOption, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type IVertex, type IViewContext, type IViewInputValue, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetMeasure, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetTable, type IWidgetTableColumn, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionsOnClick, type TAddButton, type TBoundedContentWithIndicator, type TColor, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationMode, type TGroupLevelRecord, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchOptions, type TSelectivePartial, type TSortDirection, type TSystemVariable, type TUpdateSelection, type TValuePath, type TWidgetActionParameter, type TWidgetContainer, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetLevelRecord, type TWidgetSortingValue, type TWidgetVariable, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, dashboardLinkRegExp, dimensionTemplateFormulas, escapeSpecialCharacters, eventMeasureTemplateFormulas, fillTemplateString, formulaFilterMethods, generateColumnFormula, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getRuleColor, getTransitionMeasureFormula, isDimensionsHierarchy, isExecuteScriptActionValid, isFormulaFilterValue, isValidColor, linkNameRegExp, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureTemplateFormulas, parseIndicatorLink, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateMultiModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
|
package/dist/index.esm.js
CHANGED
|
@@ -42,7 +42,7 @@ var EDrawerPlacement;
|
|
|
42
42
|
})(EDrawerPlacement || (EDrawerPlacement = {}));
|
|
43
43
|
var isExecuteScriptActionValid = function (action, _a) {
|
|
44
44
|
var _b;
|
|
45
|
-
var scripts = _a.scripts, tables = _a.tables, variables = _a.variables;
|
|
45
|
+
var scripts = _a.scripts, tables = _a.tables, variables = _a.variables, systemVariables = _a.systemVariables;
|
|
46
46
|
var currentScript = scripts.get((_b = action.scriptKey) !== null && _b !== void 0 ? _b : "");
|
|
47
47
|
if (!currentScript) {
|
|
48
48
|
return false;
|
|
@@ -52,13 +52,17 @@ var isExecuteScriptActionValid = function (action, _a) {
|
|
|
52
52
|
return false;
|
|
53
53
|
}
|
|
54
54
|
return currentScript.fields.every(function (_a) {
|
|
55
|
-
var name = _a.name;
|
|
55
|
+
var name = _a.name, isRequired = _a.isRequired;
|
|
56
56
|
var actionInput = actionInputsMap.get(name !== null && name !== void 0 ? name : "");
|
|
57
57
|
if (!actionInput) {
|
|
58
58
|
return false;
|
|
59
59
|
}
|
|
60
|
+
if (!isRequired) {
|
|
61
|
+
return true;
|
|
62
|
+
}
|
|
60
63
|
if (actionInput.inputMethod === EWidgetActionInputMethod.VARIABLE &&
|
|
61
|
-
!variables.has(actionInput.sourceVariable)
|
|
64
|
+
!variables.has(actionInput.sourceVariable) &&
|
|
65
|
+
!systemVariables.has(actionInput.sourceVariable)) {
|
|
62
66
|
return false;
|
|
63
67
|
}
|
|
64
68
|
if (actionInput.inputMethod === EWidgetActionInputMethod.FORMULA && !actionInput.formula) {
|
package/dist/index.js
CHANGED
|
@@ -43,7 +43,7 @@ exports.EDrawerPlacement = void 0;
|
|
|
43
43
|
})(exports.EDrawerPlacement || (exports.EDrawerPlacement = {}));
|
|
44
44
|
var isExecuteScriptActionValid = function (action, _a) {
|
|
45
45
|
var _b;
|
|
46
|
-
var scripts = _a.scripts, tables = _a.tables, variables = _a.variables;
|
|
46
|
+
var scripts = _a.scripts, tables = _a.tables, variables = _a.variables, systemVariables = _a.systemVariables;
|
|
47
47
|
var currentScript = scripts.get((_b = action.scriptKey) !== null && _b !== void 0 ? _b : "");
|
|
48
48
|
if (!currentScript) {
|
|
49
49
|
return false;
|
|
@@ -53,13 +53,17 @@ var isExecuteScriptActionValid = function (action, _a) {
|
|
|
53
53
|
return false;
|
|
54
54
|
}
|
|
55
55
|
return currentScript.fields.every(function (_a) {
|
|
56
|
-
var name = _a.name;
|
|
56
|
+
var name = _a.name, isRequired = _a.isRequired;
|
|
57
57
|
var actionInput = actionInputsMap.get(name !== null && name !== void 0 ? name : "");
|
|
58
58
|
if (!actionInput) {
|
|
59
59
|
return false;
|
|
60
60
|
}
|
|
61
|
+
if (!isRequired) {
|
|
62
|
+
return true;
|
|
63
|
+
}
|
|
61
64
|
if (actionInput.inputMethod === exports.EWidgetActionInputMethod.VARIABLE &&
|
|
62
|
-
!variables.has(actionInput.sourceVariable)
|
|
65
|
+
!variables.has(actionInput.sourceVariable) &&
|
|
66
|
+
!systemVariables.has(actionInput.sourceVariable)) {
|
|
63
67
|
return false;
|
|
64
68
|
}
|
|
65
69
|
if (actionInput.inputMethod === exports.EWidgetActionInputMethod.FORMULA && !actionInput.formula) {
|