@univerjs-pro/exchange-client 0.5.0-nightly.202411121606 → 0.5.0-nightly.202411141606

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.
Files changed (54) hide show
  1. package/lib/cjs/facade.js +1 -1
  2. package/lib/cjs/index.js +2 -2
  3. package/lib/cjs/locale/en-US.js +1 -1
  4. package/lib/cjs/locale/fa-IR.js +1 -1
  5. package/lib/cjs/locale/ru-RU.js +1 -1
  6. package/lib/cjs/locale/vi-VN.js +1 -1
  7. package/lib/cjs/locale/zh-CN.js +1 -1
  8. package/lib/cjs/locale/zh-TW.js +1 -1
  9. package/lib/es/facade.js +1 -1
  10. package/lib/es/index.js +2 -2
  11. package/lib/es/locale/en-US.js +1 -1
  12. package/lib/es/locale/fa-IR.js +1 -1
  13. package/lib/es/locale/ru-RU.js +1 -1
  14. package/lib/es/locale/vi-VN.js +1 -1
  15. package/lib/es/locale/zh-CN.js +1 -1
  16. package/lib/es/locale/zh-TW.js +1 -1
  17. package/lib/types/controllers/config.schema.d.ts +16 -0
  18. package/lib/types/controllers/exchange.controller.d.ts +8 -0
  19. package/lib/types/facade/f-univer.d.ts +36 -0
  20. package/lib/types/facade/index.d.ts +1 -0
  21. package/lib/types/index.d.ts +10 -483
  22. package/lib/types/locale/en-US.d.ts +3 -0
  23. package/lib/types/locale/fa-IR.d.ts +3 -0
  24. package/lib/types/locale/ru-RU.d.ts +3 -0
  25. package/lib/types/locale/vi-VN.d.ts +3 -0
  26. package/lib/types/locale/zh-CN.d.ts +21 -0
  27. package/lib/types/locale/zh-TW.d.ts +3 -0
  28. package/lib/types/plugin.d.ts +11 -0
  29. package/lib/types/services/__tests__/snapshot.spec.d.ts +1 -0
  30. package/lib/types/services/exchange.service.d.ts +87 -0
  31. package/lib/types/services/operate.service.d.ts +121 -0
  32. package/lib/types/services/request.service.d.ts +107 -0
  33. package/lib/types/services/upload-notification.service.d.ts +52 -0
  34. package/lib/types/services/utils/snapshot.d.ts +76 -0
  35. package/lib/types/services/utils/tool.d.ts +19 -0
  36. package/lib/types/views/UploadNotificationContainer.d.ts +2 -0
  37. package/lib/types/views/link-list/LinkList.d.ts +6 -0
  38. package/lib/types/views/upload-again/UploadAgain.d.ts +2 -0
  39. package/lib/types/views/upload-button/UploadButton.d.ts +7 -0
  40. package/lib/types/views/upload-error/UploadError.d.ts +2 -0
  41. package/lib/types/views/upload-notification/UploadNotification.d.ts +2 -0
  42. package/lib/types/views/upload-success/UploadSuccess.d.ts +5 -0
  43. package/lib/types/views/uploading/Uploading.d.ts +2 -0
  44. package/lib/types/views/uploading/upload-cancel/UploadCancel.d.ts +2 -0
  45. package/lib/types/views/uploading/upload-progress/UploadProgress.d.ts +5 -0
  46. package/lib/umd/facade.js +1 -1
  47. package/lib/umd/index.js +2 -2
  48. package/lib/umd/locale/en-US.js +1 -1
  49. package/lib/umd/locale/fa-IR.js +1 -1
  50. package/lib/umd/locale/ru-RU.js +1 -1
  51. package/lib/umd/locale/vi-VN.js +1 -1
  52. package/lib/umd/locale/zh-CN.js +1 -1
  53. package/lib/umd/locale/zh-TW.js +1 -1
  54. package/package.json +6 -6
