@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.
- package/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +2 -2
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +2 -2
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/types/controllers/config.schema.d.ts +16 -0
- package/lib/types/controllers/exchange.controller.d.ts +8 -0
- package/lib/types/facade/f-univer.d.ts +36 -0
- package/lib/types/facade/index.d.ts +1 -0
- package/lib/types/index.d.ts +10 -483
- package/lib/types/locale/en-US.d.ts +3 -0
- package/lib/types/locale/fa-IR.d.ts +3 -0
- package/lib/types/locale/ru-RU.d.ts +3 -0
- package/lib/types/locale/vi-VN.d.ts +3 -0
- package/lib/types/locale/zh-CN.d.ts +21 -0
- package/lib/types/locale/zh-TW.d.ts +3 -0
- package/lib/types/plugin.d.ts +11 -0
- package/lib/types/services/__tests__/snapshot.spec.d.ts +1 -0
- package/lib/types/services/exchange.service.d.ts +87 -0
- package/lib/types/services/operate.service.d.ts +121 -0
- package/lib/types/services/request.service.d.ts +107 -0
- package/lib/types/services/upload-notification.service.d.ts +52 -0
- package/lib/types/services/utils/snapshot.d.ts +76 -0
- package/lib/types/services/utils/tool.d.ts +19 -0
- package/lib/types/views/UploadNotificationContainer.d.ts +2 -0
- package/lib/types/views/link-list/LinkList.d.ts +6 -0
- package/lib/types/views/upload-again/UploadAgain.d.ts +2 -0
- package/lib/types/views/upload-button/UploadButton.d.ts +7 -0
- package/lib/types/views/upload-error/UploadError.d.ts +2 -0
- package/lib/types/views/upload-notification/UploadNotification.d.ts +2 -0
- package/lib/types/views/upload-success/UploadSuccess.d.ts +5 -0
- package/lib/types/views/uploading/Uploading.d.ts +2 -0
- package/lib/types/views/uploading/upload-cancel/UploadCancel.d.ts +2 -0
- package/lib/types/views/uploading/upload-progress/UploadProgress.d.ts +5 -0
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +2 -2
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +6 -6
package/lib/types/index.d.ts
CHANGED
@@ -1,483 +1,10 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
import { IMessageService } from '@univerjs/ui';
|
12
|
-
import { Injector } from '@univerjs/core';
|
13
|
-
import { ISheetBlock } from '@univerjs/protocol';
|
14
|
-
import { ISnapshot } from '@univerjs/protocol';
|
15
|
-
import { IUniverInstanceService } from '@univerjs/core';
|
16
|
-
import { IWorkbookData } from '@univerjs/core';
|
17
|
-
import { IWorkbookMeta } from '@univerjs/protocol';
|
18
|
-
import { IWorksheetMeta } from '@univerjs/protocol';
|
19
|
-
import { LocaleService } from '@univerjs/core';
|
20
|
-
import { Observable } from 'rxjs';
|
21
|
-
import { Plugin as Plugin_2 } from '@univerjs/core';
|
22
|
-
import { UniverInstanceType } from '@univerjs/core';
|
23
|
-
import { UniverType } from '@univerjs/protocol';
|
24
|
-
|
25
|
-
/**
|
26
|
-
* Triggers a download of a given File object.
|
27
|
-
*
|
28
|
-
* @param {File} file - The File object to be downloaded.
|
29
|
-
*/
|
30
|
-
export declare function downloadFile(file: File | Blob, filename: string, fileExt: string): void;
|
31
|
-
|
32
|
-
/** @deprecated Will be removed in the 0.2.19 release */
|
33
|
-
export declare const EXCHANGE_EXPORT_SERVER_URL_KEY = "EXCHANGE_EXPORT_SERVER_URL_KEY";
|
34
|
-
|
35
|
-
/** @deprecated Will be removed in the 0.2.19 release */
|
36
|
-
export declare const EXCHANGE_GET_TASK_SERVER_URL_KEY = "EXCHANGE_GET_TASK_SERVER_URL_KEY";
|
37
|
-
|
38
|
-
/** @deprecated Will be removed in the 0.2.19 release */
|
39
|
-
export declare const EXCHANGE_IMPORT_SERVER_URL_KEY = "EXCHANGE_IMPORT_SERVER_URL_KEY";
|
40
|
-
|
41
|
-
/** @deprecated Will be removed in the 0.2.19 release */
|
42
|
-
export declare const EXCHANGE_SIGN_URL_SERVER_URL_KEY = "EXCHANGE_SIGN_URL_SERVER_URL_KEY";
|
43
|
-
|
44
|
-
/** @deprecated Will be removed in the 0.2.19 release */
|
45
|
-
export declare const EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY = "EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY";
|
46
|
-
|
47
|
-
export declare class ExchangeOperateService extends Disposable_2 implements IExchangeOperateService, IDisposable {
|
48
|
-
private _univerInstanceService;
|
49
|
-
private readonly _messageService;
|
50
|
-
private readonly _localeService;
|
51
|
-
private readonly _exchangeService;
|
52
|
-
private readonly _uploadNotificationService;
|
53
|
-
protected readonly _logService: ILogService;
|
54
|
-
private _interrupted;
|
55
|
-
private readonly _progress$;
|
56
|
-
readonly progress$: Observable<IUploadProgress>;
|
57
|
-
private _totalUploadTaskCount;
|
58
|
-
private _doneUploadTaskCount;
|
59
|
-
constructor(_univerInstanceService: IUniverInstanceService, _messageService: IMessageService, _localeService: LocaleService, _exchangeService: ExchangeService, _uploadNotificationService: UploadNotificationService, _logService: ILogService);
|
60
|
-
interrupt(): void;
|
61
|
-
uploadFileToUnitId(types: UniverType[]): Promise<{
|
62
|
-
unitId: string;
|
63
|
-
type: UniverType;
|
64
|
-
} | undefined>;
|
65
|
-
importDOCXToUnitId(): Promise<string | undefined>;
|
66
|
-
importDOCXToSnapshot(): Promise<void>;
|
67
|
-
exportDOCXByUnitId(unitId?: string, unitName?: string, unitType?: UniverInstanceType): Promise<void>;
|
68
|
-
exportDOCXBySnapshot(): Promise<void>;
|
69
|
-
importXLSXToUnitId(): Promise<string | undefined>;
|
70
|
-
importXLSXToSnapshot(): Promise<void>;
|
71
|
-
exportXLSXByUnitId(unitId?: string, unitName?: string): Promise<void>;
|
72
|
-
exportXLSXBySnapshot(): Promise<void>;
|
73
|
-
registerLink(getLink: (unitId: string, univerType: UniverInstanceType) => string): void;
|
74
|
-
private _importFileToUnitId;
|
75
|
-
private _getUnitID;
|
76
|
-
private _getUnitName;
|
77
|
-
private _getUnitJson;
|
78
|
-
/**
|
79
|
-
* Get unit link /?unit={unitId}&type=2
|
80
|
-
* @param unitId
|
81
|
-
* @param type
|
82
|
-
* @returns
|
83
|
-
*/
|
84
|
-
private _getLinkByUnitId;
|
85
|
-
private _refresh;
|
86
|
-
private _showNetworkError;
|
87
|
-
private _showDownloadMessage;
|
88
|
-
private _showUploadMessage;
|
89
|
-
private _emitProgress;
|
90
|
-
private _addTotalCount;
|
91
|
-
private _addDoneTask;
|
92
|
-
private _completeProgress;
|
93
|
-
private _clearProgress;
|
94
|
-
}
|
95
|
-
|
96
|
-
export declare class ExchangeService extends Disposable_2 implements IExchangeService, IDisposable {
|
97
|
-
private readonly _configService;
|
98
|
-
private readonly _requestService;
|
99
|
-
private readonly _requestState$;
|
100
|
-
readonly requestState$: Observable<IRequestState>;
|
101
|
-
constructor(_configService: IConfigService, _requestService: RequestService);
|
102
|
-
dispose(): void;
|
103
|
-
importDOCXToSnapshot(file: File | string): Promise<IDocumentData | undefined>;
|
104
|
-
exportDOCXByUnitId(unitId: string): Promise<File | undefined>;
|
105
|
-
exportDOCXBySnapshot(snapshot: IDocumentData): Promise<File | undefined>;
|
106
|
-
importXLSXToSnapshot(file: File | string): Promise<IWorkbookData | undefined>;
|
107
|
-
exportXLSXByUnitId(unitId: string): Promise<File | undefined>;
|
108
|
-
exportXLSXBySnapshot(data: IWorkbookData): Promise<File | undefined>;
|
109
|
-
importFileToUnitId(file: File | string, univerType: UniverType): Promise<string | undefined>;
|
110
|
-
private _importToSnapshot;
|
111
|
-
/**
|
112
|
-
* Export file by snapshot
|
113
|
-
* @param snapshot
|
114
|
-
* @param univerType
|
115
|
-
* @returns
|
116
|
-
*/
|
117
|
-
private _exportBySnapshot;
|
118
|
-
private _export;
|
119
|
-
private _upload;
|
120
|
-
private _import;
|
121
|
-
private _signUrl;
|
122
|
-
private _getDownloadEndpointURL;
|
123
|
-
}
|
124
|
-
|
125
|
-
export declare function getUniverTypeByFile(file: File): UniverType.UNIVER_UNKNOWN | UniverType.UNIVER_DOC | UniverType.UNIVER_SHEET | UniverType.UNIVER_SLIDE;
|
126
|
-
|
127
|
-
export declare function getUploadFile(types: UniverType[], multiple?: boolean): Promise<FileList | null>;
|
128
|
-
|
129
|
-
declare interface IDocumentMetaJson extends Omit<IDocumentMeta, 'originalMeta'> {
|
130
|
-
originalMeta: string;
|
131
|
-
}
|
132
|
-
|
133
|
-
export declare interface IExchangeOperateService {
|
134
|
-
interrupt(): void;
|
135
|
-
/**
|
136
|
-
* Upload file to server, get unitId and open unit
|
137
|
-
* @param file
|
138
|
-
*/
|
139
|
-
importXLSXToUnitId(): Promise<string | undefined>;
|
140
|
-
/**
|
141
|
-
* Upload xlsx file to server, get snapshot and refresh current sheet
|
142
|
-
* @param file
|
143
|
-
*/
|
144
|
-
importXLSXToSnapshot(): Promise<void>;
|
145
|
-
/**
|
146
|
-
* Export xlsx file by unitId
|
147
|
-
* @returns
|
148
|
-
*/
|
149
|
-
exportXLSXByUnitId(unitId?: string, unitName?: string, unitType?: UniverInstanceType): Promise<void>;
|
150
|
-
/**
|
151
|
-
* Export xlsx file by snapshot
|
152
|
-
* @returns
|
153
|
-
*/
|
154
|
-
exportXLSXBySnapshot(): Promise<void>;
|
155
|
-
/**
|
156
|
-
* Upload file to server, get unitId and open unit
|
157
|
-
* @param file
|
158
|
-
*/
|
159
|
-
importDOCXToUnitId(): Promise<string | undefined>;
|
160
|
-
/**
|
161
|
-
* Upload docx file to server, get snapshot and refresh current doc
|
162
|
-
* @param file
|
163
|
-
*/
|
164
|
-
importDOCXToSnapshot(): Promise<void>;
|
165
|
-
/**
|
166
|
-
* Export docx file by unitId
|
167
|
-
* @returns
|
168
|
-
*/
|
169
|
-
exportDOCXByUnitId(unitId?: string, unitName?: string, unitType?: UniverType): Promise<void>;
|
170
|
-
/**
|
171
|
-
* Export docx file by snapshot
|
172
|
-
* @returns
|
173
|
-
*/
|
174
|
-
exportDOCXBySnapshot(): Promise<void>;
|
175
|
-
/**
|
176
|
-
* Upload file, supports multiple types
|
177
|
-
* @param file
|
178
|
-
*/
|
179
|
-
uploadFileToUnitId(types: UniverType[]): Promise<{
|
180
|
-
unitId: string;
|
181
|
-
type: UniverType;
|
182
|
-
} | undefined>;
|
183
|
-
/**
|
184
|
-
* Customize the imported Unit URL format according to the needs of your own scene
|
185
|
-
* @param getLink
|
186
|
-
*/
|
187
|
-
registerLink(getLink: (unitId: string, univerType: UniverInstanceType) => string): void;
|
188
|
-
/**
|
189
|
-
* Observable of upload progress
|
190
|
-
*/
|
191
|
-
progress$: Observable<IUploadProgress>;
|
192
|
-
}
|
193
|
-
|
194
|
-
export declare const IExchangeOperateService: IdentifierDecorator<IExchangeOperateService>;
|
195
|
-
|
196
|
-
export declare interface IExchangeService {
|
197
|
-
requestState$: Observable<IRequestState>;
|
198
|
-
/**
|
199
|
-
* Import XLSX file to workbook data
|
200
|
-
* @param file
|
201
|
-
*/
|
202
|
-
importXLSXToSnapshot(file: File | string): Promise<IWorkbookData | undefined>;
|
203
|
-
/**
|
204
|
-
* Export XLSX file by unit id
|
205
|
-
* @param unitId
|
206
|
-
*/
|
207
|
-
exportXLSXByUnitId(unitId: string): Promise<File | undefined>;
|
208
|
-
/**
|
209
|
-
* Export XLSX file by workbook data
|
210
|
-
* @param data
|
211
|
-
* @returns
|
212
|
-
*/
|
213
|
-
exportXLSXBySnapshot(snapshot: IWorkbookData): Promise<File | undefined>;
|
214
|
-
/**
|
215
|
-
* Import DOCX file to document data
|
216
|
-
* @param file
|
217
|
-
*/
|
218
|
-
importDOCXToSnapshot(file: File | string): Promise<IDocumentData | undefined>;
|
219
|
-
/**
|
220
|
-
* Export DOCX file by unit id
|
221
|
-
* @param unitId
|
222
|
-
*/
|
223
|
-
exportDOCXByUnitId(unitId: string): Promise<File | undefined>;
|
224
|
-
/**
|
225
|
-
* Export DOCX file by document data
|
226
|
-
* @param data
|
227
|
-
* @returns
|
228
|
-
*/
|
229
|
-
exportDOCXBySnapshot(snapshot: IDocumentData): Promise<File | undefined>;
|
230
|
-
/**
|
231
|
-
* Import file to unit id
|
232
|
-
* @param file
|
233
|
-
* @param univerType
|
234
|
-
*/
|
235
|
-
importFileToUnitId(file: File | string, univerType: UniverType): Promise<string | undefined>;
|
236
|
-
}
|
237
|
-
|
238
|
-
export declare const IExchangeService: IdentifierDecorator<IExchangeService>;
|
239
|
-
|
240
|
-
declare interface IExportRequest {
|
241
|
-
/** if unitID is specified, the input is the unit in the database */
|
242
|
-
unitID: string;
|
243
|
-
/** if jsonID is specified, the input is the json file which represents a univer unit */
|
244
|
-
jsonID: string;
|
245
|
-
type: UniverType;
|
246
|
-
}
|
247
|
-
|
248
|
-
declare interface IExportResponse {
|
249
|
-
error: IError | undefined;
|
250
|
-
taskID: string;
|
251
|
-
}
|
252
|
-
|
253
|
-
declare interface IExportTaskResult {
|
254
|
-
fileID: string;
|
255
|
-
fileUrl: string;
|
256
|
-
}
|
257
|
-
|
258
|
-
declare interface IFileUploadResponse {
|
259
|
-
FileId: string;
|
260
|
-
error: IError;
|
261
|
-
}
|
262
|
-
|
263
|
-
declare interface IGetTaskResponse {
|
264
|
-
error: IError | undefined;
|
265
|
-
taskID: string;
|
266
|
-
status: string;
|
267
|
-
import?: IImportTaskResult | undefined;
|
268
|
-
export?: IExportTaskResult | undefined;
|
269
|
-
}
|
270
|
-
|
271
|
-
declare interface IImportRequest {
|
272
|
-
fileID: string;
|
273
|
-
type: UniverType;
|
274
|
-
outputType: ImportOutputType;
|
275
|
-
/** not supported yet */
|
276
|
-
fileUrl: string;
|
277
|
-
}
|
278
|
-
|
279
|
-
declare interface IImportResponse {
|
280
|
-
taskID: string;
|
281
|
-
error: IError;
|
282
|
-
}
|
283
|
-
|
284
|
-
declare interface IImportTaskResult {
|
285
|
-
outputType: ImportOutputType;
|
286
|
-
unitID: string;
|
287
|
-
jsonID: string;
|
288
|
-
}
|
289
|
-
|
290
|
-
declare interface ILinkList {
|
291
|
-
link: string;
|
292
|
-
name: string;
|
293
|
-
type: UniverType;
|
294
|
-
}
|
295
|
-
|
296
|
-
declare enum ImportOutputType {
|
297
|
-
UNDEFINED = 0,
|
298
|
-
/** UNIT - Import to univer unit, unit is store in the database */
|
299
|
-
UNIT = 1,
|
300
|
-
/** JSON - Import and convert to a json file which represents a univer unit, not store in the database */
|
301
|
-
JSON = 2,
|
302
|
-
UNRECOGNIZED = -1
|
303
|
-
}
|
304
|
-
|
305
|
-
export declare interface IRequestService {
|
306
|
-
upload(file: File | string): Promise<IFileUploadResponse | undefined>;
|
307
|
-
import(importRequest: IImportRequest): Promise<IImportResponse | undefined>;
|
308
|
-
export(exportRequest: IExportRequest): Promise<IExportResponse | undefined>;
|
309
|
-
getTask(taskID: string): Promise<IGetTaskResponse | undefined>;
|
310
|
-
signUrl(fileID: string): Promise<ISignUrlResponse | undefined>;
|
311
|
-
}
|
312
|
-
|
313
|
-
export declare const IRequestService: IdentifierDecorator<IRequestService>;
|
314
|
-
|
315
|
-
declare interface IRequestState {
|
316
|
-
error: IError | undefined;
|
317
|
-
state: RequestState;
|
318
|
-
}
|
319
|
-
|
320
|
-
declare interface ISheetBlockData extends Omit<ISheetBlock, 'data'> {
|
321
|
-
data: string;
|
322
|
-
}
|
323
|
-
|
324
|
-
declare interface ISheetBlockJson {
|
325
|
-
[key: string]: Partial<ISheetBlockData>;
|
326
|
-
}
|
327
|
-
|
328
|
-
declare interface ISignUrlResponse {
|
329
|
-
error: IError | undefined;
|
330
|
-
url: string;
|
331
|
-
}
|
332
|
-
|
333
|
-
declare interface ISnapshotBlockJson {
|
334
|
-
snapshot: ISnapshotJson;
|
335
|
-
sheetBlocks: ISheetBlockJson;
|
336
|
-
}
|
337
|
-
|
338
|
-
declare interface ISnapshotJson extends Omit<ISnapshot, 'workbook' | 'doc'> {
|
339
|
-
workbook: Partial<IWorkbookMetaJson>;
|
340
|
-
doc: Partial<IDocumentMetaJson>;
|
341
|
-
}
|
342
|
-
|
343
|
-
declare interface IUniverExchangeClientConfig {
|
344
|
-
/**
|
345
|
-
* The URL of the endpoint for downloading files.
|
346
|
-
* @default 'location.origin'
|
347
|
-
*/
|
348
|
-
downloadEndpointUrl?: string;
|
349
|
-
uploadFileServerUrl?: string;
|
350
|
-
importServerUrl?: string;
|
351
|
-
exportServerUrl?: string;
|
352
|
-
getTaskServerUrl?: string;
|
353
|
-
signUrlServerUrl?: string;
|
354
|
-
maxTimeoutTime?: number;
|
355
|
-
}
|
356
|
-
|
357
|
-
export declare interface IUploadNotificationService {
|
358
|
-
visible$: Observable<boolean>;
|
359
|
-
state$: Observable<UploadNotificationState>;
|
360
|
-
list$: Observable<ILinkList[]>;
|
361
|
-
/**
|
362
|
-
* Show upload notification
|
363
|
-
*/
|
364
|
-
show(): void;
|
365
|
-
/**
|
366
|
-
* Hide upload notification
|
367
|
-
*/
|
368
|
-
hide(): void;
|
369
|
-
/**
|
370
|
-
* Update upload notification state
|
371
|
-
* @param state
|
372
|
-
*/
|
373
|
-
updateState(state: UploadNotificationState): void;
|
374
|
-
/**
|
375
|
-
* Push link to upload notification
|
376
|
-
* @param link
|
377
|
-
*/
|
378
|
-
pushLink(link: ILinkList): void;
|
379
|
-
}
|
380
|
-
|
381
|
-
export declare const IUploadNotificationService: IdentifierDecorator<IUploadNotificationService>;
|
382
|
-
|
383
|
-
declare interface IUploadProgress {
|
384
|
-
/** Task that already completed. */
|
385
|
-
done: number;
|
386
|
-
/** The total number of tasks need to execute. */
|
387
|
-
count: number;
|
388
|
-
}
|
389
|
-
|
390
|
-
declare interface IWorkbookMetaJson extends Omit<IWorkbookMeta, 'originalMeta' | 'sheets'> {
|
391
|
-
originalMeta: string;
|
392
|
-
sheets: {
|
393
|
-
[key: string]: Partial<IWorksheetMetaJson>;
|
394
|
-
};
|
395
|
-
}
|
396
|
-
|
397
|
-
declare interface IWorksheetMetaJson extends Omit<IWorksheetMeta, 'originalMeta'> {
|
398
|
-
originalMeta: string;
|
399
|
-
}
|
400
|
-
|
401
|
-
/**
|
402
|
-
* TODO@Dushusir maybe move to ExchangeClientPlugin plugin for reuse
|
403
|
-
*/
|
404
|
-
export declare class RequestService implements IRequestService, IDisposable {
|
405
|
-
private readonly _configService;
|
406
|
-
private readonly _httpService;
|
407
|
-
constructor(_configService: IConfigService, _httpService: HTTPService);
|
408
|
-
dispose(): void;
|
409
|
-
/**
|
410
|
-
* upload file to server
|
411
|
-
* @param file
|
412
|
-
*/
|
413
|
-
upload(file: File | string, size?: number, flate?: boolean): Promise<IFileUploadResponse | undefined>;
|
414
|
-
import(importRequest: IImportRequest): Promise<IImportResponse | undefined>;
|
415
|
-
export(exportRequest: IExportRequest): Promise<IExportResponse | undefined>;
|
416
|
-
getTask(taskID: string): Promise<IGetTaskResponse | undefined>;
|
417
|
-
signUrl(fileID: string): Promise<ISignUrlResponse | undefined>;
|
418
|
-
private _getUploadFileURL;
|
419
|
-
private _getImportURL;
|
420
|
-
private _getExportURL;
|
421
|
-
private _getTaskURL;
|
422
|
-
private _getSignURL;
|
423
|
-
private _getMaxPollingTime;
|
424
|
-
}
|
425
|
-
|
426
|
-
declare enum RequestState {
|
427
|
-
UPLOAD = 0,
|
428
|
-
IMPORT = 1,
|
429
|
-
EXPORT = 2,
|
430
|
-
GET_TASK = 3,
|
431
|
-
SIGN_URL = 4,
|
432
|
-
GET_JSON = 5,
|
433
|
-
GET_FILE = 6
|
434
|
-
}
|
435
|
-
|
436
|
-
/**
|
437
|
-
* Convert the workbook data to snapshot data
|
438
|
-
* @param workbookData
|
439
|
-
* @returns
|
440
|
-
*/
|
441
|
-
export declare function transformWorkbookDataToSnapshotJson(workbookData: IWorkbookData): Promise<ISnapshotBlockJson>;
|
442
|
-
|
443
|
-
export declare class UniverExchangeClientPlugin extends Plugin_2 {
|
444
|
-
private readonly _config;
|
445
|
-
readonly _injector: Injector;
|
446
|
-
private readonly _configService;
|
447
|
-
static pluginName: string;
|
448
|
-
constructor(_config: IUniverExchangeClientConfig | undefined, _injector: Injector, _configService: IConfigService);
|
449
|
-
onStarting(): void;
|
450
|
-
onReady(): void;
|
451
|
-
}
|
452
|
-
|
453
|
-
export declare function UploadNotificationContainer(): default_2.JSX.Element;
|
454
|
-
|
455
|
-
export declare class UploadNotificationService extends Disposable_2 implements IUploadNotificationService, IDisposable {
|
456
|
-
private readonly _visible$;
|
457
|
-
private readonly _state$;
|
458
|
-
private readonly _list$;
|
459
|
-
readonly visible$: Observable<boolean>;
|
460
|
-
readonly state$: Observable<UploadNotificationState>;
|
461
|
-
readonly list$: Observable<ILinkList[]>;
|
462
|
-
private _list;
|
463
|
-
constructor();
|
464
|
-
dispose(): void;
|
465
|
-
show(): void;
|
466
|
-
hide(): void;
|
467
|
-
updateState(state: UploadNotificationState): void;
|
468
|
-
pushLink(link: ILinkList): void;
|
469
|
-
}
|
470
|
-
|
471
|
-
export declare enum UploadNotificationState {
|
472
|
-
UPLOADING = 0,
|
473
|
-
SUCCESS = 1,
|
474
|
-
ERROR = 2
|
475
|
-
}
|
476
|
-
|
477
|
-
export { }
|
478
|
-
|
479
|
-
|
480
|
-
declare module '@univerjs/core' {
|
481
|
-
interface FUniver extends IFUniverExchangeClientMixin {
|
482
|
-
}
|
483
|
-
}
|
1
|
+
export { UniverExchangeClientPlugin } from './plugin';
|
2
|
+
export { ExchangeService, IExchangeService } from './services/exchange.service';
|
3
|
+
export { ExchangeOperateService, IExchangeOperateService } from './services/operate.service';
|
4
|
+
export { IRequestService, RequestService } from './services/request.service';
|
5
|
+
/** @deprecated Will be removed in the 0.2.19 release */
|
6
|
+
export { EXCHANGE_EXPORT_SERVER_URL_KEY, EXCHANGE_GET_TASK_SERVER_URL_KEY, EXCHANGE_IMPORT_SERVER_URL_KEY, EXCHANGE_SIGN_URL_SERVER_URL_KEY, EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY } from './services/request.service';
|
7
|
+
export { IUploadNotificationService, UploadNotificationService, UploadNotificationState } from './services/upload-notification.service';
|
8
|
+
export { downloadFile, getUniverTypeByFile, getUploadFile } from './services/utils/tool';
|
9
|
+
export { UploadNotificationContainer } from './views/UploadNotificationContainer';
|
10
|
+
export { transformWorkbookDataToSnapshotJson } from './services/utils/snapshot';
|
@@ -0,0 +1,21 @@
|
|
1
|
+
declare const locales: {
|
2
|
+
exchange: {
|
3
|
+
file: string;
|
4
|
+
upload: string;
|
5
|
+
download: string;
|
6
|
+
uploading: string;
|
7
|
+
uploadSuccess: string;
|
8
|
+
uploadSuccessTip: string;
|
9
|
+
downloading: string;
|
10
|
+
downloadSuccess: string;
|
11
|
+
unknownMistake: string;
|
12
|
+
networkError: string;
|
13
|
+
tooLarge: string;
|
14
|
+
internalError: string;
|
15
|
+
interrupt: string;
|
16
|
+
wait: string;
|
17
|
+
cancel: string;
|
18
|
+
uploadAgain: string;
|
19
|
+
};
|
20
|
+
};
|
21
|
+
export default locales;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { IUniverExchangeClientConfig } from './controllers/config.schema';
|
2
|
+
import { IConfigService, Injector, Plugin } from '@univerjs/core';
|
3
|
+
export declare class UniverExchangeClientPlugin extends Plugin {
|
4
|
+
private readonly _config;
|
5
|
+
readonly _injector: Injector;
|
6
|
+
private readonly _configService;
|
7
|
+
static pluginName: string;
|
8
|
+
constructor(_config: IUniverExchangeClientConfig | undefined, _injector: Injector, _configService: IConfigService);
|
9
|
+
onStarting(): void;
|
10
|
+
onReady(): void;
|
11
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,87 @@
|
|
1
|
+
import { IDisposable, IDocumentData, IWorkbookData, Disposable, IConfigService } from '@univerjs/core';
|
2
|
+
import { IError, UniverType } from '@univerjs/protocol';
|
3
|
+
import { RequestService } from './request.service';
|
4
|
+
import { Observable } from 'rxjs';
|
5
|
+
export declare enum RequestState {
|
6
|
+
UPLOAD = 0,
|
7
|
+
IMPORT = 1,
|
8
|
+
EXPORT = 2,
|
9
|
+
GET_TASK = 3,
|
10
|
+
SIGN_URL = 4,
|
11
|
+
GET_JSON = 5,
|
12
|
+
GET_FILE = 6
|
13
|
+
}
|
14
|
+
export interface IRequestState {
|
15
|
+
error: IError | undefined;
|
16
|
+
state: RequestState;
|
17
|
+
}
|
18
|
+
export interface IExchangeService {
|
19
|
+
requestState$: Observable<IRequestState>;
|
20
|
+
/**
|
21
|
+
* Import XLSX file to workbook data
|
22
|
+
* @param file
|
23
|
+
*/
|
24
|
+
importXLSXToSnapshot(file: File | string): Promise<IWorkbookData | undefined>;
|
25
|
+
/**
|
26
|
+
* Export XLSX file by unit id
|
27
|
+
* @param unitId
|
28
|
+
*/
|
29
|
+
exportXLSXByUnitId(unitId: string): Promise<File | undefined>;
|
30
|
+
/**
|
31
|
+
* Export XLSX file by workbook data
|
32
|
+
* @param data
|
33
|
+
* @returns
|
34
|
+
*/
|
35
|
+
exportXLSXBySnapshot(snapshot: IWorkbookData): Promise<File | undefined>;
|
36
|
+
/**
|
37
|
+
* Import DOCX file to document data
|
38
|
+
* @param file
|
39
|
+
*/
|
40
|
+
importDOCXToSnapshot(file: File | string): Promise<IDocumentData | undefined>;
|
41
|
+
/**
|
42
|
+
* Export DOCX file by unit id
|
43
|
+
* @param unitId
|
44
|
+
*/
|
45
|
+
exportDOCXByUnitId(unitId: string): Promise<File | undefined>;
|
46
|
+
/**
|
47
|
+
* Export DOCX file by document data
|
48
|
+
* @param data
|
49
|
+
* @returns
|
50
|
+
*/
|
51
|
+
exportDOCXBySnapshot(snapshot: IDocumentData): Promise<File | undefined>;
|
52
|
+
/**
|
53
|
+
* Import file to unit id
|
54
|
+
* @param file
|
55
|
+
* @param univerType
|
56
|
+
*/
|
57
|
+
importFileToUnitId(file: File | string, univerType: UniverType): Promise<string | undefined>;
|
58
|
+
}
|
59
|
+
export declare const IExchangeService: import('@wendellhu/redi').IdentifierDecorator<IExchangeService>;
|
60
|
+
export declare class ExchangeService extends Disposable implements IExchangeService, IDisposable {
|
61
|
+
private readonly _configService;
|
62
|
+
private readonly _requestService;
|
63
|
+
private readonly _requestState$;
|
64
|
+
readonly requestState$: Observable<IRequestState>;
|
65
|
+
constructor(_configService: IConfigService, _requestService: RequestService);
|
66
|
+
dispose(): void;
|
67
|
+
importDOCXToSnapshot(file: File | string): Promise<IDocumentData | undefined>;
|
68
|
+
exportDOCXByUnitId(unitId: string): Promise<File | undefined>;
|
69
|
+
exportDOCXBySnapshot(snapshot: IDocumentData): Promise<File | undefined>;
|
70
|
+
importXLSXToSnapshot(file: File | string): Promise<IWorkbookData | undefined>;
|
71
|
+
exportXLSXByUnitId(unitId: string): Promise<File | undefined>;
|
72
|
+
exportXLSXBySnapshot(data: IWorkbookData): Promise<File | undefined>;
|
73
|
+
importFileToUnitId(file: File | string, univerType: UniverType): Promise<string | undefined>;
|
74
|
+
private _importToSnapshot;
|
75
|
+
/**
|
76
|
+
* Export file by snapshot
|
77
|
+
* @param snapshot
|
78
|
+
* @param univerType
|
79
|
+
* @returns
|
80
|
+
*/
|
81
|
+
private _exportBySnapshot;
|
82
|
+
private _export;
|
83
|
+
private _upload;
|
84
|
+
private _import;
|
85
|
+
private _signUrl;
|
86
|
+
private _getDownloadEndpointURL;
|
87
|
+
}
|