@smallwei/avue 3.8.2 → 3.8.4
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/README.md +206 -86
- package/dist/avue.js +37302 -0
- package/dist/avue.js.map +1 -0
- package/dist/avue.min.js +6 -0
- package/dist/avue.min.mjs +2 -0
- package/dist/avue.mjs +2 -0
- package/dist/index.css +1 -0
- package/es/avue.min.mjs +2 -0
- package/es/avue.min.ts +2 -0
- package/es/avue.mjs +2 -0
- package/es/avue.ts +2 -0
- package/es/core/create.mjs +8 -0
- package/es/core/create.ts +16 -0
- package/es/core/dataformat.mjs +184 -0
- package/es/core/dataformat.ts +190 -0
- package/es/core/detail.mjs +74 -0
- package/es/core/detail.ts +81 -0
- package/es/core/dic.mjs +213 -0
- package/es/core/dic.ts +235 -0
- package/es/core/locale.mjs +8 -0
- package/es/core/locale.ts +9 -0
- package/es/core/packages.mjs +61 -0
- package/es/core/packages.ts +62 -0
- package/es/core/slot.mjs +32 -0
- package/es/core/slot.ts +30 -0
- package/es/global/variable.mjs +80 -0
- package/es/global/variable.ts +84 -0
- package/es/icon.mjs +9 -0
- package/es/icon.ts +11 -0
- package/es/index.mjs +127 -0
- package/es/index.ts +177 -0
- package/es/locale/browser/en.mjs +288 -0
- package/es/locale/browser/zh-cn.mjs +288 -0
- package/es/locale/browser/zh.mjs +288 -0
- package/es/locale/index.mjs +141 -0
- package/es/locale/index.ts +196 -0
- package/es/locale/lang/en.mjs +282 -0
- package/es/locale/lang/en.ts +282 -0
- package/es/locale/lang/zh-cn.mjs +282 -0
- package/es/locale/lang/zh-cn.ts +282 -0
- package/es/locale/lang/zh.mjs +282 -0
- package/es/locale/lang/zh.ts +282 -0
- package/es/packages/core/common/event.mjs +58 -0
- package/es/packages/core/common/event.ts +56 -0
- package/es/packages/core/common/init.mjs +134 -0
- package/es/packages/core/common/init.ts +133 -0
- package/es/packages/core/common/props.mjs +239 -0
- package/es/packages/core/common/props.ts +240 -0
- package/es/packages/core/components/dialog-form/index.mjs +29 -0
- package/es/packages/core/components/dialog-form/index.ts +29 -0
- package/es/packages/core/components/dialog-form/index.vue +108 -0
- package/es/packages/core/components/form/custom.mjs +41 -0
- package/es/packages/core/components/form/custom.ts +41 -0
- package/es/packages/core/components/form/index.vue +176 -0
- package/es/packages/core/components/icon/index.vue +37 -0
- package/es/packages/core/components/image-preview/index.mjs +34 -0
- package/es/packages/core/components/image-preview/index.ts +37 -0
- package/es/packages/core/components/image-preview/index.vue +215 -0
- package/es/packages/core/directive/contextmenu.mjs +92 -0
- package/es/packages/core/directive/contextmenu.ts +103 -0
- package/es/packages/core/directive/permission.mjs +19 -0
- package/es/packages/core/directive/permission.ts +18 -0
- package/es/packages/data/box/index.vue +66 -0
- package/es/packages/data/card/index.vue +62 -0
- package/es/packages/data/cardText/index.vue +56 -0
- package/es/packages/data/countdown/index.vue +81 -0
- package/es/packages/data/dashboard/index.vue +72 -0
- package/es/packages/data/display/index.vue +63 -0
- package/es/packages/data/icons/index.vue +68 -0
- package/es/packages/data/imgText/index.vue +72 -0
- package/es/packages/data/list/index.vue +69 -0
- package/es/packages/data/notice/index.vue +63 -0
- package/es/packages/data/operaText/index.vue +62 -0
- package/es/packages/data/panel/index.vue +62 -0
- package/es/packages/data/pay/index.vue +92 -0
- package/es/packages/data/price/index.vue +55 -0
- package/es/packages/data/product/index.vue +106 -0
- package/es/packages/data/profile/index.vue +91 -0
- package/es/packages/data/progress/index.vue +64 -0
- package/es/packages/data/rank/index.vue +92 -0
- package/es/packages/data/rotate/index.vue +69 -0
- package/es/packages/data/statistic/index.vue +71 -0
- package/es/packages/data/tabs/index.vue +64 -0
- package/es/packages/data/task/index.vue +82 -0
- package/es/packages/data/weather/index.vue +103 -0
- package/es/packages/element-plus/array/index.vue +115 -0
- package/es/packages/element-plus/article/index.vue +73 -0
- package/es/packages/element-plus/card/index.vue +103 -0
- package/es/packages/element-plus/cascader/index.vue +132 -0
- package/es/packages/element-plus/chat/index.vue +513 -0
- package/es/packages/element-plus/checkbox/index.vue +84 -0
- package/es/packages/element-plus/comment/index.vue +76 -0
- package/es/packages/element-plus/count-up/index.vue +109 -0
- package/es/packages/element-plus/crud/column/column-default.vue +128 -0
- package/es/packages/element-plus/crud/column/column-dynamic.vue +86 -0
- package/es/packages/element-plus/crud/column/column-menu.vue +267 -0
- package/es/packages/element-plus/crud/column/column-slot.vue +348 -0
- package/es/packages/element-plus/crud/column/column.vue +119 -0
- package/es/packages/element-plus/crud/column/menu.vue +78 -0
- package/es/packages/element-plus/crud/config.mjs +74 -0
- package/es/packages/element-plus/crud/config.ts +74 -0
- package/es/packages/element-plus/crud/dialog/dialog-column.vue +102 -0
- package/es/packages/element-plus/crud/dialog/dialog-excel.vue +204 -0
- package/es/packages/element-plus/crud/dialog/dialog-filter.vue +159 -0
- package/es/packages/element-plus/crud/dialog/dialog-form.vue +352 -0
- package/es/packages/element-plus/crud/grid/index.vue +271 -0
- package/es/packages/element-plus/crud/grid/item.vue +39 -0
- package/es/packages/element-plus/crud/index.vue +1018 -0
- package/es/packages/element-plus/crud/menu/header-menu.vue +175 -0
- package/es/packages/element-plus/crud/menu/header-search.vue +228 -0
- package/es/packages/element-plus/crud/menu/table-page.vue +108 -0
- package/es/packages/element-plus/date/index.vue +81 -0
- package/es/packages/element-plus/draggable/index.vue +444 -0
- package/es/packages/element-plus/dynamic/index.vue +353 -0
- package/es/packages/element-plus/flow/index.vue +339 -0
- package/es/packages/element-plus/flow/node.vue +84 -0
- package/es/packages/element-plus/form/config.mjs +6 -0
- package/es/packages/element-plus/form/config.ts +6 -0
- package/es/packages/element-plus/form/index.vue +954 -0
- package/es/packages/element-plus/form/menu.vue +63 -0
- package/es/packages/element-plus/group/index.vue +90 -0
- package/es/packages/element-plus/input/index.vue +1264 -0
- package/es/packages/element-plus/input-color/index.vue +70 -0
- package/es/packages/element-plus/input-cron/index.vue +363 -0
- package/es/packages/element-plus/input-icon/index.vue +143 -0
- package/es/packages/element-plus/input-map/index.vue +311 -0
- package/es/packages/element-plus/input-number/index.vue +91 -0
- package/es/packages/element-plus/input-table/index.vue +279 -0
- package/es/packages/element-plus/input-tag/index.vue +79 -0
- package/es/packages/element-plus/input-tree/index.vue +194 -0
- package/es/packages/element-plus/license/index.vue +155 -0
- package/es/packages/element-plus/login/index.vue +203 -0
- package/es/packages/element-plus/mention/index.vue +117 -0
- package/es/packages/element-plus/radio/index.vue +38 -0
- package/es/packages/element-plus/rate/index.vue +51 -0
- package/es/packages/element-plus/search/index.vue +129 -0
- package/es/packages/element-plus/select/index.vue +292 -0
- package/es/packages/element-plus/sign/index.vue +230 -0
- package/es/packages/element-plus/slider/index.vue +66 -0
- package/es/packages/element-plus/switch/index.vue +72 -0
- package/es/packages/element-plus/tabs/index.vue +62 -0
- package/es/packages/element-plus/text-ellipsis/index.vue +104 -0
- package/es/packages/element-plus/time/index.vue +81 -0
- package/es/packages/element-plus/title/index.vue +30 -0
- package/es/packages/element-plus/tree/index.vue +460 -0
- package/es/packages/element-plus/upload/index.vue +728 -0
- package/es/packages/element-plus/verify/index.vue +62 -0
- package/es/packages/element-plus/video/index.vue +90 -0
- package/es/plugin/ali/index.mjs +4 -0
- package/es/plugin/ali/index.ts +6 -0
- package/es/plugin/clipboard/index.mjs +61 -0
- package/es/plugin/clipboard/index.ts +67 -0
- package/es/plugin/export/_blob.mjs +151 -0
- package/es/plugin/export/_blob.ts +176 -0
- package/es/plugin/export/_export2Excel.mjs +141 -0
- package/es/plugin/export/_export2Excel.ts +166 -0
- package/es/plugin/export/index.mjs +263 -0
- package/es/plugin/export/index.ts +274 -0
- package/es/plugin/logs/index.mjs +46 -0
- package/es/plugin/logs/index.ts +66 -0
- package/es/plugin/print/index.mjs +145 -0
- package/es/plugin/print/index.ts +155 -0
- package/es/plugin/qiniu/index.mjs +78 -0
- package/es/plugin/qiniu/index.ts +88 -0
- package/es/plugin/screenshot/index.mjs +8 -0
- package/es/plugin/screenshot/index.ts +9 -0
- package/es/plugin/video/index.mjs +52 -0
- package/es/plugin/video/index.ts +60 -0
- package/es/plugin/watermark/index.mjs +114 -0
- package/es/plugin/watermark/index.ts +127 -0
- package/es/plugin/watermark/watermark.mjs +109 -0
- package/es/plugin/watermark/watermark.ts +121 -0
- package/es/ui/data/index.mjs +49 -0
- package/es/ui/data/index.ts +51 -0
- package/es/ui/element-plus/index.mjs +87 -0
- package/es/ui/element-plus/index.ts +89 -0
- package/es/ui/index.mjs +4 -0
- package/es/ui/index.ts +6 -0
- package/es/utils/bem.mjs +29 -0
- package/es/utils/bem.ts +36 -0
- package/es/utils/mock.mjs +137 -0
- package/es/utils/mock.ts +151 -0
- package/es/utils/util.mjs +370 -0
- package/es/utils/util.ts +392 -0
- package/es/utils/validate.mjs +18 -0
- package/es/utils/validate.ts +23 -0
- package/es/version.mjs +1 -0
- package/es/version.ts +1 -0
- package/lib/avue.js +11 -35880
- package/lib/avue.min.js +11 -6
- package/lib/avue.min.ts +2 -0
- package/lib/avue.ts +2 -0
- package/lib/core/create.js +14 -0
- package/lib/core/create.ts +16 -0
- package/lib/core/dataformat.js +194 -0
- package/lib/core/dataformat.ts +190 -0
- package/lib/core/detail.js +81 -0
- package/lib/core/detail.ts +81 -0
- package/lib/core/dic.js +220 -0
- package/lib/core/dic.ts +235 -0
- package/lib/core/locale.js +10 -0
- package/lib/core/locale.ts +9 -0
- package/lib/core/packages.js +66 -0
- package/lib/core/packages.ts +62 -0
- package/lib/core/slot.js +34 -0
- package/lib/core/slot.ts +30 -0
- package/lib/global/variable.js +83 -0
- package/lib/global/variable.ts +84 -0
- package/lib/icon.js +44 -0
- package/lib/icon.ts +11 -0
- package/lib/index.js +134 -0
- package/lib/index.ts +177 -0
- package/lib/locale/browser/en.js +288 -0
- package/lib/locale/browser/zh-cn.js +288 -0
- package/lib/locale/browser/zh.js +288 -0
- package/lib/locale/index.js +153 -47
- package/lib/locale/index.ts +196 -0
- package/lib/locale/lang/en.js +284 -100
- package/lib/locale/lang/en.ts +282 -0
- package/lib/locale/lang/zh-cn.js +284 -0
- package/lib/locale/lang/zh-cn.ts +282 -0
- package/lib/locale/lang/zh.js +284 -100
- package/lib/locale/lang/zh.ts +282 -0
- package/lib/packages/core/common/event.js +61 -0
- package/lib/packages/core/common/event.ts +56 -0
- package/lib/packages/core/common/init.js +140 -0
- package/lib/packages/core/common/init.ts +133 -0
- package/lib/packages/core/common/props.js +245 -0
- package/lib/packages/core/common/props.ts +240 -0
- package/lib/packages/core/components/dialog-form/index.js +35 -0
- package/lib/packages/core/components/dialog-form/index.ts +29 -0
- package/lib/packages/core/components/dialog-form/index.vue +108 -0
- package/lib/packages/core/components/form/custom.js +43 -0
- package/lib/packages/core/components/form/custom.ts +41 -0
- package/lib/packages/core/components/form/index.vue +176 -0
- package/lib/packages/core/components/icon/index.vue +37 -0
- package/lib/packages/core/components/image-preview/index.js +40 -0
- package/lib/packages/core/components/image-preview/index.ts +37 -0
- package/lib/packages/core/components/image-preview/index.vue +215 -0
- package/lib/packages/core/directive/contextmenu.js +94 -0
- package/lib/packages/core/directive/contextmenu.ts +103 -0
- package/lib/packages/core/directive/permission.js +21 -0
- package/lib/packages/core/directive/permission.ts +18 -0
- package/lib/packages/data/box/index.vue +66 -0
- package/lib/packages/data/card/index.vue +62 -0
- package/lib/packages/data/cardText/index.vue +56 -0
- package/lib/packages/data/countdown/index.vue +81 -0
- package/lib/packages/data/dashboard/index.vue +72 -0
- package/lib/packages/data/display/index.vue +63 -0
- package/lib/packages/data/icons/index.vue +68 -0
- package/lib/packages/data/imgText/index.vue +72 -0
- package/lib/packages/data/list/index.vue +69 -0
- package/lib/packages/data/notice/index.vue +63 -0
- package/lib/packages/data/operaText/index.vue +62 -0
- package/lib/packages/data/panel/index.vue +62 -0
- package/lib/packages/data/pay/index.vue +92 -0
- package/lib/packages/data/price/index.vue +55 -0
- package/lib/packages/data/product/index.vue +106 -0
- package/lib/packages/data/profile/index.vue +91 -0
- package/lib/packages/data/progress/index.vue +64 -0
- package/lib/packages/data/rank/index.vue +92 -0
- package/lib/packages/data/rotate/index.vue +69 -0
- package/lib/packages/data/statistic/index.vue +71 -0
- package/lib/packages/data/tabs/index.vue +64 -0
- package/lib/packages/data/task/index.vue +82 -0
- package/lib/packages/data/weather/index.vue +103 -0
- package/lib/packages/element-plus/array/index.vue +115 -0
- package/lib/packages/element-plus/article/index.vue +73 -0
- package/lib/packages/element-plus/card/index.vue +103 -0
- package/lib/packages/element-plus/cascader/index.vue +132 -0
- package/lib/packages/element-plus/chat/index.vue +513 -0
- package/lib/packages/element-plus/checkbox/index.vue +84 -0
- package/lib/packages/element-plus/comment/index.vue +76 -0
- package/lib/packages/element-plus/count-up/index.vue +109 -0
- package/lib/packages/element-plus/crud/column/column-default.vue +128 -0
- package/lib/packages/element-plus/crud/column/column-dynamic.vue +86 -0
- package/lib/packages/element-plus/crud/column/column-menu.vue +267 -0
- package/lib/packages/element-plus/crud/column/column-slot.vue +348 -0
- package/lib/packages/element-plus/crud/column/column.vue +119 -0
- package/lib/packages/element-plus/crud/column/menu.vue +78 -0
- package/lib/packages/element-plus/crud/config.js +76 -0
- package/lib/packages/element-plus/crud/config.ts +74 -0
- package/lib/packages/element-plus/crud/dialog/dialog-column.vue +102 -0
- package/lib/packages/element-plus/crud/dialog/dialog-excel.vue +204 -0
- package/lib/packages/element-plus/crud/dialog/dialog-filter.vue +159 -0
- package/lib/packages/element-plus/crud/dialog/dialog-form.vue +352 -0
- package/lib/packages/element-plus/crud/grid/index.vue +271 -0
- package/lib/packages/element-plus/crud/grid/item.vue +39 -0
- package/lib/packages/element-plus/crud/index.vue +1018 -0
- package/lib/packages/element-plus/crud/menu/header-menu.vue +175 -0
- package/lib/packages/element-plus/crud/menu/header-search.vue +228 -0
- package/lib/packages/element-plus/crud/menu/table-page.vue +108 -0
- package/lib/packages/element-plus/date/index.vue +81 -0
- package/lib/packages/element-plus/draggable/index.vue +444 -0
- package/lib/packages/element-plus/dynamic/index.vue +353 -0
- package/lib/packages/element-plus/flow/index.vue +339 -0
- package/lib/packages/element-plus/flow/node.vue +84 -0
- package/lib/packages/element-plus/form/config.js +8 -0
- package/lib/packages/element-plus/form/config.ts +6 -0
- package/lib/packages/element-plus/form/index.vue +954 -0
- package/lib/packages/element-plus/form/menu.vue +63 -0
- package/lib/packages/element-plus/group/index.vue +90 -0
- package/lib/packages/element-plus/input/index.vue +1264 -0
- package/lib/packages/element-plus/input-color/index.vue +70 -0
- package/lib/packages/element-plus/input-cron/index.vue +363 -0
- package/lib/packages/element-plus/input-icon/index.vue +143 -0
- package/lib/packages/element-plus/input-map/index.vue +311 -0
- package/lib/packages/element-plus/input-number/index.vue +91 -0
- package/lib/packages/element-plus/input-table/index.vue +279 -0
- package/lib/packages/element-plus/input-tag/index.vue +79 -0
- package/lib/packages/element-plus/input-tree/index.vue +194 -0
- package/lib/packages/element-plus/license/index.vue +155 -0
- package/lib/packages/element-plus/login/index.vue +203 -0
- package/lib/packages/element-plus/mention/index.vue +117 -0
- package/lib/packages/element-plus/radio/index.vue +38 -0
- package/lib/packages/element-plus/rate/index.vue +51 -0
- package/lib/packages/element-plus/search/index.vue +129 -0
- package/lib/packages/element-plus/select/index.vue +292 -0
- package/lib/packages/element-plus/sign/index.vue +230 -0
- package/lib/packages/element-plus/slider/index.vue +66 -0
- package/lib/packages/element-plus/switch/index.vue +72 -0
- package/lib/packages/element-plus/tabs/index.vue +62 -0
- package/lib/packages/element-plus/text-ellipsis/index.vue +104 -0
- package/lib/packages/element-plus/time/index.vue +81 -0
- package/lib/packages/element-plus/title/index.vue +30 -0
- package/lib/packages/element-plus/tree/index.vue +460 -0
- package/lib/packages/element-plus/upload/index.vue +728 -0
- package/lib/packages/element-plus/verify/index.vue +62 -0
- package/lib/packages/element-plus/video/index.vue +90 -0
- package/lib/plugin/ali/index.js +8 -0
- package/lib/plugin/ali/index.ts +6 -0
- package/lib/plugin/clipboard/index.js +64 -0
- package/lib/plugin/clipboard/index.ts +67 -0
- package/lib/plugin/export/_blob.js +151 -0
- package/lib/plugin/export/_blob.ts +176 -0
- package/lib/plugin/export/_export2Excel.js +145 -0
- package/lib/plugin/export/_export2Excel.ts +166 -0
- package/lib/plugin/export/index.js +268 -0
- package/lib/plugin/export/index.ts +274 -0
- package/lib/plugin/logs/index.js +48 -0
- package/lib/plugin/logs/index.ts +66 -0
- package/lib/plugin/print/index.js +147 -0
- package/lib/plugin/print/index.ts +155 -0
- package/lib/plugin/qiniu/index.js +82 -0
- package/lib/plugin/qiniu/index.ts +88 -0
- package/lib/plugin/screenshot/index.js +14 -0
- package/lib/plugin/screenshot/index.ts +9 -0
- package/lib/plugin/video/index.js +55 -0
- package/lib/plugin/video/index.ts +60 -0
- package/lib/plugin/watermark/index.js +121 -0
- package/lib/plugin/watermark/index.ts +127 -0
- package/lib/plugin/watermark/watermark.js +111 -0
- package/lib/plugin/watermark/watermark.ts +121 -0
- package/lib/ui/data/index.js +54 -0
- package/lib/ui/data/index.ts +51 -0
- package/lib/ui/element-plus/index.js +92 -0
- package/lib/ui/element-plus/index.ts +89 -0
- package/lib/ui/index.js +9 -0
- package/lib/ui/index.ts +6 -0
- package/lib/utils/bem.js +31 -0
- package/lib/utils/bem.ts +36 -0
- package/lib/utils/mock.js +142 -0
- package/lib/utils/mock.ts +151 -0
- package/lib/utils/util.js +403 -0
- package/lib/utils/util.ts +392 -0
- package/lib/utils/validate.js +21 -0
- package/lib/utils/validate.ts +23 -0
- package/lib/version.js +4 -0
- package/lib/version.ts +1 -0
- package/package.json +20 -10
- package/types/index.d.ts +139 -47
- package/types/shims-aliases.d.ts +4 -0
- package/lib/avue.js.map +0 -1
- package/lib/locale/format.js +0 -44
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.export_table_to_excel = export_table_to_excel;
|
|
6
|
+
exports.export_json_to_excel = export_json_to_excel;
|
|
7
|
+
require("./_blob.js");
|
|
8
|
+
const saveAs = window.saveAs;
|
|
9
|
+
const XLSX = window.XLSX;
|
|
10
|
+
function generateArray(table) {
|
|
11
|
+
const out = [];
|
|
12
|
+
const rows = table.querySelectorAll('tr');
|
|
13
|
+
const ranges = [];
|
|
14
|
+
for (let R = 0; R < rows.length; ++R) {
|
|
15
|
+
const outRow = [];
|
|
16
|
+
const row = rows[R];
|
|
17
|
+
const columns = row.querySelectorAll('td');
|
|
18
|
+
for (let C = 0; C < columns.length; ++C) {
|
|
19
|
+
const cell = columns[C];
|
|
20
|
+
let colspan = cell.getAttribute('colspan');
|
|
21
|
+
let rowspan = cell.getAttribute('rowspan');
|
|
22
|
+
let cellValue = cell.innerText;
|
|
23
|
+
if (cellValue !== '' && cellValue == +cellValue)
|
|
24
|
+
cellValue = +cellValue;
|
|
25
|
+
ranges.forEach(function (range) {
|
|
26
|
+
if (R >= range.s.r &&
|
|
27
|
+
R <= range.e.r &&
|
|
28
|
+
outRow.length >= range.s.c &&
|
|
29
|
+
outRow.length <= range.e.c) {
|
|
30
|
+
for (let i = 0; i <= range.e.c - range.s.c; ++i)
|
|
31
|
+
outRow.push(null);
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
if (rowspan || colspan) {
|
|
35
|
+
rowspan = rowspan || 1;
|
|
36
|
+
colspan = colspan || 1;
|
|
37
|
+
ranges.push({
|
|
38
|
+
s: { r: R, c: outRow.length },
|
|
39
|
+
e: { r: R + rowspan - 1, c: outRow.length + colspan - 1 }
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
outRow.push(cellValue !== '' ? cellValue : null);
|
|
43
|
+
if (colspan)
|
|
44
|
+
for (let k = 0; k < colspan - 1; ++k)
|
|
45
|
+
outRow.push(null);
|
|
46
|
+
}
|
|
47
|
+
out.push(outRow);
|
|
48
|
+
}
|
|
49
|
+
return [out, ranges];
|
|
50
|
+
}
|
|
51
|
+
function datenum(v, date1904) {
|
|
52
|
+
if (date1904)
|
|
53
|
+
v += 1462;
|
|
54
|
+
const epoch = Date.parse(v);
|
|
55
|
+
return (epoch - new Date(Date.UTC(1899, 11, 30))) / (24 * 60 * 60 * 1000);
|
|
56
|
+
}
|
|
57
|
+
function sheet_from_array_of_arrays(data) {
|
|
58
|
+
const ws = {};
|
|
59
|
+
const range = { s: { c: 10000000, r: 10000000 }, e: { c: 0, r: 0 } };
|
|
60
|
+
for (let R = 0; R != data.length; ++R) {
|
|
61
|
+
for (let C = 0; C != data[R].length; ++C) {
|
|
62
|
+
if (range.s.r > R)
|
|
63
|
+
range.s.r = R;
|
|
64
|
+
if (range.s.c > C)
|
|
65
|
+
range.s.c = C;
|
|
66
|
+
if (range.e.r < R)
|
|
67
|
+
range.e.r = R;
|
|
68
|
+
if (range.e.c < C)
|
|
69
|
+
range.e.c = C;
|
|
70
|
+
const cell = { v: data[R][C] };
|
|
71
|
+
if (cell.v == null)
|
|
72
|
+
continue;
|
|
73
|
+
const cell_ref = XLSX.utils.encode_cell({ c: C, r: R });
|
|
74
|
+
if (typeof cell.v === 'number')
|
|
75
|
+
cell.t = 'n';
|
|
76
|
+
else if (typeof cell.v === 'boolean')
|
|
77
|
+
cell.t = 'b';
|
|
78
|
+
else if (cell.v instanceof Date) {
|
|
79
|
+
cell.t = 'n';
|
|
80
|
+
cell.z = XLSX.SSF._table[14];
|
|
81
|
+
cell.v = datenum(cell.v, false);
|
|
82
|
+
}
|
|
83
|
+
else
|
|
84
|
+
cell.t = 's';
|
|
85
|
+
ws[cell_ref] = cell;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
if (range.s.c < 10000000)
|
|
89
|
+
ws['!ref'] = XLSX.utils.encode_range(range);
|
|
90
|
+
return ws;
|
|
91
|
+
}
|
|
92
|
+
function Workbook() {
|
|
93
|
+
if (!(this instanceof Workbook))
|
|
94
|
+
return new Workbook();
|
|
95
|
+
this.SheetNames = [];
|
|
96
|
+
this.Sheets = {};
|
|
97
|
+
}
|
|
98
|
+
function s2ab(s) {
|
|
99
|
+
const buf = new ArrayBuffer(s.length);
|
|
100
|
+
const view = new Uint8Array(buf);
|
|
101
|
+
for (let i = 0; i != s.length; ++i)
|
|
102
|
+
view[i] = s.charCodeAt(i) & 0xff;
|
|
103
|
+
return buf;
|
|
104
|
+
}
|
|
105
|
+
function export_table_to_excel(id) {
|
|
106
|
+
const theTable = document.getElementById(id);
|
|
107
|
+
const oo = generateArray(theTable);
|
|
108
|
+
const ranges = oo[1];
|
|
109
|
+
const data = oo[0];
|
|
110
|
+
const ws_name = 'SheetJS';
|
|
111
|
+
const wb = new Workbook();
|
|
112
|
+
const ws = sheet_from_array_of_arrays(data);
|
|
113
|
+
ws['!merges'] = ranges;
|
|
114
|
+
wb.SheetNames.push(ws_name);
|
|
115
|
+
wb.Sheets[ws_name] = ws;
|
|
116
|
+
const wbout = XLSX.write(wb, {
|
|
117
|
+
bookType: 'xlsx',
|
|
118
|
+
bookSST: false,
|
|
119
|
+
type: 'binary'
|
|
120
|
+
});
|
|
121
|
+
saveAs(new Blob([s2ab(wbout)], { type: 'application/octet-stream' }), 'test.xlsx');
|
|
122
|
+
}
|
|
123
|
+
function export_json_to_excel(th, jsonData, defaultTitle, options = { merges: [], header: null }) {
|
|
124
|
+
const data = jsonData;
|
|
125
|
+
data.unshift(th);
|
|
126
|
+
if (options.header)
|
|
127
|
+
data.unshift([options.header]);
|
|
128
|
+
const ws_name = 'SheetJS';
|
|
129
|
+
const wb = new Workbook();
|
|
130
|
+
const ws = sheet_from_array_of_arrays(data);
|
|
131
|
+
let { merges = [] } = options;
|
|
132
|
+
if (typeof merges[0] == 'string' && merges.length == 2)
|
|
133
|
+
merges = [merges];
|
|
134
|
+
merges = merges.map((i) => (i instanceof Array ? { s: i[0], e: i[1] } : i));
|
|
135
|
+
ws['!merges'] = merges;
|
|
136
|
+
wb.SheetNames.push(ws_name);
|
|
137
|
+
wb.Sheets[ws_name] = ws;
|
|
138
|
+
const wbout = XLSX.write(wb, {
|
|
139
|
+
bookType: 'xlsx',
|
|
140
|
+
bookSST: false,
|
|
141
|
+
type: 'binary'
|
|
142
|
+
});
|
|
143
|
+
const title = defaultTitle || '列表';
|
|
144
|
+
saveAs(new Blob([s2ab(wbout)], { type: 'application/octet-stream' }), title + '.xlsx');
|
|
145
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
import './_blob';
|
|
5
|
+
|
|
6
|
+
declare global {
|
|
7
|
+
interface Window {
|
|
8
|
+
saveAs: any;
|
|
9
|
+
XLSX: any;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const saveAs = window.saveAs;
|
|
14
|
+
const XLSX = window.XLSX;
|
|
15
|
+
|
|
16
|
+
function generateArray(table: HTMLElement) {
|
|
17
|
+
const out: any[] = [];
|
|
18
|
+
const rows = table.querySelectorAll('tr');
|
|
19
|
+
const ranges: any[] = [];
|
|
20
|
+
for (let R = 0; R < rows.length; ++R) {
|
|
21
|
+
const outRow: any[] = [];
|
|
22
|
+
const row = rows[R];
|
|
23
|
+
const columns = row.querySelectorAll('td');
|
|
24
|
+
for (let C = 0; C < columns.length; ++C) {
|
|
25
|
+
const cell = columns[C] as HTMLElement;
|
|
26
|
+
let colspan: any = cell.getAttribute('colspan');
|
|
27
|
+
let rowspan: any = cell.getAttribute('rowspan');
|
|
28
|
+
let cellValue: any = cell.innerText;
|
|
29
|
+
if (cellValue !== '' && cellValue == +cellValue) cellValue = +cellValue;
|
|
30
|
+
|
|
31
|
+
ranges.forEach(function (range) {
|
|
32
|
+
if (
|
|
33
|
+
R >= range.s.r &&
|
|
34
|
+
R <= range.e.r &&
|
|
35
|
+
outRow.length >= range.s.c &&
|
|
36
|
+
outRow.length <= range.e.c
|
|
37
|
+
) {
|
|
38
|
+
for (let i = 0; i <= range.e.c - range.s.c; ++i) outRow.push(null);
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
if (rowspan || colspan) {
|
|
43
|
+
rowspan = rowspan || 1;
|
|
44
|
+
colspan = colspan || 1;
|
|
45
|
+
ranges.push({
|
|
46
|
+
s: { r: R, c: outRow.length },
|
|
47
|
+
e: { r: R + rowspan - 1, c: outRow.length + colspan - 1 }
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
outRow.push(cellValue !== '' ? cellValue : null);
|
|
52
|
+
|
|
53
|
+
if (colspan) for (let k = 0; k < colspan - 1; ++k) outRow.push(null);
|
|
54
|
+
}
|
|
55
|
+
out.push(outRow);
|
|
56
|
+
}
|
|
57
|
+
return [out, ranges];
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function datenum(v: any, date1904: any) {
|
|
61
|
+
if (date1904) v += 1462;
|
|
62
|
+
const epoch = Date.parse(v);
|
|
63
|
+
return (epoch - new Date(Date.UTC(1899, 11, 30)) as any) / (24 * 60 * 60 * 1000);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function sheet_from_array_of_arrays(data: any[][]) {
|
|
67
|
+
const ws: Record<string, any> = {};
|
|
68
|
+
const range = { s: { c: 10000000, r: 10000000 }, e: { c: 0, r: 0 } };
|
|
69
|
+
for (let R = 0; R != data.length; ++R) {
|
|
70
|
+
for (let C = 0; C != data[R].length; ++C) {
|
|
71
|
+
if (range.s.r > R) range.s.r = R;
|
|
72
|
+
if (range.s.c > C) range.s.c = C;
|
|
73
|
+
if (range.e.r < R) range.e.r = R;
|
|
74
|
+
if (range.e.c < C) range.e.c = C;
|
|
75
|
+
const cell: any = { v: data[R][C] };
|
|
76
|
+
if (cell.v == null) continue;
|
|
77
|
+
const cell_ref = XLSX.utils.encode_cell({ c: C, r: R });
|
|
78
|
+
|
|
79
|
+
if (typeof cell.v === 'number') cell.t = 'n';
|
|
80
|
+
else if (typeof cell.v === 'boolean') cell.t = 'b';
|
|
81
|
+
else if (cell.v instanceof Date) {
|
|
82
|
+
cell.t = 'n';
|
|
83
|
+
cell.z = XLSX.SSF._table[14];
|
|
84
|
+
cell.v = datenum(cell.v, false);
|
|
85
|
+
} else cell.t = 's';
|
|
86
|
+
|
|
87
|
+
ws[cell_ref] = cell;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
if (range.s.c < 10000000) ws['!ref'] = XLSX.utils.encode_range(range);
|
|
91
|
+
return ws;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function Workbook(this: any) {
|
|
95
|
+
if (!(this instanceof Workbook)) return new (Workbook as any)();
|
|
96
|
+
this.SheetNames = [];
|
|
97
|
+
this.Sheets = {};
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function s2ab(s: string) {
|
|
101
|
+
const buf = new ArrayBuffer(s.length);
|
|
102
|
+
const view = new Uint8Array(buf);
|
|
103
|
+
for (let i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xff;
|
|
104
|
+
return buf;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export function export_table_to_excel(id: string) {
|
|
108
|
+
const theTable = document.getElementById(id)!;
|
|
109
|
+
const oo = generateArray(theTable);
|
|
110
|
+
const ranges = oo[1];
|
|
111
|
+
const data = oo[0];
|
|
112
|
+
const ws_name = 'SheetJS';
|
|
113
|
+
|
|
114
|
+
const wb: any = new (Workbook as any)();
|
|
115
|
+
const ws = sheet_from_array_of_arrays(data);
|
|
116
|
+
|
|
117
|
+
ws['!merges'] = ranges;
|
|
118
|
+
|
|
119
|
+
wb.SheetNames.push(ws_name);
|
|
120
|
+
wb.Sheets[ws_name] = ws;
|
|
121
|
+
|
|
122
|
+
const wbout = XLSX.write(wb, {
|
|
123
|
+
bookType: 'xlsx',
|
|
124
|
+
bookSST: false,
|
|
125
|
+
type: 'binary'
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
saveAs(
|
|
129
|
+
new Blob([s2ab(wbout)], { type: 'application/octet-stream' }),
|
|
130
|
+
'test.xlsx'
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function export_json_to_excel(
|
|
135
|
+
th: any[],
|
|
136
|
+
jsonData: any[][],
|
|
137
|
+
defaultTitle?: string,
|
|
138
|
+
options: { merges?: any[]; header?: string | null } = { merges: [], header: null }
|
|
139
|
+
) {
|
|
140
|
+
const data = jsonData;
|
|
141
|
+
data.unshift(th);
|
|
142
|
+
if (options.header) data.unshift([options.header]);
|
|
143
|
+
const ws_name = 'SheetJS';
|
|
144
|
+
|
|
145
|
+
const wb: any = new (Workbook as any)();
|
|
146
|
+
const ws = sheet_from_array_of_arrays(data);
|
|
147
|
+
|
|
148
|
+
let { merges = [] } = options;
|
|
149
|
+
if (typeof merges[0] == 'string' && merges.length == 2) merges = [merges];
|
|
150
|
+
merges = merges.map((i: any) => (i instanceof Array ? { s: i[0], e: i[1] } : i));
|
|
151
|
+
ws['!merges'] = merges;
|
|
152
|
+
|
|
153
|
+
wb.SheetNames.push(ws_name);
|
|
154
|
+
wb.Sheets[ws_name] = ws;
|
|
155
|
+
|
|
156
|
+
const wbout = XLSX.write(wb, {
|
|
157
|
+
bookType: 'xlsx',
|
|
158
|
+
bookSST: false,
|
|
159
|
+
type: 'binary'
|
|
160
|
+
});
|
|
161
|
+
const title = defaultTitle || '列表';
|
|
162
|
+
saveAs(
|
|
163
|
+
new Blob([s2ab(wbout)], { type: 'application/octet-stream' }),
|
|
164
|
+
title + '.xlsx'
|
|
165
|
+
);
|
|
166
|
+
}
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
|
+
};
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
const util_js_1 = require("../../utils/util.js");
|
|
8
|
+
const packages_js_1 = __importDefault(require("../../core/packages.js"));
|
|
9
|
+
const dayjs_1 = __importDefault(require("dayjs"));
|
|
10
|
+
const XLSX = window.XLSX;
|
|
11
|
+
exports.default = {
|
|
12
|
+
buildHeader(revealList) {
|
|
13
|
+
const excelHeader = [];
|
|
14
|
+
this.getHeader(revealList, excelHeader, 0, 0);
|
|
15
|
+
const max = Math.max(...excelHeader.map((a) => a.length));
|
|
16
|
+
excelHeader
|
|
17
|
+
.filter((e) => e.length < max)
|
|
18
|
+
.forEach((e) => this.pushRowSpanPlaceHolder(e, max - e.length));
|
|
19
|
+
return excelHeader;
|
|
20
|
+
},
|
|
21
|
+
getHeader(headers, excelHeader, deep, perOffset) {
|
|
22
|
+
let offset = 0;
|
|
23
|
+
let cur = excelHeader[deep];
|
|
24
|
+
if (!cur) {
|
|
25
|
+
cur = excelHeader[deep] = [];
|
|
26
|
+
}
|
|
27
|
+
this.pushRowSpanPlaceHolder(cur, perOffset - cur.length);
|
|
28
|
+
for (let i = 0; i < headers.length; i++) {
|
|
29
|
+
const head = headers[i];
|
|
30
|
+
cur.push(head.label);
|
|
31
|
+
if (head.hasOwnProperty('children') && Array.isArray(head.children) && head.children.length > 0) {
|
|
32
|
+
const childOffset = this.getHeader(head.children, excelHeader, deep + 1, cur.length - 1);
|
|
33
|
+
this.pushColSpanPlaceHolder(cur, childOffset - 1);
|
|
34
|
+
offset += childOffset;
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
offset++;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
return offset;
|
|
41
|
+
},
|
|
42
|
+
pushRowSpanPlaceHolder(arr, count) {
|
|
43
|
+
for (let i = 0; i < count; i++) {
|
|
44
|
+
arr.push('!$ROW_SPAN_PLACEHOLDER');
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
pushColSpanPlaceHolder(arr, count) {
|
|
48
|
+
for (let i = 0; i < count; i++) {
|
|
49
|
+
arr.push('!$COL_SPAN_PLACEHOLDER');
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
doMerges(arr) {
|
|
53
|
+
const deep = arr.length;
|
|
54
|
+
const merges = [];
|
|
55
|
+
for (let y = 0; y < deep; y++) {
|
|
56
|
+
const row = arr[y];
|
|
57
|
+
let colSpan = 0;
|
|
58
|
+
for (let x = 0; x < row.length; x++) {
|
|
59
|
+
if (row[x] === '!$COL_SPAN_PLACEHOLDER') {
|
|
60
|
+
row[x] = undefined;
|
|
61
|
+
if (x + 1 === row.length) {
|
|
62
|
+
merges.push({ s: { r: y, c: x - colSpan - 1 }, e: { r: y, c: x } });
|
|
63
|
+
}
|
|
64
|
+
colSpan++;
|
|
65
|
+
}
|
|
66
|
+
else if (colSpan > 0 && x > colSpan) {
|
|
67
|
+
merges.push({ s: { r: y, c: x - colSpan - 1 }, e: { r: y, c: x - 1 } });
|
|
68
|
+
colSpan = 0;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
colSpan = 0;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
const colLength = arr[0].length;
|
|
76
|
+
for (let x = 0; x < colLength; x++) {
|
|
77
|
+
let rowSpan = 0;
|
|
78
|
+
for (let y = 0; y < deep; y++) {
|
|
79
|
+
if (arr[y][x] === '!$ROW_SPAN_PLACEHOLDER') {
|
|
80
|
+
arr[y][x] = undefined;
|
|
81
|
+
if (y + 1 === deep) {
|
|
82
|
+
merges.push({ s: { r: y - rowSpan, c: x }, e: { r: y, c: x } });
|
|
83
|
+
}
|
|
84
|
+
rowSpan++;
|
|
85
|
+
}
|
|
86
|
+
else if (rowSpan > 0 && y > rowSpan) {
|
|
87
|
+
merges.push({ s: { r: y - rowSpan - 1, c: x }, e: { r: y - 1, c: x } });
|
|
88
|
+
rowSpan = 0;
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
rowSpan = 0;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
return merges;
|
|
96
|
+
},
|
|
97
|
+
aoa_to_sheet(data, headerRows) {
|
|
98
|
+
const ws = {};
|
|
99
|
+
const range = { s: { c: 10000000, r: 10000000 }, e: { c: 0, r: 0 } };
|
|
100
|
+
for (let R = 0; R !== data.length; ++R) {
|
|
101
|
+
for (let C = 0; C !== data[R].length; ++C) {
|
|
102
|
+
if (range.s.r > R) {
|
|
103
|
+
range.s.r = R;
|
|
104
|
+
}
|
|
105
|
+
if (range.s.c > C) {
|
|
106
|
+
range.s.c = C;
|
|
107
|
+
}
|
|
108
|
+
if (range.e.r < R) {
|
|
109
|
+
range.e.r = R;
|
|
110
|
+
}
|
|
111
|
+
if (range.e.c < C) {
|
|
112
|
+
range.e.c = C;
|
|
113
|
+
}
|
|
114
|
+
const cell = {
|
|
115
|
+
v: (0, util_js_1.validData)(data[R][C], ''),
|
|
116
|
+
s: {
|
|
117
|
+
font: { name: '宋体', sz: 11, color: { auto: 1, rgb: '000000' }, bold: true },
|
|
118
|
+
alignment: {
|
|
119
|
+
wrapText: 1,
|
|
120
|
+
horizontal: 'center',
|
|
121
|
+
vertical: 'center',
|
|
122
|
+
indent: 0
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
if (R < headerRows) {
|
|
127
|
+
cell.s.border = {
|
|
128
|
+
top: { style: 'thin', color: { rgb: 'EBEEF5' } },
|
|
129
|
+
left: { style: 'thin', color: { rgb: 'EBEEF5' } },
|
|
130
|
+
bottom: { style: 'thin', color: { rgb: 'EBEEF5' } },
|
|
131
|
+
right: { style: 'thin', color: { rgb: 'EBEEF5' } }
|
|
132
|
+
};
|
|
133
|
+
cell.s.fill = {
|
|
134
|
+
patternType: 'solid',
|
|
135
|
+
fgColor: { theme: 3, tint: 0.3999755851924192, rgb: 'F5F7FA' },
|
|
136
|
+
bgColor: { theme: 7, tint: 0.3999755851924192, rgb: 'F5F7FA' }
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
const cell_ref = XLSX.utils.encode_cell({ c: C, r: R });
|
|
140
|
+
if (typeof cell.v === 'number') {
|
|
141
|
+
cell.t = 'n';
|
|
142
|
+
}
|
|
143
|
+
else if (typeof cell.v === 'boolean') {
|
|
144
|
+
cell.t = 'b';
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
147
|
+
cell.t = 's';
|
|
148
|
+
}
|
|
149
|
+
ws[cell_ref] = cell;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
if (range.s.c < 10000000) {
|
|
153
|
+
ws['!ref'] = XLSX.utils.encode_range(range);
|
|
154
|
+
}
|
|
155
|
+
return ws;
|
|
156
|
+
},
|
|
157
|
+
s2ab(s) {
|
|
158
|
+
const buf = new ArrayBuffer(s.length);
|
|
159
|
+
const view = new Uint8Array(buf);
|
|
160
|
+
for (let i = 0; i !== s.length; ++i) {
|
|
161
|
+
view[i] = s.charCodeAt(i) & 0xff;
|
|
162
|
+
}
|
|
163
|
+
return buf;
|
|
164
|
+
},
|
|
165
|
+
excel(params) {
|
|
166
|
+
if (!window.XLSX) {
|
|
167
|
+
packages_js_1.default.logs('xlsx');
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
return new Promise((resolve) => {
|
|
171
|
+
const _params = {
|
|
172
|
+
prop: []
|
|
173
|
+
};
|
|
174
|
+
_params.header = this.buildHeader(params.columns);
|
|
175
|
+
_params.title = params.title || (0, dayjs_1.default)().format('YYYY-MM-DD HH:mm:ss');
|
|
176
|
+
const callback = (list) => {
|
|
177
|
+
list.forEach((ele) => {
|
|
178
|
+
if (ele.children && ele.children instanceof Array) {
|
|
179
|
+
callback(ele.children);
|
|
180
|
+
}
|
|
181
|
+
else {
|
|
182
|
+
_params.prop.push(ele.prop);
|
|
183
|
+
}
|
|
184
|
+
});
|
|
185
|
+
};
|
|
186
|
+
callback(params.columns);
|
|
187
|
+
_params.data = params.data.map((row) => _params.prop.map((prop) => {
|
|
188
|
+
let data = row[prop];
|
|
189
|
+
if ((0, util_js_1.isJson)(data))
|
|
190
|
+
data = JSON.stringify(data);
|
|
191
|
+
return data;
|
|
192
|
+
}));
|
|
193
|
+
const headerRows = _params.header.length;
|
|
194
|
+
_params.header.push(..._params.data, []);
|
|
195
|
+
const merges = this.doMerges(_params.header);
|
|
196
|
+
const ws = this.aoa_to_sheet(_params.header, headerRows);
|
|
197
|
+
ws['!merges'] = merges;
|
|
198
|
+
ws['!freeze'] = {
|
|
199
|
+
xSplit: '1',
|
|
200
|
+
ySplit: '' + headerRows,
|
|
201
|
+
topLeftCell: 'B' + (headerRows + 1),
|
|
202
|
+
activePane: 'bottomRight',
|
|
203
|
+
state: 'frozen'
|
|
204
|
+
};
|
|
205
|
+
ws['!cols'] = [{ wpx: 165 }];
|
|
206
|
+
const workbook = {
|
|
207
|
+
SheetNames: ['Sheet1'],
|
|
208
|
+
Sheets: {}
|
|
209
|
+
};
|
|
210
|
+
workbook.Sheets.Sheet1 = ws;
|
|
211
|
+
const wopts = {
|
|
212
|
+
bookType: 'xlsx',
|
|
213
|
+
bookSST: false,
|
|
214
|
+
type: 'binary',
|
|
215
|
+
cellStyles: true
|
|
216
|
+
};
|
|
217
|
+
const wbout = XLSX.write(workbook, wopts);
|
|
218
|
+
const blob = new Blob([this.s2ab(wbout)], { type: 'application/octet-stream' });
|
|
219
|
+
(0, util_js_1.downFile)(blob, _params.title + '.xlsx');
|
|
220
|
+
resolve();
|
|
221
|
+
});
|
|
222
|
+
},
|
|
223
|
+
xlsx(file) {
|
|
224
|
+
if (!window.saveAs || !window.XLSX) {
|
|
225
|
+
packages_js_1.default.logs('file-saver');
|
|
226
|
+
packages_js_1.default.logs('xlsx');
|
|
227
|
+
return;
|
|
228
|
+
}
|
|
229
|
+
const xlsx = window.XLSX;
|
|
230
|
+
return new Promise((resolve) => {
|
|
231
|
+
const reader = new FileReader();
|
|
232
|
+
const fixdata = (data) => {
|
|
233
|
+
let o = '';
|
|
234
|
+
let l = 0;
|
|
235
|
+
const w = 10240;
|
|
236
|
+
for (; l < data.byteLength / w; ++l) {
|
|
237
|
+
o += String.fromCharCode.apply(null, Array.from(new Uint8Array(data.slice(l * w, l * w + w))));
|
|
238
|
+
}
|
|
239
|
+
o += String.fromCharCode.apply(null, Array.from(new Uint8Array(data.slice(l * w))));
|
|
240
|
+
return o;
|
|
241
|
+
};
|
|
242
|
+
const getHeaderRow = (sheet) => {
|
|
243
|
+
const headers = [];
|
|
244
|
+
const range = xlsx.utils.decode_range(sheet['!ref']);
|
|
245
|
+
const R = range.s.r;
|
|
246
|
+
for (let C = range.s.c; C <= range.e.c; ++C) {
|
|
247
|
+
const cell = sheet[xlsx.utils.encode_cell({ c: C, r: R })];
|
|
248
|
+
let hdr = 'UNKNOWN ' + C;
|
|
249
|
+
if (cell && cell.t)
|
|
250
|
+
hdr = xlsx.utils.format_cell(cell);
|
|
251
|
+
headers.push(hdr);
|
|
252
|
+
}
|
|
253
|
+
return headers;
|
|
254
|
+
};
|
|
255
|
+
reader.onload = (e) => {
|
|
256
|
+
const data = e.target.result;
|
|
257
|
+
const fixedData = fixdata(data);
|
|
258
|
+
const workbook = xlsx.read(btoa(fixedData), { type: 'base64' });
|
|
259
|
+
const firstSheetName = workbook.SheetNames[0];
|
|
260
|
+
const worksheet = workbook.Sheets[firstSheetName];
|
|
261
|
+
const header = getHeaderRow(worksheet);
|
|
262
|
+
const results = xlsx.utils.sheet_to_json(worksheet);
|
|
263
|
+
resolve({ header, results });
|
|
264
|
+
};
|
|
265
|
+
reader.readAsArrayBuffer(file);
|
|
266
|
+
});
|
|
267
|
+
}
|
|
268
|
+
};
|