@@ -0,0 +1,121 @@
1
+ import { IDisposable, Disposable, ILogService, IUniverInstanceService, LocaleService, UniverInstanceType } from '@univerjs/core';
2
+ import { Observable } from 'rxjs';
3
+ import { ExchangeService } from './exchange.service';
4
+ import { UploadNotificationService } from './upload-notification.service';
5
+ import { UniverType } from '@univerjs/protocol';
6
+ import { IMessageService } from '@univerjs/ui';
7
+ export interface IExchangeOperateService {
8
+ interrupt(): void;
9
+ /**
10
+ * Upload file to server, get unitId and open unit
11
+ * @param file
12
+ */
13
+ importXLSXToUnitId(): Promise<string | undefined>;
14
+ /**
15
+ * Upload xlsx file to server, get snapshot and refresh current sheet
16
+ * @param file
17
+ */
18
+ importXLSXToSnapshot(): Promise<void>;
19
+ /**
20
+ * Export xlsx file by unitId
21
+ * @returns
22
+ */
23
+ exportXLSXByUnitId(unitId?: string, unitName?: string, unitType?: UniverInstanceType): Promise<void>;
24
+ /**
25
+ * Export xlsx file by snapshot
26
+ * @returns
27
+ */
28
+ exportXLSXBySnapshot(): Promise<void>;
29
+ /**
30
+ * Upload file to server, get unitId and open unit
31
+ * @param file
32
+ */
33
+ importDOCXToUnitId(): Promise<string | undefined>;
34
+ /**
35
+ * Upload docx file to server, get snapshot and refresh current doc
36
+ * @param file
37
+ */
38
+ importDOCXToSnapshot(): Promise<void>;
39
+ /**
40
+ * Export docx file by unitId
41
+ * @returns
42
+ */
43
+ exportDOCXByUnitId(unitId?: string, unitName?: string, unitType?: UniverType): Promise<void>;
44
+ /**
45
+ * Export docx file by snapshot
46
+ * @returns
47
+ */
48
+ exportDOCXBySnapshot(): Promise<void>;
49
+ /**
50
+ * Upload file, supports multiple types
51
+ * @param file
52
+ */
53
+ uploadFileToUnitId(types: UniverType[]): Promise<{
54
+ unitId: string;
55
+ type: UniverType;
56
+ } | undefined>;
57
+ /**
58
+ * Customize the imported Unit URL format according to the needs of your own scene
59
+ * @param getLink
60
+ */
61
+ registerLink(getLink: (unitId: string, univerType: UniverInstanceType) => string): void;
62
+ /**
63
+ * Observable of upload progress
64
+ */
65
+ progress$: Observable<IUploadProgress>;
66
+ }
67
+ export interface IUploadProgress {
68
+ /** Task that already completed. */
69
+ done: number;
70
+ /** The total number of tasks need to execute. */
71
+ count: number;
72
+ }
73
+ export declare const IExchangeOperateService: import('@wendellhu/redi').IdentifierDecorator<IExchangeOperateService>;
74
+ export declare class ExchangeOperateService extends Disposable implements IExchangeOperateService, IDisposable {
75
+ private _univerInstanceService;
76
+ private readonly _messageService;
77
+ private readonly _localeService;
78
+ private readonly _exchangeService;
79
+ private readonly _uploadNotificationService;
80
+ protected readonly _logService: ILogService;
81
+ private _interrupted;
82
+ private readonly _progress$;
83
+ readonly progress$: Observable<IUploadProgress>;
84
+ private _totalUploadTaskCount;
85
+ private _doneUploadTaskCount;
86
+ constructor(_univerInstanceService: IUniverInstanceService, _messageService: IMessageService, _localeService: LocaleService, _exchangeService: ExchangeService, _uploadNotificationService: UploadNotificationService, _logService: ILogService);
87
+ interrupt(): void;
88
+ uploadFileToUnitId(types: UniverType[]): Promise<{
89
+ unitId: string;
90
+ type: UniverType;
91
+ } | undefined>;
92
+ importDOCXToUnitId(): Promise<string | undefined>;
93
+ importDOCXToSnapshot(): Promise<void>;
94
+ exportDOCXByUnitId(unitId?: string, unitName?: string, unitType?: UniverInstanceType): Promise<void>;
95
+ exportDOCXBySnapshot(): Promise<void>;
96
+ importXLSXToUnitId(): Promise<string | undefined>;
97
+ importXLSXToSnapshot(): Promise<void>;
98
+ exportXLSXByUnitId(unitId?: string, unitName?: string): Promise<void>;
99
+ exportXLSXBySnapshot(): Promise<void>;
100
+ registerLink(getLink: (unitId: string, univerType: UniverInstanceType) => string): void;
101
+ private _importFileToUnitId;
102
+ private _getUnitID;
103
+ private _getUnitName;
104
+ private _getUnitJson;
105
+ /**
106
+ * Get unit link /?unit={unitId}&type=2
107
+ * @param unitId
108
+ * @param type
109
+ * @returns
110
+ */
111
+ private _getLinkByUnitId;
112
+ private _refresh;
113
+ private _showNetworkError;
114
+ private _showDownloadMessage;
115
+ private _showUploadMessage;
116
+ private _emitProgress;
117
+ private _addTotalCount;
118
+ private _addDoneTask;
119
+ private _completeProgress;
120
+ private _clearProgress;
121
+ }
@@ -0,0 +1,107 @@
1
+ import { IDisposable, IConfigService } from '@univerjs/core';
2
+ import { IError, UniverType } from '@univerjs/protocol';
3
+ import { ISheetBlockJson, ISnapshotJson } from './utils/snapshot';
4
+ import { HTTPService } from '@univerjs/network';
5
+ /** @deprecated Will be removed in the 0.2.19 release */
6
+ export declare const EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY = "EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY";
7
+ /** @deprecated Will be removed in the 0.2.19 release */
8
+ export declare const EXCHANGE_IMPORT_SERVER_URL_KEY = "EXCHANGE_IMPORT_SERVER_URL_KEY";
9
+ /** @deprecated Will be removed in the 0.2.19 release */
10
+ export declare const EXCHANGE_EXPORT_SERVER_URL_KEY = "EXCHANGE_EXPORT_SERVER_URL_KEY";
11
+ /** @deprecated Will be removed in the 0.2.19 release */
12
+ export declare const EXCHANGE_GET_TASK_SERVER_URL_KEY = "EXCHANGE_GET_TASK_SERVER_URL_KEY";
13
+ /** @deprecated Will be removed in the 0.2.19 release */
14
+ export declare const EXCHANGE_SIGN_URL_SERVER_URL_KEY = "EXCHANGE_SIGN_URL_SERVER_URL_KEY";
15
+ export interface IFileUploadResponse {
16
+ FileId: string;
17
+ error: IError;
18
+ }
19
+ export declare enum ImportOutputType {
20
+ UNDEFINED = 0,
21
+ /** UNIT - Import to univer unit, unit is store in the database */
22
+ UNIT = 1,
23
+ /** JSON - Import and convert to a json file which represents a univer unit, not store in the database */
24
+ JSON = 2,
25
+ UNRECOGNIZED = -1
26
+ }
27
+ export interface IImportRequest {
28
+ fileID: string;
29
+ type: UniverType;
30
+ outputType: ImportOutputType;
31
+ /** not supported yet */
32
+ fileUrl: string;
33
+ }
34
+ export interface IImportResponse {
35
+ taskID: string;
36
+ error: IError;
37
+ }
38
+ export interface IExportRequest {
39
+ /** if unitID is specified, the input is the unit in the database */
40
+ unitID: string;
41
+ /** if jsonID is specified, the input is the json file which represents a univer unit */
42
+ jsonID: string;
43
+ type: UniverType;
44
+ }
45
+ export interface IExportResponse {
46
+ error: IError | undefined;
47
+ taskID: string;
48
+ }
49
+ export interface IGetTaskResponse {
50
+ error: IError | undefined;
51
+ taskID: string;
52
+ status: string;
53
+ import?: IImportTaskResult | undefined;
54
+ export?: IExportTaskResult | undefined;
55
+ }
56
+ export interface IImportTaskResult {
57
+ outputType: ImportOutputType;
58
+ unitID: string;
59
+ jsonID: string;
60
+ }
61
+ export interface IExportTaskResult {
62
+ fileID: string;
63
+ fileUrl: string;
64
+ }
65
+ export interface ISignUrlResponse {
66
+ error: IError | undefined;
67
+ url: string;
68
+ }
69
+ export interface IBindingResponse {
70
+ error: IError;
71
+ }
72
+ export interface ISnapshotJsonResponse {
73
+ snapshot: Partial<ISnapshotJson>;
74
+ sheetBlocks: ISheetBlockJson;
75
+ }
76
+ export interface IRequestService {
77
+ upload(file: File | string): Promise<IFileUploadResponse | undefined>;
78
+ import(importRequest: IImportRequest): Promise<IImportResponse | undefined>;
79
+ export(exportRequest: IExportRequest): Promise<IExportResponse | undefined>;
80
+ getTask(taskID: string): Promise<IGetTaskResponse | undefined>;
81
+ signUrl(fileID: string): Promise<ISignUrlResponse | undefined>;
82
+ }
83
+ export declare const IRequestService: import('@wendellhu/redi').IdentifierDecorator<IRequestService>;
84
+ /**
85
+ * TODO@Dushusir maybe move to ExchangeClientPlugin plugin for reuse
86
+ */
87
+ export declare class RequestService implements IRequestService, IDisposable {
88
+ private readonly _configService;
89
+ private readonly _httpService;
90
+ constructor(_configService: IConfigService, _httpService: HTTPService);
91
+ dispose(): void;
92
+ /**
93
+ * upload file to server
94
+ * @param file
95
+ */
96
+ upload(file: File | string, size?: number, flate?: boolean): Promise<IFileUploadResponse | undefined>;
97
+ import(importRequest: IImportRequest): Promise<IImportResponse | undefined>;
98
+ export(exportRequest: IExportRequest): Promise<IExportResponse | undefined>;
99
+ getTask(taskID: string): Promise<IGetTaskResponse | undefined>;
100
+ signUrl(fileID: string): Promise<ISignUrlResponse | undefined>;
101
+ private _getUploadFileURL;
102
+ private _getImportURL;
103
+ private _getExportURL;
104
+ private _getTaskURL;
105
+ private _getSignURL;
106
+ private _getMaxPollingTime;
107
+ }
@@ -0,0 +1,52 @@
1
+ import { Disposable, IDisposable } from '@univerjs/core';
2
+ import { Observable } from 'rxjs';
3
+ import { UniverType } from '@univerjs/protocol';
4
+ export declare enum UploadNotificationState {
5
+ UPLOADING = 0,
6
+ SUCCESS = 1,
7
+ ERROR = 2
8
+ }
9
+ export interface ILinkList {
10
+ link: string;
11
+ name: string;
12
+ type: UniverType;
13
+ }
14
+ export interface IUploadNotificationService {
15
+ visible$: Observable<boolean>;
16
+ state$: Observable<UploadNotificationState>;
17
+ list$: Observable<ILinkList[]>;
18
+ /**
19
+ * Show upload notification
20
+ */
21
+ show(): void;
22
+ /**
23
+ * Hide upload notification
24
+ */
25
+ hide(): void;
26
+ /**
27
+ * Update upload notification state
28
+ * @param state
29
+ */
30
+ updateState(state: UploadNotificationState): void;
31
+ /**
32
+ * Push link to upload notification
33
+ * @param link
34
+ */
35
+ pushLink(link: ILinkList): void;
36
+ }
37
+ export declare const IUploadNotificationService: import('@wendellhu/redi').IdentifierDecorator<IUploadNotificationService>;
38
+ export declare class UploadNotificationService extends Disposable implements IUploadNotificationService, IDisposable {
39
+ private readonly _visible$;
40
+ private readonly _state$;
41
+ private readonly _list$;
42
+ readonly visible$: Observable<boolean>;
43
+ readonly state$: Observable<UploadNotificationState>;
44
+ readonly list$: Observable<ILinkList[]>;
45
+ private _list;
46
+ constructor();
47
+ dispose(): void;
48
+ show(): void;
49
+ hide(): void;
50
+ updateState(state: UploadNotificationState): void;
51
+ pushLink(link: ILinkList): void;
52
+ }
@@ -0,0 +1,76 @@
1
+ import { IWorkbookData, Nullable } from '@univerjs/core';
2
+ import { ICopyFileMetaRequest, ICopyFileMetaResponse, IDocumentMeta, IFetchMissingChangesetsRequest, IFetchMissingChangesetsResponse, IGetDeserializedSheetBlockResponse, IGetLatestCsReqIdBySidRequest, IGetLatestCsReqIdBySidResponse, IGetResourcesRequest, IGetResourcesResponse, IGetSheetBlockRequest, IGetSheetBlockResponse, IGetUnitOnRevRequest, IGetUnitOnRevResponse, ISaveChangesetRequest, ISaveChangesetResponse, ISaveSheetBlockRequest, ISaveSheetBlockResponse, ISaveSnapshotRequest, ISaveSnapshotResponse, ISheetBlock, ISnapshot, IWorkbookMeta, IWorksheetMeta } from '@univerjs/protocol';
3
+ import { ILogContext, ISnapshotServerService } from '@univerjs-pro/collaboration';
4
+ export interface IWorksheetMetaJson extends Omit<IWorksheetMeta, 'originalMeta'> {
5
+ originalMeta: string;
6
+ }
7
+ export interface IWorkbookMetaJson extends Omit<IWorkbookMeta, 'originalMeta' | 'sheets'> {
8
+ originalMeta: string;
9
+ sheets: {
10
+ [key: string]: Partial<IWorksheetMetaJson>;
11
+ };
12
+ }
13
+ export interface IDocumentMetaJson extends Omit<IDocumentMeta, 'originalMeta'> {
14
+ originalMeta: string;
15
+ }
16
+ export interface ISnapshotJson extends Omit<ISnapshot, 'workbook' | 'doc'> {
17
+ workbook: Partial<IWorkbookMetaJson>;
18
+ doc: Partial<IDocumentMetaJson>;
19
+ }
20
+ export interface ISheetBlockData extends Omit<ISheetBlock, 'data'> {
21
+ data: string;
22
+ }
23
+ export interface ISheetBlockJson {
24
+ [key: string]: Partial<ISheetBlockData>;
25
+ }
26
+ export interface ISnapshotBlockJson {
27
+ snapshot: ISnapshotJson;
28
+ sheetBlocks: ISheetBlockJson;
29
+ }
30
+ export interface ISnapshotBlockJsonResponse {
31
+ snapshot: ISnapshot;
32
+ sheetBlocks: {
33
+ [key: string]: ISheetBlock;
34
+ };
35
+ }
36
+ /**
37
+ * Convert the Uint8Array in the snapshot to a string for easy transmission to the backend
38
+ * @param snapshot
39
+ * @returns
40
+ */
41
+ export declare function transformSnapshotMetaToString(snapshot: ISnapshot): Nullable<ISnapshotJson>;
42
+ /**
43
+ * Convert the Uint8Array in the sheet block to a string for easy transmission to the backend
44
+ * @param sheetBlocks
45
+ * @returns
46
+ */
47
+ export declare function transformSheetBlockMetaToString(sheetBlocks: ISheetBlock[]): ISheetBlockJson;
48
+ /**
49
+ * Convert the workbook data to snapshot data
50
+ * @param workbookData
51
+ * @returns
52
+ */
53
+ export declare function transformWorkbookDataToSnapshotJson(workbookData: IWorkbookData): Promise<ISnapshotBlockJson>;
54
+ /**
55
+ * The server needs to fully implement all interfaces, but when used by the client, use saveSheetBlock to cache the sheet block locally, and use getSheetBlock to obtain the sheet block.
56
+ */
57
+ export declare class ClientSnapshotServerService implements ISnapshotServerService {
58
+ private _sheetBlockCache;
59
+ /** Load snapshot from a database. */
60
+ getUnitOnRev(context: ILogContext, params: IGetUnitOnRevRequest): Promise<IGetUnitOnRevResponse>;
61
+ /** Load sheet block from a database. */
62
+ getSheetBlock(context: ILogContext, params: IGetSheetBlockRequest): Promise<IGetSheetBlockResponse>;
63
+ /** Load deserialized sheet block from a database. */
64
+ getDeserializedSheetBlock(context: ILogContext, params: IGetSheetBlockRequest): Promise<IGetDeserializedSheetBlockResponse>;
65
+ /** Fetch missing changeset */
66
+ fetchMissingChangesets(context: ILogContext, params: IFetchMissingChangesetsRequest): Promise<IFetchMissingChangesetsResponse>;
67
+ getResourcesRequest(context: ILogContext, params: IGetResourcesRequest): Promise<IGetResourcesResponse>;
68
+ /** Save snapshot to a database. */
69
+ saveSnapshot(context: ILogContext, params: ISaveSnapshotRequest): Promise<ISaveSnapshotResponse>;
70
+ /** Save sheet block to a database. */
71
+ saveSheetBlock(context: ILogContext, params: ISaveSheetBlockRequest): Promise<ISaveSheetBlockResponse>;
72
+ /** Save changeset to a database. */
73
+ saveChangeset(context: ILogContext, params: ISaveChangesetRequest): Promise<ISaveChangesetResponse>;
74
+ copyFileMeta(context: ILogContext, params: ICopyFileMetaRequest): Promise<ICopyFileMetaResponse>;
75
+ getLatestCsReqIdBySid(context: ILogContext, params: IGetLatestCsReqIdBySidRequest): Promise<IGetLatestCsReqIdBySidResponse>;
76
+ }
@@ -0,0 +1,19 @@
1
+ import { UniverType } from '@univerjs/protocol';
2
+ export declare function downloadFileByURL(url: string, filename: string, fileExt: string): void;
3
+ /**
4
+ * Triggers a download of a given File object.
5
+ *
6
+ * @param {File} file - The File object to be downloaded.
7
+ */
8
+ export declare function downloadFile(file: File | Blob, filename: string, fileExt: string): void;
9
+ export declare function getUniverTypeByFile(file: File): UniverType.UNIVER_UNKNOWN | UniverType.UNIVER_DOC | UniverType.UNIVER_SHEET | UniverType.UNIVER_SLIDE;
10
+ export declare function getUploadFile(types: UniverType[], multiple?: boolean): Promise<FileList | null>;
11
+ export declare function getFileByURL(url: string): Promise<File | undefined>;
12
+ export declare function getFileNameFromURL(url: string): string | undefined;
13
+ export declare function getTextFromURL(url: string): Promise<string | undefined>;
14
+ export declare function blobToString(blob: Blob): Promise<string>;
15
+ export declare function bufferToFile(buffer: Uint8Array): File;
16
+ export declare function replaceType(path: string, type: string): string;
17
+ export declare function replaceUnitId(path: string, type: string): string;
18
+ export declare function replaceTaskID(path: string, taskID: string): string;
19
+ export declare function replaceFileID(path: string, fileID: string): string;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare function UploadNotificationContainer(): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ import { ILinkList } from '../../services/upload-notification.service';
3
+ export interface ILinkListProps {
4
+ list: ILinkList[];
5
+ }
6
+ export declare function LinkList(props: ILinkListProps): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare function UploadAgain(): React.JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ export interface IUploadButton {
3
+ children?: React.ReactNode;
4
+ className?: string;
5
+ onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
6
+ }
7
+ export declare function UploadButton(props: IUploadButton): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare function UploadError(): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare function UploadNotification(): false | React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export interface IUploadSuccessProps {
3
+ count: number;
4
+ }
5
+ export declare function UploadSuccess(props: IUploadSuccessProps): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare function Uploading(): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare function UploadCancel(): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export interface IUploadProgressProps {
3
+ barColor: string;
4
+ }
5
+ export declare function UploadProgress(props: IUploadProgressProps): React.JSX.Element;
package/lib/umd/facade.js CHANGED
@@ -1 +1 @@
1
- function _0xaac5(_0x164879,_0x5bd9b7){const _0x2891aa=_0x2891();return _0xaac5=function(_0xaac5cd,_0x1e91ce){_0xaac5cd=_0xaac5cd-0x136;let _0x57638d=_0x2891aa[_0xaac5cd];return _0x57638d;},_0xaac5(_0x164879,_0x5bd9b7);}(function(_0x48fa47,_0x492f62){const _0x4c3fae=_0xaac5,_0x504375=_0x48fa47();while(!![]){try{const _0x516ed6=-parseInt(_0x4c3fae(0x156))/0x1*(parseInt(_0x4c3fae(0x13f))/0x2)+-parseInt(_0x4c3fae(0x155))/0x3*(-parseInt(_0x4c3fae(0x137))/0x4)+parseInt(_0x4c3fae(0x146))/0x5*(-parseInt(_0x4c3fae(0x158))/0x6)+-parseInt(_0x4c3fae(0x145))/0x7+parseInt(_0x4c3fae(0x13e))/0x8+-parseInt(_0x4c3fae(0x14d))/0x9*(-parseInt(_0x4c3fae(0x150))/0xa)+-parseInt(_0x4c3fae(0x14a))/0xb;if(_0x516ed6===_0x492f62)break;else _0x504375['push'](_0x504375['shift']());}catch(_0x4ac33c){_0x504375['push'](_0x504375['shift']());}}}(_0x2891,0x38c22),function(_0x5c3f98,_0x3b363e){const _0x3f6d9d=_0xaac5;typeof exports==_0x3f6d9d(0x141)&&typeof module<'u'?_0x3b363e(require('@univerjs/core'),require('@univerjs-pro/exchange-client')):typeof define==_0x3f6d9d(0x14f)&&define[_0x3f6d9d(0x154)]?define([_0x3f6d9d(0x14e),'@univerjs-pro/exchange-client'],_0x3b363e):(_0x5c3f98=typeof globalThis<'u'?globalThis:_0x5c3f98||self,_0x3b363e(_0x5c3f98[_0x3f6d9d(0x149)],_0x5c3f98[_0x3f6d9d(0x13a)]));}(this,function(_0x153577,_0x1cfa67){'use strict';const _0x3db7fd=_0xaac5;var _0x2a9ea3=(_0x37c8de=>(_0x37c8de[_0x37c8de[_0x3db7fd(0x13c)]=0x0]=_0x3db7fd(0x13c),_0x37c8de[_0x37c8de[_0x3db7fd(0x14b)]=0x1]=_0x3db7fd(0x14b),_0x37c8de[_0x37c8de[_0x3db7fd(0x152)]=0x2]='UNIVER_SHEET',_0x37c8de[_0x37c8de[_0x3db7fd(0x136)]=0x3]=_0x3db7fd(0x136),_0x37c8de[_0x37c8de[_0x3db7fd(0x157)]=0x4]=_0x3db7fd(0x157),_0x37c8de[_0x37c8de[_0x3db7fd(0x147)]=-0x1]=_0x3db7fd(0x147),_0x37c8de))(_0x2a9ea3||{});class _0x360fc4 extends _0x153577[_0x3db7fd(0x151)]{async[_0x3db7fd(0x153)](_0x199f34){const _0x37d6f3=_0x3db7fd,_0x289317=this[_0x37d6f3(0x144)]['get'](_0x1cfa67[_0x37d6f3(0x138)]);if(!_0x289317)throw new Error('The\x20exchange\x20service\x20is\x20not\x20available');return _0x289317[_0x37d6f3(0x143)](_0x199f34,_0x2a9ea3[_0x37d6f3(0x152)]);}async[_0x3db7fd(0x13d)](_0x15b534){const _0x3541e4=_0x3db7fd,_0x8a7400=this[_0x3541e4(0x144)][_0x3541e4(0x148)](_0x1cfa67['IExchangeService']);if(!_0x8a7400)throw new Error('The\x20exchange\x20service\x20is\x20not\x20available');return _0x8a7400['importXLSXToSnapshot'](_0x15b534);}async[_0x3db7fd(0x142)](_0x1b40a2){const _0x5bdd24=_0x3db7fd,_0x27a7af=this[_0x5bdd24(0x144)]['get'](_0x1cfa67[_0x5bdd24(0x138)]);if(!_0x27a7af)throw new Error(_0x5bdd24(0x139));return _0x27a7af[_0x5bdd24(0x142)](_0x1b40a2);}async['exportXLSXBySnapshot'](_0x4f7708){const _0x4194af=_0x3db7fd,_0x161fb5=this[_0x4194af(0x144)]['get'](_0x1cfa67[_0x4194af(0x138)]);if(!_0x161fb5)throw new Error('The\x20exchange\x20service\x20is\x20not\x20available');return _0x161fb5[_0x4194af(0x13b)](_0x4f7708);}async['importDOCXToUnitId'](_0x1850f0){const _0x44935e=_0x3db7fd,_0x109733=this[_0x44935e(0x144)][_0x44935e(0x148)](_0x1cfa67['IExchangeService']);if(!_0x109733)throw new Error(_0x44935e(0x139));return _0x109733[_0x44935e(0x143)](_0x1850f0,_0x2a9ea3[_0x44935e(0x14b)]);}async[_0x3db7fd(0x14c)](_0x54fe24){const _0x1bd2bf=_0x3db7fd,_0x1f5369=this[_0x1bd2bf(0x144)][_0x1bd2bf(0x148)](_0x1cfa67[_0x1bd2bf(0x138)]);if(!_0x1f5369)throw new Error(_0x1bd2bf(0x139));return _0x1f5369[_0x1bd2bf(0x14c)](_0x54fe24);}}_0x153577[_0x3db7fd(0x151)][_0x3db7fd(0x140)](_0x360fc4);}));function _0x2891(){const _0x32bf2b=['amd','33uUiRYi','1nPtkOi','UNIVER_PROJECT','1668OsjCef','UNIVER_SLIDE','93964XFumvF','IExchangeService','The\x20exchange\x20service\x20is\x20not\x20available','UniverExchangeClient','exportXLSXBySnapshot','UNIVER_UNKNOWN','importXLSXToSnapshot','3228944SdffSe','480954cUTEju','extend','object','exportXLSXByUnitId','importFileToUnitId','_injector','349503IklDst','1135zWcdpa','UNRECOGNIZED','get','UniverCore','956604COIJLF','UNIVER_DOC','importDOCXToSnapshot','98451oAzaGv','@univerjs/core','function','10pyNETB','FUniver','UNIVER_SHEET','importXLSXToUnitId'];_0x2891=function(){return _0x32bf2b;};return _0x2891();}
1
+ function _0x19aa(){const _0x14b29d=['UNIVER_PROJECT','The\x20exchange\x20service\x20is\x20not\x20available','UNIVER_UNKNOWN','21738Umqpit','UNIVER_SHEET','UniverProExchangeClient','FUniver','@univerjs-pro/exchange-client','function','get','98484utgROD','importDOCXToSnapshot','16Oyqljw','_injector','importXLSXToSnapshot','object','exportXLSXByUnitId','@univerjs/core','IExchangeService','importFileToUnitId','UNRECOGNIZED','UNIVER_DOC','exportXLSXBySnapshot','963440jZxhNc','10130MycSjJ','3378438jsbZWC','UNIVER_SLIDE','231APkHFV','importXLSXToUnitId','9678FzLazZ','extend','468750yKKyGS'];_0x19aa=function(){return _0x14b29d;};return _0x19aa();}function _0x3c3b(_0x1114d0,_0x5551e4){const _0x19aa91=_0x19aa();return _0x3c3b=function(_0x3c3b83,_0x4727cc){_0x3c3b83=_0x3c3b83-0xfe;let _0x3b3e02=_0x19aa91[_0x3c3b83];return _0x3b3e02;},_0x3c3b(_0x1114d0,_0x5551e4);}(function(_0x5cf0a8,_0x10892b){const _0x322ef6=_0x3c3b,_0xa22fe3=_0x5cf0a8();while(!![]){try{const _0x63be26=parseInt(_0x322ef6(0x10b))/0x1+-parseInt(_0x322ef6(0x107))/0x2+-parseInt(_0x322ef6(0x112))/0x3*(-parseInt(_0x322ef6(0x114))/0x4)+parseInt(_0x322ef6(0x100))/0x5+-parseInt(_0x322ef6(0x105))/0x6*(parseInt(_0x322ef6(0x103))/0x7)+-parseInt(_0x322ef6(0xff))/0x8+parseInt(_0x322ef6(0x101))/0x9;if(_0x63be26===_0x10892b)break;else _0xa22fe3['push'](_0xa22fe3['shift']());}catch(_0x158ac0){_0xa22fe3['push'](_0xa22fe3['shift']());}}}(_0x19aa,0x1de38),function(_0xd4c2e3,_0x31f274){const _0x1892b3=_0x3c3b;typeof exports==_0x1892b3(0x117)&&typeof module<'u'?_0x31f274(require('@univerjs/core'),require('@univerjs-pro/exchange-client')):typeof define==_0x1892b3(0x110)&&define['amd']?define([_0x1892b3(0x119),_0x1892b3(0x10f)],_0x31f274):(_0xd4c2e3=typeof globalThis<'u'?globalThis:_0xd4c2e3||self,_0x31f274(_0xd4c2e3['UniverCore'],_0xd4c2e3[_0x1892b3(0x10d)]));}(this,function(_0x80c97e,_0x234e15){'use strict';const _0x38fdd4=_0x3c3b;var _0x5dec81=(_0x4dd3e4=>(_0x4dd3e4[_0x4dd3e4[_0x38fdd4(0x10a)]=0x0]=_0x38fdd4(0x10a),_0x4dd3e4[_0x4dd3e4[_0x38fdd4(0x11d)]=0x1]='UNIVER_DOC',_0x4dd3e4[_0x4dd3e4[_0x38fdd4(0x10c)]=0x2]='UNIVER_SHEET',_0x4dd3e4[_0x4dd3e4[_0x38fdd4(0x102)]=0x3]=_0x38fdd4(0x102),_0x4dd3e4[_0x4dd3e4[_0x38fdd4(0x108)]=0x4]='UNIVER_PROJECT',_0x4dd3e4[_0x4dd3e4['UNRECOGNIZED']=-0x1]=_0x38fdd4(0x11c),_0x4dd3e4))(_0x5dec81||{});class _0x4c02db extends _0x80c97e[_0x38fdd4(0x10e)]{async[_0x38fdd4(0x104)](_0x3d0d88){const _0x481ca9=_0x38fdd4,_0x24e57b=this[_0x481ca9(0x115)]['get'](_0x234e15[_0x481ca9(0x11a)]);if(!_0x24e57b)throw new Error(_0x481ca9(0x109));return _0x24e57b[_0x481ca9(0x11b)](_0x3d0d88,_0x5dec81[_0x481ca9(0x10c)]);}async[_0x38fdd4(0x116)](_0x13d599){const _0x41a8a6=_0x38fdd4,_0x3521f0=this[_0x41a8a6(0x115)][_0x41a8a6(0x111)](_0x234e15['IExchangeService']);if(!_0x3521f0)throw new Error('The\x20exchange\x20service\x20is\x20not\x20available');return _0x3521f0['importXLSXToSnapshot'](_0x13d599);}async[_0x38fdd4(0x118)](_0x426040){const _0xd72270=_0x38fdd4,_0x820e26=this[_0xd72270(0x115)][_0xd72270(0x111)](_0x234e15['IExchangeService']);if(!_0x820e26)throw new Error('The\x20exchange\x20service\x20is\x20not\x20available');return _0x820e26[_0xd72270(0x118)](_0x426040);}async[_0x38fdd4(0xfe)](_0x4f874a){const _0x5d6788=_0x38fdd4,_0x55fb44=this[_0x5d6788(0x115)][_0x5d6788(0x111)](_0x234e15['IExchangeService']);if(!_0x55fb44)throw new Error(_0x5d6788(0x109));return _0x55fb44[_0x5d6788(0xfe)](_0x4f874a);}async['importDOCXToUnitId'](_0x2c55ee){const _0x310e56=_0x38fdd4,_0xeb1c27=this[_0x310e56(0x115)]['get'](_0x234e15[_0x310e56(0x11a)]);if(!_0xeb1c27)throw new Error(_0x310e56(0x109));return _0xeb1c27[_0x310e56(0x11b)](_0x2c55ee,_0x5dec81[_0x310e56(0x11d)]);}async[_0x38fdd4(0x113)](_0x988ebd){const _0x288072=_0x38fdd4,_0xad3453=this['_injector'][_0x288072(0x111)](_0x234e15['IExchangeService']);if(!_0xad3453)throw new Error(_0x288072(0x109));return _0xad3453[_0x288072(0x113)](_0x988ebd);}}_0x80c97e[_0x38fdd4(0x10e)][_0x38fdd4(0x106)](_0x4c02db);}));