mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
49 lines
1.8 KiB
TypeScript
49 lines
1.8 KiB
TypeScript
import { ExportContext } from '../plugins/api/types';
|
|
import InteropService_Exporter_Base from './InteropService_Exporter_Base';
|
|
import { ExportOptions } from './types';
|
|
|
|
interface CustomImporter {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
onInit(context: any): Promise<void>;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
onProcessItem(context: any, itemType: number, item: any): Promise<void>;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
onProcessResource(context: any, resource: any, filePath: string): Promise<void>;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
onClose(context: any): Promise<void>;
|
|
}
|
|
|
|
export default class InteropService_Exporter_Custom extends InteropService_Exporter_Base {
|
|
|
|
private customContext_: ExportContext;
|
|
private module_: CustomImporter = null;
|
|
|
|
public constructor(module: CustomImporter) {
|
|
super();
|
|
this.module_ = module;
|
|
}
|
|
|
|
public async init(destPath: string, options: ExportOptions) {
|
|
this.customContext_ = {
|
|
destPath: destPath,
|
|
options: options,
|
|
};
|
|
|
|
return this.module_.onInit(this.customContext_);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
public async processItem(itemType: number, item: any) {
|
|
return this.module_.onProcessItem(this.customContext_, itemType, item);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
public async processResource(resource: any, filePath: string) {
|
|
return this.module_.onProcessResource(this.customContext_, resource, filePath);
|
|
}
|
|
|
|
public async close() {
|
|
return this.module_.onClose(this.customContext_);
|
|
}
|
|
}
|