mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-06 18:18:45 +08:00
32 lines
877 B
TypeScript
32 lines
877 B
TypeScript
import {CheerioAPI} from "cheerio";
|
|
import DoubanAbstractLoadHandler from "./DoubanAbstractLoadHandler";
|
|
import DoubanSubject from "../model/DoubanSubject";
|
|
import {i18nHelper} from "src/org/wanxp/lang/helper";
|
|
import {log} from "src/org/wanxp/utils/Logutil";
|
|
import HandleContext from "../model/HandleContext";
|
|
import {SupportType, TemplateKey} from "../../../constant/Constsant";
|
|
|
|
/**
|
|
* 默认的处理器
|
|
*/
|
|
export default class DoubanOtherLoadHandler extends DoubanAbstractLoadHandler<DoubanSubject> {
|
|
getSupportType(): SupportType.ALL {
|
|
return SupportType.ALL;
|
|
}
|
|
|
|
parseText(beforeContent: string, extract: DoubanSubject, context: HandleContext): string {
|
|
log.warn(i18nHelper.getMessage('140101'));
|
|
return "";
|
|
}
|
|
|
|
support(extract: DoubanSubject): boolean {
|
|
return false;
|
|
}
|
|
|
|
parseSubjectFromHtml(data: CheerioAPI): DoubanSubject {
|
|
return undefined;
|
|
}
|
|
|
|
|
|
}
|