@fileverse-dev/fortune-core 1.0.5 → 1.0.7
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/packages/core/src → es}/api/cell.d.ts +10 -10
- package/es/api/cell.js +204 -0
- package/{dist/packages/core/src → es}/api/common.d.ts +66 -66
- package/es/api/common.js +79 -0
- package/{dist/packages/core/src → es}/api/errors.d.ts +2 -2
- package/es/api/errors.js +2 -0
- package/{dist/packages/core/src → es}/api/index.d.ts +9 -9
- package/es/api/index.js +8 -0
- package/{dist/packages/core/src → es}/api/merge.d.ts +5 -5
- package/es/api/merge.js +15 -0
- package/{dist/packages/core/src → es}/api/range.d.ts +22 -22
- package/es/api/range.js +123 -0
- package/{dist/packages/core/src → es}/api/rowcol.d.ts +14 -14
- package/es/api/rowcol.js +207 -0
- package/{dist/packages/core/src → es}/api/sheet.d.ts +10 -10
- package/es/api/sheet.js +128 -0
- package/{dist/packages/core/src → es}/api/workbook.d.ts +15 -15
- package/es/api/workbook.js +85 -0
- package/{dist/packages/core/src → es}/canvas.d.ts +46 -46
- package/es/canvas.js +1350 -0
- package/{dist/packages/core/src → es}/context.d.ts +197 -197
- package/es/context.js +380 -0
- package/{dist/packages/core/src → es}/events/copy.d.ts +2 -2
- package/es/events/copy.js +78 -0
- package/{dist/packages/core/src → es}/events/index.d.ts +4 -4
- package/es/events/index.js +4 -0
- package/{dist/packages/core/src → es}/events/keyboard.d.ts +6 -6
- package/es/events/keyboard.js +332 -0
- package/{dist/packages/core/src → es}/events/mouse.d.ts +22 -22
- package/es/events/mouse.js +1725 -0
- package/{dist/packages/core/src → es}/events/paste.d.ts +3 -3
- package/es/events/paste.js +1358 -0
- package/{dist/packages/core/src → es}/index.d.ts +10 -10
- package/es/index.js +10 -0
- package/{dist/packages/core/src → es}/locale/en.d.ts +992 -992
- package/es/locale/en.js +10564 -0
- package/{dist/packages/core/src → es}/locale/es.d.ts +1134 -1134
- package/es/locale/es.js +10010 -0
- package/{dist/packages/core/src → es}/locale/hi.d.ts +1030 -1030
- package/es/locale/hi.js +10550 -0
- package/{dist/packages/core/src → es}/locale/index.d.ts +1049 -1049
- package/es/locale/index.js +23 -0
- package/{dist/packages/core/src → es}/locale/zh.d.ts +1048 -1048
- package/es/locale/zh.js +10568 -0
- package/{dist/packages/core/src → es}/locale/zh_tw.d.ts +1187 -1187
- package/es/locale/zh_tw.js +10072 -0
- package/{dist/packages/core/src → es}/modules/ConditionFormat.d.ts +17 -17
- package/es/modules/ConditionFormat.js +1258 -0
- package/{dist/packages/core/src → es}/modules/border.d.ts +3 -3
- package/es/modules/border.js +1240 -0
- package/{dist/packages/core/src → es}/modules/cell.d.ts +32 -32
- package/es/modules/cell.js +1055 -0
- package/{dist/packages/core/src → es}/modules/clipboard.d.ts +3 -3
- package/es/modules/clipboard.js +36 -0
- package/{dist/packages/core/src → es}/modules/color.d.ts +1 -1
- package/es/modules/color.js +1 -0
- package/{dist/packages/core/src → es}/modules/comment.d.ts +97 -97
- package/es/modules/comment.js +597 -0
- package/{dist/packages/core/src → es}/modules/conditionalFormat.d.ts +2 -2
- package/es/modules/conditionalFormat.js +441 -0
- package/{dist/packages/core/src → es}/modules/cursor.d.ts +3 -3
- package/es/modules/cursor.js +62 -0
- package/{dist/packages/core/src → es}/modules/dataVerification.d.ts +11 -11
- package/es/modules/dataVerification.js +700 -0
- package/{dist/packages/core/src → es}/modules/dropCell.d.ts +10 -10
- package/es/modules/dropCell.js +2266 -0
- package/{dist/packages/core/src → es}/modules/filter.d.ts +45 -45
- package/es/modules/filter.js +434 -0
- package/{dist/packages/core/src → es}/modules/format.d.ts +6 -6
- package/es/modules/format.js +323 -0
- package/{dist/packages/core/src → es}/modules/formula.d.ts +54 -54
- package/es/modules/formula.js +2301 -0
- package/{dist/packages/core/src → es}/modules/freeze.d.ts +5 -5
- package/es/modules/freeze.js +148 -0
- package/{dist/packages/core/src → es}/modules/hyperlink.d.ts +21 -21
- package/es/modules/hyperlink.js +216 -0
- package/{dist/packages/core/src → es}/modules/iframe.d.ts +12 -12
- package/es/modules/iframe.js +220 -0
- package/{dist/packages/core/src → es}/modules/image.d.ts +31 -31
- package/es/modules/image.js +253 -0
- package/{dist/packages/core/src → es}/modules/index.d.ts +36 -36
- package/es/modules/index.js +36 -0
- package/{dist/packages/core/src → es}/modules/inline-string.d.ts +36 -36
- package/es/modules/inline-string.js +437 -0
- package/{dist/packages/core/src → es}/modules/location.d.ts +6 -6
- package/es/modules/location.js +46 -0
- package/{dist/packages/core/src → es}/modules/locationCondition.d.ts +21 -21
- package/es/modules/locationCondition.js +218 -0
- package/{dist/packages/core/src → es}/modules/merge.d.ts +3 -3
- package/es/modules/merge.js +216 -0
- package/{dist/packages/core/src → es}/modules/mobile.d.ts +5 -5
- package/es/modules/mobile.js +33 -0
- package/{dist/packages/core/src → es}/modules/moveCells.d.ts +5 -5
- package/es/modules/moveCells.js +348 -0
- package/{dist/packages/core/src → es}/modules/protection.d.ts +5 -5
- package/es/modules/protection.js +96 -0
- package/{dist/packages/core/src → es}/modules/refresh.d.ts +3 -3
- package/es/modules/refresh.js +34 -0
- package/{dist/packages/core/src → es}/modules/rowcol.d.ts +19 -19
- package/es/modules/rowcol.js +1922 -0
- package/{dist/packages/core/src → es}/modules/screenshot.d.ts +2 -2
- package/es/modules/screenshot.js +90 -0
- package/{dist/packages/core/src → es}/modules/searchReplace.d.ts +36 -36
- package/es/modules/searchReplace.js +388 -0
- package/{dist/packages/core/src → es}/modules/selection.d.ts +46 -46
- package/es/modules/selection.js +1674 -0
- package/{dist/packages/core/src → es}/modules/sheet.d.ts +10 -10
- package/es/modules/sheet.js +237 -0
- package/{dist/packages/core/src → es}/modules/sort.d.ts +7 -7
- package/es/modules/sort.js +150 -0
- package/{dist/packages/core/src → es}/modules/splitColumn.d.ts +5 -5
- package/es/modules/splitColumn.js +126 -0
- package/es/modules/ssf.js +1533 -0
- package/{dist/packages/core/src → es}/modules/text.d.ts +10 -10
- package/es/modules/text.js +1207 -0
- package/{dist/packages/core/src → es}/modules/toolbar.d.ts +32 -32
- package/es/modules/toolbar.js +970 -0
- package/{dist/packages/core/src → es}/modules/validation.d.ts +19 -19
- package/es/modules/validation.js +190 -0
- package/{dist/packages/core/src → es}/modules/zoom.d.ts +3 -3
- package/es/modules/zoom.js +29 -0
- package/{dist/packages/core/src → es}/settings.d.ts +100 -100
- package/es/settings.js +36 -0
- package/{dist/packages/core/src → es}/types.d.ts +371 -371
- package/es/types.js +1 -0
- package/{dist/packages/core/src → es}/utils/freeze.d.ts +7 -7
- package/es/utils/freeze.js +86 -0
- package/{dist/packages/core/src → es}/utils/index.d.ts +18 -18
- package/es/utils/index.js +173 -0
- package/{dist/packages/core/src → es}/utils/patch.d.ts +37 -37
- package/es/utils/patch.js +381 -0
- package/lib/api/cell.d.ts +10 -0
- package/lib/api/cell.js +215 -0
- package/lib/api/common.d.ts +66 -0
- package/lib/api/common.js +88 -0
- package/lib/api/errors.d.ts +2 -0
- package/lib/api/errors.js +8 -0
- package/lib/api/index.d.ts +9 -0
- package/lib/api/index.js +101 -0
- package/lib/api/merge.d.ts +5 -0
- package/lib/api/merge.js +22 -0
- package/lib/api/range.d.ts +22 -0
- package/lib/api/range.js +138 -0
- package/lib/api/rowcol.d.ts +14 -0
- package/lib/api/rowcol.js +222 -0
- package/lib/api/sheet.d.ts +10 -0
- package/lib/api/sheet.js +145 -0
- package/lib/api/workbook.d.ts +15 -0
- package/lib/api/workbook.js +98 -0
- package/lib/canvas.d.ts +46 -0
- package/lib/canvas.js +1356 -0
- package/lib/context.d.ts +197 -0
- package/lib/context.js +392 -0
- package/lib/events/copy.d.ts +2 -0
- package/lib/events/copy.js +85 -0
- package/lib/events/index.d.ts +4 -0
- package/lib/events/index.js +49 -0
- package/lib/events/keyboard.d.ts +6 -0
- package/lib/events/keyboard.js +342 -0
- package/lib/events/mouse.d.ts +22 -0
- package/lib/events/mouse.js +1744 -0
- package/lib/events/paste.d.ts +3 -0
- package/lib/events/paste.js +1366 -0
- package/lib/index.d.ts +10 -0
- package/lib/index.js +109 -0
- package/lib/locale/en.d.ts +992 -0
- package/lib/locale/en.js +10570 -0
- package/lib/locale/es.d.ts +1134 -0
- package/lib/locale/es.js +10016 -0
- package/lib/locale/hi.d.ts +1030 -0
- package/lib/locale/hi.js +10556 -0
- package/lib/locale/index.d.ts +1049 -0
- package/lib/locale/index.js +29 -0
- package/lib/locale/zh.d.ts +1048 -0
- package/lib/locale/zh.js +10574 -0
- package/lib/locale/zh_tw.d.ts +1187 -0
- package/lib/locale/zh_tw.js +10078 -0
- package/lib/modules/ConditionFormat.d.ts +17 -0
- package/lib/modules/ConditionFormat.js +1273 -0
- package/lib/modules/border.d.ts +3 -0
- package/lib/modules/border.js +1248 -0
- package/lib/modules/cell.d.ts +32 -0
- package/lib/modules/cell.js +1085 -0
- package/lib/modules/clipboard.d.ts +3 -0
- package/lib/modules/clipboard.js +42 -0
- package/lib/modules/color.d.ts +1 -0
- package/lib/modules/color.js +7 -0
- package/lib/modules/comment.d.ts +97 -0
- package/lib/modules/comment.js +625 -0
- package/lib/modules/conditionalFormat.d.ts +2 -0
- package/lib/modules/conditionalFormat.js +447 -0
- package/lib/modules/cursor.d.ts +3 -0
- package/lib/modules/cursor.js +70 -0
- package/lib/modules/dataVerification.d.ts +11 -0
- package/lib/modules/dataVerification.js +715 -0
- package/lib/modules/dropCell.d.ts +10 -0
- package/lib/modules/dropCell.js +2282 -0
- package/lib/modules/filter.d.ts +45 -0
- package/lib/modules/filter.js +448 -0
- package/lib/modules/format.d.ts +6 -0
- package/lib/modules/format.js +334 -0
- package/lib/modules/formula.d.ts +54 -0
- package/lib/modules/formula.js +2330 -0
- package/lib/modules/freeze.d.ts +5 -0
- package/lib/modules/freeze.js +158 -0
- package/lib/modules/hyperlink.d.ts +21 -0
- package/lib/modules/hyperlink.js +232 -0
- package/lib/modules/iframe.d.ts +12 -0
- package/lib/modules/iframe.js +236 -0
- package/lib/modules/image.d.ts +31 -0
- package/lib/modules/image.js +272 -0
- package/lib/modules/index.d.ts +36 -0
- package/lib/modules/index.js +401 -0
- package/lib/modules/inline-string.d.ts +36 -0
- package/lib/modules/inline-string.js +452 -0
- package/lib/modules/location.d.ts +6 -0
- package/lib/modules/location.js +57 -0
- package/lib/modules/locationCondition.d.ts +21 -0
- package/lib/modules/locationCondition.js +229 -0
- package/lib/modules/merge.d.ts +3 -0
- package/lib/modules/merge.js +223 -0
- package/lib/modules/mobile.d.ts +5 -0
- package/lib/modules/mobile.js +41 -0
- package/lib/modules/moveCells.d.ts +5 -0
- package/lib/modules/moveCells.js +357 -0
- package/lib/modules/protection.d.ts +5 -0
- package/lib/modules/protection.js +106 -0
- package/lib/modules/refresh.d.ts +3 -0
- package/lib/modules/refresh.js +40 -0
- package/lib/modules/rowcol.d.ts +19 -0
- package/lib/modules/rowcol.js +1935 -0
- package/lib/modules/screenshot.d.ts +2 -0
- package/lib/modules/screenshot.js +96 -0
- package/lib/modules/searchReplace.d.ts +36 -0
- package/lib/modules/searchReplace.js +402 -0
- package/lib/modules/selection.d.ts +46 -0
- package/lib/modules/selection.js +1703 -0
- package/lib/modules/sheet.d.ts +10 -0
- package/lib/modules/sheet.js +250 -0
- package/lib/modules/sort.d.ts +7 -0
- package/lib/modules/sort.js +159 -0
- package/lib/modules/splitColumn.d.ts +5 -0
- package/lib/modules/splitColumn.js +136 -0
- package/lib/modules/ssf.js +1539 -0
- package/lib/modules/text.d.ts +10 -0
- package/lib/modules/text.js +1221 -0
- package/lib/modules/toolbar.d.ts +32 -0
- package/lib/modules/toolbar.js +1003 -0
- package/lib/modules/validation.d.ts +19 -0
- package/lib/modules/validation.js +205 -0
- package/lib/modules/zoom.d.ts +3 -0
- package/lib/modules/zoom.js +36 -0
- package/lib/settings.d.ts +100 -0
- package/lib/settings.js +42 -0
- package/lib/types.d.ts +371 -0
- package/lib/types.js +5 -0
- package/lib/utils/freeze.d.ts +7 -0
- package/lib/utils/freeze.js +92 -0
- package/lib/utils/index.d.ts +18 -0
- package/lib/utils/index.js +231 -0
- package/lib/utils/patch.d.ts +37 -0
- package/lib/utils/patch.js +392 -0
- package/package.json +6 -5
- package/dist/index.esm.js +0 -80253
- package/dist/index.js +0 -80599
- package/dist/packages/react/src/components/ChangeColor/index.d.ts +0 -7
- package/dist/packages/react/src/components/ConditionFormat/ConditionRules.d.ts +0 -6
- package/dist/packages/react/src/components/ConditionFormat/index.d.ts +0 -7
- package/dist/packages/react/src/components/ContextMenu/Divider.d.ts +0 -3
- package/dist/packages/react/src/components/ContextMenu/FilterMenu.d.ts +0 -3
- package/dist/packages/react/src/components/ContextMenu/Menu.d.ts +0 -8
- package/dist/packages/react/src/components/ContextMenu/SheetTab.d.ts +0 -4
- package/dist/packages/react/src/components/ContextMenu/index.d.ts +0 -5
- package/dist/packages/react/src/components/CustomSort/index.d.ts +0 -4
- package/dist/packages/react/src/components/DataVerification/DropdownList.d.ts +0 -4
- package/dist/packages/react/src/components/DataVerification/RangeDialog.d.ts +0 -4
- package/dist/packages/react/src/components/DataVerification/getDisplayedRangeTxt.d.ts +0 -2
- package/dist/packages/react/src/components/DataVerification/index.d.ts +0 -4
- package/dist/packages/react/src/components/Dialog/index.d.ts +0 -15
- package/dist/packages/react/src/components/DuneChartsInputModal/DuneChartsInputModal.d.ts +0 -11
- package/dist/packages/react/src/components/DunePreview/DunePreview.d.ts +0 -13
- package/dist/packages/react/src/components/FilterOption/index.d.ts +0 -5
- package/dist/packages/react/src/components/FormatSearch/index.d.ts +0 -6
- package/dist/packages/react/src/components/FormulaSearch/index.d.ts +0 -5
- package/dist/packages/react/src/components/FxEditor/NameBox.d.ts +0 -3
- package/dist/packages/react/src/components/FxEditor/index.d.ts +0 -4
- package/dist/packages/react/src/components/IFrameBoxs/iFrameBoxs.d.ts +0 -4
- package/dist/packages/react/src/components/ImgBoxs/index.d.ts +0 -3
- package/dist/packages/react/src/components/LinkEidtCard/index.d.ts +0 -5
- package/dist/packages/react/src/components/LocationCondition/index.d.ts +0 -3
- package/dist/packages/react/src/components/MessageBox/index.d.ts +0 -9
- package/dist/packages/react/src/components/NotationBoxes/index.d.ts +0 -3
- package/dist/packages/react/src/components/ResetColumnWidth/index.d.ts +0 -2
- package/dist/packages/react/src/components/SVGDefines.d.ts +0 -5
- package/dist/packages/react/src/components/SVGIcon.d.ts +0 -9
- package/dist/packages/react/src/components/SearchReplace/index.d.ts +0 -6
- package/dist/packages/react/src/components/Sheet/index.d.ts +0 -8
- package/dist/packages/react/src/components/SheetList/SheetHiddenButton.d.ts +0 -8
- package/dist/packages/react/src/components/SheetList/SheetListItem.d.ts +0 -9
- package/dist/packages/react/src/components/SheetList/index.d.ts +0 -4
- package/dist/packages/react/src/components/SheetOverlay/ColumnHeader.d.ts +0 -3
- package/dist/packages/react/src/components/SheetOverlay/ContentEditable.d.ts +0 -11
- package/dist/packages/react/src/components/SheetOverlay/FormulaHint/index.d.ts +0 -4
- package/dist/packages/react/src/components/SheetOverlay/FormulaSearch/constant.d.ts +0 -63
- package/dist/packages/react/src/components/SheetOverlay/FormulaSearch/index.d.ts +0 -4
- package/dist/packages/react/src/components/SheetOverlay/InputBox.d.ts +0 -3
- package/dist/packages/react/src/components/SheetOverlay/RowHeader.d.ts +0 -3
- package/dist/packages/react/src/components/SheetOverlay/ScrollBar/index.d.ts +0 -7
- package/dist/packages/react/src/components/SheetOverlay/index.d.ts +0 -4
- package/dist/packages/react/src/components/SheetTab/SheetItem.d.ts +0 -8
- package/dist/packages/react/src/components/SheetTab/index.d.ts +0 -4
- package/dist/packages/react/src/components/SplitColumn/index.d.ts +0 -3
- package/dist/packages/react/src/components/Toolbar/Button.d.ts +0 -12
- package/dist/packages/react/src/components/Toolbar/ColorPicker.d.ts +0 -6
- package/dist/packages/react/src/components/Toolbar/Combo.d.ts +0 -12
- package/dist/packages/react/src/components/Toolbar/CustomBorder.d.ts +0 -7
- package/dist/packages/react/src/components/Toolbar/CustomButton.d.ts +0 -11
- package/dist/packages/react/src/components/Toolbar/CustomColor.d.ts +0 -8
- package/dist/packages/react/src/components/Toolbar/CustomIcon.d.ts +0 -9
- package/dist/packages/react/src/components/Toolbar/Divider.d.ts +0 -4
- package/dist/packages/react/src/components/Toolbar/MoreItemsContainer.d.ts +0 -6
- package/dist/packages/react/src/components/Toolbar/Select.d.ts +0 -14
- package/dist/packages/react/src/components/Toolbar/index.d.ts +0 -10
- package/dist/packages/react/src/components/Workbook/api.d.ts +0 -1177
- package/dist/packages/react/src/components/Workbook/index.d.ts +0 -1185
- package/dist/packages/react/src/components/ZoomControl/index.d.ts +0 -4
- package/dist/packages/react/src/components/index.d.ts +0 -4
- package/dist/packages/react/src/constants.d.ts +0 -1
- package/dist/packages/react/src/context/index.d.ts +0 -25
- package/dist/packages/react/src/context/modal.d.ts +0 -10
- package/dist/packages/react/src/hooks/useAlert.d.ts +0 -4
- package/dist/packages/react/src/hooks/useDialog.d.ts +0 -5
- package/dist/packages/react/src/hooks/useOutsideClick.d.ts +0 -2
- package/dist/packages/react/src/hooks/usePrevious.d.ts +0 -2
- package/dist/packages/react/src/index.d.ts +0 -1
- package/dist/packages/react/src/utils/datepickerStyles.d.ts +0 -2
- package/dist/stories/API.stories.d.ts +0 -1210
- package/dist/stories/Collabration.stories.d.ts +0 -2359
- package/dist/stories/Features.stories.d.ts +0 -9430
- package/dist/stories/data/cell.d.ts +0 -983
- package/dist/stories/data/dataVerification.d.ts +0 -131
- package/dist/stories/data/empty.d.ts +0 -10
- package/dist/stories/data/formula.d.ts +0 -362
- package/dist/stories/data/freeze.d.ts +0 -34
- package/dist/stories/data/protected.d.ts +0 -40
- package/dist/stories/utils.d.ts +0 -1
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import { Context } from "../context";
|
|
2
|
-
export declare function labelFilterOptionState(ctx: Context, optionstate: boolean, rowhidden: Record<string, number>, caljs: any, str: number, edr: number, cindex: number, stc: number, edc: number, saveData: boolean): void;
|
|
3
|
-
export declare function orderbydatafiler(ctx: Context, str: number, stc: number, edr: number, edc: number, curr: number, asc: boolean): string | null;
|
|
4
|
-
export declare function createFilterOptions(ctx: Context, luckysheet_filter_save: {
|
|
5
|
-
row: number[];
|
|
6
|
-
column: number[];
|
|
7
|
-
} | undefined, sheetId: string | undefined, filterObj?: any, saveData?: boolean): void;
|
|
8
|
-
export declare function clearFilter(ctx: Context): void;
|
|
9
|
-
export declare function createFilter(ctx: Context): void;
|
|
10
|
-
export type FilterDate = {
|
|
11
|
-
key: string;
|
|
12
|
-
type: string;
|
|
13
|
-
value: string;
|
|
14
|
-
text: string;
|
|
15
|
-
rows: number[];
|
|
16
|
-
dateValues: string[];
|
|
17
|
-
children: FilterDate[];
|
|
18
|
-
};
|
|
19
|
-
export type FilterValue = {
|
|
20
|
-
key: string;
|
|
21
|
-
value: any;
|
|
22
|
-
mask: any;
|
|
23
|
-
text: string;
|
|
24
|
-
rows: number[];
|
|
25
|
-
};
|
|
26
|
-
export declare function getFilterColumnValues(ctx: Context, col: number, startRow: number, endRow: number, startCol: number): {
|
|
27
|
-
dates: FilterDate[];
|
|
28
|
-
datesUncheck: string[];
|
|
29
|
-
dateRowMap: Record<string, number[]>;
|
|
30
|
-
values: FilterValue[];
|
|
31
|
-
valuesUncheck: string[];
|
|
32
|
-
valueRowMap: Record<string, number[]>;
|
|
33
|
-
visibleRows: number[];
|
|
34
|
-
flattenValues: string[];
|
|
35
|
-
};
|
|
36
|
-
export type FilterColor = {
|
|
37
|
-
color: string;
|
|
38
|
-
checked: boolean;
|
|
39
|
-
rows: number[];
|
|
40
|
-
};
|
|
41
|
-
export declare function getFilterColumnColors(ctx: Context, col: number, startRow: number, endRow: number): {
|
|
42
|
-
bgColors: FilterColor[];
|
|
43
|
-
fcColors: FilterColor[];
|
|
44
|
-
};
|
|
45
|
-
export declare function saveFilter(ctx: Context, optionState: boolean, hiddenRows: Record<string, number>, caljs: any, st_r: number, ed_r: number, cindex: number, st_c: number, ed_c: number): void;
|
|
1
|
+
import { Context } from "../context";
|
|
2
|
+
export declare function labelFilterOptionState(ctx: Context, optionstate: boolean, rowhidden: Record<string, number>, caljs: any, str: number, edr: number, cindex: number, stc: number, edc: number, saveData: boolean): void;
|
|
3
|
+
export declare function orderbydatafiler(ctx: Context, str: number, stc: number, edr: number, edc: number, curr: number, asc: boolean): string | null;
|
|
4
|
+
export declare function createFilterOptions(ctx: Context, luckysheet_filter_save: {
|
|
5
|
+
row: number[];
|
|
6
|
+
column: number[];
|
|
7
|
+
} | undefined, sheetId: string | undefined, filterObj?: any, saveData?: boolean): void;
|
|
8
|
+
export declare function clearFilter(ctx: Context): void;
|
|
9
|
+
export declare function createFilter(ctx: Context): void;
|
|
10
|
+
export type FilterDate = {
|
|
11
|
+
key: string;
|
|
12
|
+
type: string;
|
|
13
|
+
value: string;
|
|
14
|
+
text: string;
|
|
15
|
+
rows: number[];
|
|
16
|
+
dateValues: string[];
|
|
17
|
+
children: FilterDate[];
|
|
18
|
+
};
|
|
19
|
+
export type FilterValue = {
|
|
20
|
+
key: string;
|
|
21
|
+
value: any;
|
|
22
|
+
mask: any;
|
|
23
|
+
text: string;
|
|
24
|
+
rows: number[];
|
|
25
|
+
};
|
|
26
|
+
export declare function getFilterColumnValues(ctx: Context, col: number, startRow: number, endRow: number, startCol: number): {
|
|
27
|
+
dates: FilterDate[];
|
|
28
|
+
datesUncheck: string[];
|
|
29
|
+
dateRowMap: Record<string, number[]>;
|
|
30
|
+
values: FilterValue[];
|
|
31
|
+
valuesUncheck: string[];
|
|
32
|
+
valueRowMap: Record<string, number[]>;
|
|
33
|
+
visibleRows: number[];
|
|
34
|
+
flattenValues: string[];
|
|
35
|
+
};
|
|
36
|
+
export type FilterColor = {
|
|
37
|
+
color: string;
|
|
38
|
+
checked: boolean;
|
|
39
|
+
rows: number[];
|
|
40
|
+
};
|
|
41
|
+
export declare function getFilterColumnColors(ctx: Context, col: number, startRow: number, endRow: number): {
|
|
42
|
+
bgColors: FilterColor[];
|
|
43
|
+
fcColors: FilterColor[];
|
|
44
|
+
};
|
|
45
|
+
export declare function saveFilter(ctx: Context, optionState: boolean, hiddenRows: Record<string, number>, caljs: any, st_r: number, ed_r: number, cindex: number, st_c: number, ed_c: number): void;
|
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
import { locale } from "../locale";
|
|
3
|
+
import { getFlowdata } from "../context";
|
|
4
|
+
import { getSheetIndex, isAllowEdit, rgbToHex } from "../utils";
|
|
5
|
+
import { update } from "./format";
|
|
6
|
+
import { normalizeSelection } from "./selection";
|
|
7
|
+
import { isRealNull } from "./validation";
|
|
8
|
+
import { normalizedAttr } from "./cell";
|
|
9
|
+
import { sortDataRange } from "./sort";
|
|
10
|
+
import { checkCF, getComputeMap } from "./ConditionFormat";
|
|
11
|
+
export function labelFilterOptionState(ctx, optionstate, rowhidden, caljs, str, edr, cindex, stc, edc, saveData) {
|
|
12
|
+
var param = {
|
|
13
|
+
caljs: caljs,
|
|
14
|
+
rowhidden: rowhidden,
|
|
15
|
+
optionstate: optionstate,
|
|
16
|
+
str: str,
|
|
17
|
+
edr: edr,
|
|
18
|
+
cindex: cindex,
|
|
19
|
+
stc: stc,
|
|
20
|
+
edc: edc
|
|
21
|
+
};
|
|
22
|
+
if (optionstate) {
|
|
23
|
+
ctx.filter[cindex - stc] = param;
|
|
24
|
+
if (caljs != null) {}
|
|
25
|
+
} else {
|
|
26
|
+
delete ctx.filter[cindex - stc];
|
|
27
|
+
}
|
|
28
|
+
if (saveData) {
|
|
29
|
+
var sheetIndex = getSheetIndex(ctx, ctx.currentSheetId);
|
|
30
|
+
if (sheetIndex == null) return;
|
|
31
|
+
var file = ctx.luckysheetfile[sheetIndex];
|
|
32
|
+
if (file.filter == null) {
|
|
33
|
+
file.filter = {};
|
|
34
|
+
}
|
|
35
|
+
if (optionstate) {
|
|
36
|
+
file.filter[cindex - stc] = param;
|
|
37
|
+
} else {
|
|
38
|
+
delete file.filter[cindex - stc];
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
export function orderbydatafiler(ctx, str, stc, edr, edc, curr, asc) {
|
|
43
|
+
var _a;
|
|
44
|
+
var d = getFlowdata(ctx);
|
|
45
|
+
if (d == null) {
|
|
46
|
+
return null;
|
|
47
|
+
}
|
|
48
|
+
str += 1;
|
|
49
|
+
var hasMc = false;
|
|
50
|
+
var data = [];
|
|
51
|
+
for (var r = str; r <= edr; r += 1) {
|
|
52
|
+
var data_row = [];
|
|
53
|
+
for (var c = stc; c <= edc; c += 1) {
|
|
54
|
+
if (d[r][c] != null && ((_a = d[r][c]) === null || _a === void 0 ? void 0 : _a.mc) != null) {
|
|
55
|
+
hasMc = true;
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
data_row.push(d[r][c]);
|
|
59
|
+
}
|
|
60
|
+
data.push(data_row);
|
|
61
|
+
}
|
|
62
|
+
if (hasMc) {
|
|
63
|
+
var filter = locale(ctx).filter;
|
|
64
|
+
return filter.mergeError;
|
|
65
|
+
}
|
|
66
|
+
sortDataRange(ctx, d, data, curr - stc, asc, str, edr, stc, edc);
|
|
67
|
+
return null;
|
|
68
|
+
}
|
|
69
|
+
export function createFilterOptions(ctx, luckysheet_filter_save, sheetId, filterObj, saveData) {
|
|
70
|
+
var _a, _b, _c, _d;
|
|
71
|
+
var allowEdit = isAllowEdit(ctx);
|
|
72
|
+
if (!allowEdit) return;
|
|
73
|
+
if (sheetId != null && sheetId !== ctx.currentSheetId) return;
|
|
74
|
+
var sheetIndex = getSheetIndex(ctx, ctx.currentSheetId);
|
|
75
|
+
if (sheetIndex == null) return;
|
|
76
|
+
if (luckysheet_filter_save == null || _.size(luckysheet_filter_save) === 0) {
|
|
77
|
+
delete ctx.filterOptions;
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
var r1 = luckysheet_filter_save.row[0];
|
|
81
|
+
var r2 = luckysheet_filter_save.row[1];
|
|
82
|
+
var c1 = luckysheet_filter_save.column[0];
|
|
83
|
+
var c2 = luckysheet_filter_save.column[1];
|
|
84
|
+
var row = (_a = ctx.visibledatarow[r2]) !== null && _a !== void 0 ? _a : 0;
|
|
85
|
+
var row_pre = r1 - 1 === -1 ? 0 : (_b = ctx.visibledatarow[r1 - 1]) !== null && _b !== void 0 ? _b : 0;
|
|
86
|
+
var col = (_c = ctx.visibledatacolumn[c2]) !== null && _c !== void 0 ? _c : 0;
|
|
87
|
+
var col_pre = c1 - 1 === -1 ? 0 : (_d = ctx.visibledatacolumn[c1 - 1]) !== null && _d !== void 0 ? _d : 0;
|
|
88
|
+
var options = {
|
|
89
|
+
startRow: r1,
|
|
90
|
+
endRow: r2,
|
|
91
|
+
startCol: c1,
|
|
92
|
+
endCol: c2,
|
|
93
|
+
left: col_pre,
|
|
94
|
+
top: row_pre,
|
|
95
|
+
width: col - col_pre - 1,
|
|
96
|
+
height: row - row_pre - 1,
|
|
97
|
+
items: []
|
|
98
|
+
};
|
|
99
|
+
for (var c = c1; c <= c2; c += 1) {
|
|
100
|
+
if (filterObj == null || (filterObj === null || filterObj === void 0 ? void 0 : filterObj[c - c1]) == null) {} else {}
|
|
101
|
+
var left = 0;
|
|
102
|
+
if (ctx.visibledatacolumn[c]) {
|
|
103
|
+
left = ctx.visibledatacolumn[c] - 20;
|
|
104
|
+
}
|
|
105
|
+
options.items.push({
|
|
106
|
+
col: c,
|
|
107
|
+
left: left,
|
|
108
|
+
top: row_pre
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
if (saveData) {
|
|
112
|
+
var file = ctx.luckysheetfile[sheetIndex];
|
|
113
|
+
file.filter_select = luckysheet_filter_save;
|
|
114
|
+
}
|
|
115
|
+
ctx.filterOptions = options;
|
|
116
|
+
}
|
|
117
|
+
export function clearFilter(ctx) {
|
|
118
|
+
var allowEdit = isAllowEdit(ctx);
|
|
119
|
+
if (!allowEdit) return;
|
|
120
|
+
var sheetIndex = getSheetIndex(ctx, ctx.currentSheetId);
|
|
121
|
+
var hiddenRows = _.reduce(ctx.filter, function (pre, curr) {
|
|
122
|
+
return _.assign(pre, (curr === null || curr === void 0 ? void 0 : curr.rowhidden) || {});
|
|
123
|
+
}, {});
|
|
124
|
+
ctx.config.rowhidden = _.omit(ctx.config.rowhidden, _.keys(hiddenRows));
|
|
125
|
+
ctx.luckysheet_filter_save = undefined;
|
|
126
|
+
ctx.filterOptions = undefined;
|
|
127
|
+
ctx.filterContextMenu = undefined;
|
|
128
|
+
ctx.filter = {};
|
|
129
|
+
if (sheetIndex != null) {
|
|
130
|
+
ctx.luckysheetfile[sheetIndex].filter = undefined;
|
|
131
|
+
ctx.luckysheetfile[sheetIndex].filter_select = undefined;
|
|
132
|
+
ctx.luckysheetfile[sheetIndex].config = _.assign({}, ctx.config);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
export function createFilter(ctx) {
|
|
136
|
+
var _a, _b;
|
|
137
|
+
if (_.size(ctx.luckysheet_select_save) > 1) {
|
|
138
|
+
return;
|
|
139
|
+
}
|
|
140
|
+
if (_.size(ctx.luckysheet_filter_save) > 0) {
|
|
141
|
+
clearFilter(ctx);
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
144
|
+
var sheetIndex = getSheetIndex(ctx, ctx.currentSheetId);
|
|
145
|
+
if (sheetIndex == null || ctx.luckysheetfile[sheetIndex].isPivotTable) {
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
var last = (_a = ctx.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[0];
|
|
149
|
+
var flowdata = getFlowdata(ctx);
|
|
150
|
+
var filterSave;
|
|
151
|
+
if (last == null || flowdata == null) return;
|
|
152
|
+
if (last.row[0] === last.row[1] && last.column[0] === last.column[1]) {
|
|
153
|
+
var st_c = void 0;
|
|
154
|
+
var ed_c = void 0;
|
|
155
|
+
var curR = last.row[1];
|
|
156
|
+
for (var c = 0; c < flowdata[curR].length; c += 1) {
|
|
157
|
+
var cell = flowdata[curR][c];
|
|
158
|
+
if (cell != null && !isRealNull(cell.v)) {
|
|
159
|
+
if (st_c == null) {
|
|
160
|
+
st_c = c;
|
|
161
|
+
}
|
|
162
|
+
} else if (st_c != null) {
|
|
163
|
+
ed_c = c - 1;
|
|
164
|
+
break;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
if (ed_c == null) {
|
|
168
|
+
ed_c = flowdata[curR].length - 1;
|
|
169
|
+
}
|
|
170
|
+
filterSave = normalizeSelection(ctx, [{
|
|
171
|
+
row: [curR, curR],
|
|
172
|
+
column: [st_c || 0, ed_c]
|
|
173
|
+
}]);
|
|
174
|
+
ctx.luckysheet_select_save = filterSave;
|
|
175
|
+
ctx.luckysheet_shiftpositon = _.assign({}, last);
|
|
176
|
+
} else if (last.row[1] - last.row[0] < 2) {
|
|
177
|
+
ctx.luckysheet_shiftpositon = _.assign({}, last);
|
|
178
|
+
}
|
|
179
|
+
ctx.luckysheet_filter_save = _.assign({}, (filterSave === null || filterSave === void 0 ? void 0 : filterSave[0]) || ((_b = ctx.luckysheet_select_save) === null || _b === void 0 ? void 0 : _b[0]));
|
|
180
|
+
createFilterOptions(ctx, ctx.luckysheet_filter_save, undefined, {}, true);
|
|
181
|
+
}
|
|
182
|
+
function getFilterHiddenRows(ctx, col, startCol) {
|
|
183
|
+
var _a;
|
|
184
|
+
var otherHiddenRows = _.reduce(ctx.filter, function (pre, curr) {
|
|
185
|
+
return _.assign(pre, (curr === null || curr === void 0 ? void 0 : curr.cindex) !== col && (curr === null || curr === void 0 ? void 0 : curr.rowhidden) || {});
|
|
186
|
+
}, {});
|
|
187
|
+
var hiddenRows = ((_a = ctx.filter[col - startCol]) === null || _a === void 0 ? void 0 : _a.rowhidden) || {};
|
|
188
|
+
return {
|
|
189
|
+
otherHiddenRows: otherHiddenRows,
|
|
190
|
+
hiddenRows: hiddenRows
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
export function getFilterColumnValues(ctx, col, startRow, endRow, startCol) {
|
|
194
|
+
var _a = getFilterHiddenRows(ctx, col, startCol),
|
|
195
|
+
otherHiddenRows = _a.otherHiddenRows,
|
|
196
|
+
hiddenRows = _a.hiddenRows;
|
|
197
|
+
var visibleRows = [];
|
|
198
|
+
var flattenValues = [];
|
|
199
|
+
var dates = [];
|
|
200
|
+
var datesUncheck = [];
|
|
201
|
+
var dateRowMap = {};
|
|
202
|
+
var valuesMap = new Map();
|
|
203
|
+
var valuesUncheck = [];
|
|
204
|
+
var valueRowMap = {};
|
|
205
|
+
var flowdata = getFlowdata(ctx);
|
|
206
|
+
if (flowdata == null) return {
|
|
207
|
+
dates: dates,
|
|
208
|
+
datesUncheck: datesUncheck,
|
|
209
|
+
dateRowMap: dateRowMap,
|
|
210
|
+
values: [],
|
|
211
|
+
valuesUncheck: valuesUncheck,
|
|
212
|
+
valueRowMap: valueRowMap,
|
|
213
|
+
visibleRows: visibleRows,
|
|
214
|
+
flattenValues: flattenValues
|
|
215
|
+
};
|
|
216
|
+
var cell;
|
|
217
|
+
var filter = locale(ctx).filter;
|
|
218
|
+
var _loop_1 = function _loop_1(r) {
|
|
219
|
+
if (r in otherHiddenRows) {
|
|
220
|
+
return "continue";
|
|
221
|
+
}
|
|
222
|
+
visibleRows.push(r);
|
|
223
|
+
cell = flowdata[r][col];
|
|
224
|
+
if (cell != null && !isRealNull(cell.v) && cell.ct != null && cell.ct.t === "d") {
|
|
225
|
+
var dateStr = update("YYYY-MM-DD", cell.v);
|
|
226
|
+
var y_1 = dateStr.split("-")[0];
|
|
227
|
+
var m_1 = dateStr.split("-")[1];
|
|
228
|
+
var d_1 = dateStr.split("-")[2];
|
|
229
|
+
var yearValue = _.find(dates, function (v) {
|
|
230
|
+
return v.value === y_1;
|
|
231
|
+
});
|
|
232
|
+
if (yearValue == null) {
|
|
233
|
+
yearValue = {
|
|
234
|
+
key: y_1,
|
|
235
|
+
type: "year",
|
|
236
|
+
value: y_1,
|
|
237
|
+
text: y_1 + filter.filiterYearText,
|
|
238
|
+
children: [],
|
|
239
|
+
rows: [],
|
|
240
|
+
dateValues: []
|
|
241
|
+
};
|
|
242
|
+
dates.push(yearValue);
|
|
243
|
+
flattenValues.push(dateStr);
|
|
244
|
+
}
|
|
245
|
+
var monthValue = _.find(yearValue.children, function (v) {
|
|
246
|
+
return v.value === m_1;
|
|
247
|
+
});
|
|
248
|
+
if (monthValue == null) {
|
|
249
|
+
monthValue = {
|
|
250
|
+
key: "".concat(y_1, "-").concat(m_1),
|
|
251
|
+
type: "month",
|
|
252
|
+
value: m_1,
|
|
253
|
+
text: m_1 + filter.filiterMonthText,
|
|
254
|
+
children: [],
|
|
255
|
+
rows: [],
|
|
256
|
+
dateValues: []
|
|
257
|
+
};
|
|
258
|
+
yearValue.children.push(monthValue);
|
|
259
|
+
}
|
|
260
|
+
var dayValue = _.find(monthValue.children, function (v) {
|
|
261
|
+
return v.value === d_1;
|
|
262
|
+
});
|
|
263
|
+
if (dayValue == null) {
|
|
264
|
+
dayValue = {
|
|
265
|
+
key: dateStr,
|
|
266
|
+
type: "day",
|
|
267
|
+
value: d_1,
|
|
268
|
+
text: d_1,
|
|
269
|
+
children: [],
|
|
270
|
+
rows: [],
|
|
271
|
+
dateValues: []
|
|
272
|
+
};
|
|
273
|
+
monthValue.children.push(dayValue);
|
|
274
|
+
}
|
|
275
|
+
yearValue.rows.push(r);
|
|
276
|
+
yearValue.dateValues.push(dateStr);
|
|
277
|
+
monthValue.rows.push(r);
|
|
278
|
+
monthValue.dateValues.push(dateStr);
|
|
279
|
+
dayValue.rows.push(r);
|
|
280
|
+
dayValue.dateValues.push(dateStr);
|
|
281
|
+
dateRowMap[dateStr] = (dateRowMap[dateStr] || []).concat(r);
|
|
282
|
+
if (r in hiddenRows) {
|
|
283
|
+
datesUncheck = _.union(datesUncheck, [dateStr]);
|
|
284
|
+
}
|
|
285
|
+
} else {
|
|
286
|
+
var v = void 0;
|
|
287
|
+
var m_2;
|
|
288
|
+
if (cell == null || isRealNull(cell.v)) {
|
|
289
|
+
v = null;
|
|
290
|
+
m_2 = null;
|
|
291
|
+
} else {
|
|
292
|
+
v = cell.v;
|
|
293
|
+
m_2 = cell.m;
|
|
294
|
+
}
|
|
295
|
+
var data = valuesMap.get("".concat(v));
|
|
296
|
+
var text = m_2 == null ? filter.valueBlank : "".concat(m_2);
|
|
297
|
+
var key = "".concat(v, "#$$$#").concat(m_2);
|
|
298
|
+
if (data != null) {
|
|
299
|
+
var maskValue = _.find(data, function (value) {
|
|
300
|
+
return value.mask === m_2;
|
|
301
|
+
});
|
|
302
|
+
if (maskValue == null) {
|
|
303
|
+
maskValue = {
|
|
304
|
+
key: key,
|
|
305
|
+
value: v,
|
|
306
|
+
text: text,
|
|
307
|
+
mask: m_2,
|
|
308
|
+
rows: []
|
|
309
|
+
};
|
|
310
|
+
data.push(maskValue);
|
|
311
|
+
flattenValues.push(text);
|
|
312
|
+
}
|
|
313
|
+
maskValue.rows.push(r);
|
|
314
|
+
} else {
|
|
315
|
+
valuesMap.set("".concat(v), [{
|
|
316
|
+
key: key,
|
|
317
|
+
value: v,
|
|
318
|
+
text: text,
|
|
319
|
+
mask: m_2,
|
|
320
|
+
rows: [r]
|
|
321
|
+
}]);
|
|
322
|
+
flattenValues.push(text);
|
|
323
|
+
}
|
|
324
|
+
if (r in hiddenRows) {
|
|
325
|
+
valuesUncheck = _.union(valuesUncheck, [key]);
|
|
326
|
+
}
|
|
327
|
+
valueRowMap[key] = (valueRowMap[key] || []).concat(r);
|
|
328
|
+
}
|
|
329
|
+
};
|
|
330
|
+
for (var r = startRow + 1; r <= endRow; r += 1) {
|
|
331
|
+
_loop_1(r);
|
|
332
|
+
}
|
|
333
|
+
return {
|
|
334
|
+
dates: dates,
|
|
335
|
+
datesUncheck: datesUncheck,
|
|
336
|
+
dateRowMap: dateRowMap,
|
|
337
|
+
values: _.flatten(Array.from(valuesMap.values())),
|
|
338
|
+
valuesUncheck: valuesUncheck,
|
|
339
|
+
valueRowMap: valueRowMap,
|
|
340
|
+
visibleRows: visibleRows,
|
|
341
|
+
flattenValues: flattenValues
|
|
342
|
+
};
|
|
343
|
+
}
|
|
344
|
+
export function getFilterColumnColors(ctx, col, startRow, endRow) {
|
|
345
|
+
var _a;
|
|
346
|
+
var bgMap = new Map();
|
|
347
|
+
var fcMap = new Map();
|
|
348
|
+
var cf_compute = getComputeMap(ctx);
|
|
349
|
+
var flowdata = getFlowdata(ctx);
|
|
350
|
+
if (flowdata == null) return {
|
|
351
|
+
bgColors: [],
|
|
352
|
+
fcColors: []
|
|
353
|
+
};
|
|
354
|
+
for (var r = startRow + 1; r <= endRow; r += 1) {
|
|
355
|
+
var cell = flowdata[r][col];
|
|
356
|
+
var bg = normalizedAttr(flowdata, r, col, "bg");
|
|
357
|
+
if (bg == null) {
|
|
358
|
+
bg = "#ffffff";
|
|
359
|
+
}
|
|
360
|
+
var checksAF = [];
|
|
361
|
+
if (checksAF.length > 1) {
|
|
362
|
+
bg = checksAF[1];
|
|
363
|
+
}
|
|
364
|
+
var checksCF = checkCF(r, col, cf_compute);
|
|
365
|
+
if (checksCF != null && checksCF.cellColor != null) {
|
|
366
|
+
bg = checksCF.cellColor;
|
|
367
|
+
}
|
|
368
|
+
if (bg.indexOf("rgb") > -1) {
|
|
369
|
+
bg = rgbToHex(bg);
|
|
370
|
+
}
|
|
371
|
+
if (bg.length === 4) {
|
|
372
|
+
bg = bg.substr(0, 1) + bg.substr(1, 1).repeat(2) + bg.substr(2, 1).repeat(2) + bg.substr(3, 1).repeat(2);
|
|
373
|
+
}
|
|
374
|
+
var fc = normalizedAttr(flowdata, r, col, "fc");
|
|
375
|
+
if (checksAF.length > 0) {
|
|
376
|
+
fc = checksAF[0];
|
|
377
|
+
}
|
|
378
|
+
if (checksCF != null && checksCF.textColor != null) {
|
|
379
|
+
fc = checksCF.textColor;
|
|
380
|
+
}
|
|
381
|
+
if (fc != null) {
|
|
382
|
+
if (fc.indexOf("rgb") > -1) {
|
|
383
|
+
fc = rgbToHex(fc);
|
|
384
|
+
}
|
|
385
|
+
if (fc.length === 4) {
|
|
386
|
+
fc = fc.substr(0, 1) + fc.substr(1, 1).repeat(2) + fc.substr(2, 1).repeat(2) + fc.substr(3, 1).repeat(2);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
var isRowHidden = r in (((_a = ctx.config) === null || _a === void 0 ? void 0 : _a.rowhidden) || {});
|
|
390
|
+
var bgData = bgMap.get(bg);
|
|
391
|
+
if (bgData != null) {
|
|
392
|
+
bgData.rows.push(r);
|
|
393
|
+
if (isRowHidden) bgData.checked = false;
|
|
394
|
+
} else {
|
|
395
|
+
bgMap.set(bg, {
|
|
396
|
+
color: bg,
|
|
397
|
+
checked: !isRowHidden,
|
|
398
|
+
rows: [r]
|
|
399
|
+
});
|
|
400
|
+
}
|
|
401
|
+
if (fc != null) {
|
|
402
|
+
var fcData = fcMap.get(fc);
|
|
403
|
+
if (fcData != null && cell != null && !isRealNull(cell.v)) {
|
|
404
|
+
fcData.rows.push(r);
|
|
405
|
+
if (isRowHidden) fcData.checked = false;
|
|
406
|
+
} else if (cell != null && !isRealNull(cell.v)) {
|
|
407
|
+
fcMap.set(fc, {
|
|
408
|
+
color: fc,
|
|
409
|
+
checked: !isRowHidden,
|
|
410
|
+
rows: [r]
|
|
411
|
+
});
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
var bgColors = _.flatten(Array.from(bgMap.values()));
|
|
416
|
+
var fcColors = _.flatten(Array.from(fcMap.values()));
|
|
417
|
+
return {
|
|
418
|
+
bgColors: bgColors.length < 2 ? [] : bgColors,
|
|
419
|
+
fcColors: fcColors.length < 2 ? [] : fcColors
|
|
420
|
+
};
|
|
421
|
+
}
|
|
422
|
+
export function saveFilter(ctx, optionState, hiddenRows, caljs, st_r, ed_r, cindex, st_c, ed_c) {
|
|
423
|
+
var otherHiddenRows = getFilterHiddenRows(ctx, cindex, st_c).otherHiddenRows;
|
|
424
|
+
var rowHiddenAll = _.assign(otherHiddenRows, hiddenRows);
|
|
425
|
+
labelFilterOptionState(ctx, optionState, hiddenRows, caljs, st_r, ed_r, cindex, st_c, ed_c, true);
|
|
426
|
+
var cfg = _.assign({}, ctx.config);
|
|
427
|
+
cfg.rowhidden = rowHiddenAll;
|
|
428
|
+
ctx.config = cfg;
|
|
429
|
+
var sheetIndex = getSheetIndex(ctx, ctx.currentSheetId);
|
|
430
|
+
if (sheetIndex == null) {
|
|
431
|
+
return;
|
|
432
|
+
}
|
|
433
|
+
ctx.luckysheetfile[sheetIndex].config = cfg;
|
|
434
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { CellMatrix } from "../types";
|
|
2
|
-
export declare function datenum_local(v: Date, date1904?: number): number;
|
|
3
|
-
export declare function genarate(value: string | number | boolean): any[] | null;
|
|
4
|
-
export declare function update(fmt: string, v: any): any;
|
|
5
|
-
export declare function is_date(fmt: string, v?: any): any;
|
|
6
|
-
export declare function valueShowEs(r: number, c: number, d: CellMatrix): any;
|
|
1
|
+
import { CellMatrix } from "../types";
|
|
2
|
+
export declare function datenum_local(v: Date, date1904?: number): number;
|
|
3
|
+
export declare function genarate(value: string | number | boolean): any[] | null;
|
|
4
|
+
export declare function update(fmt: string, v: any): any;
|
|
5
|
+
export declare function is_date(fmt: string, v?: any): any;
|
|
6
|
+
export declare function valueShowEs(r: number, c: number, d: CellMatrix): any;
|