series for MAL

This commit is contained in:
mProjectsCode 2022-05-09 16:52:17 +02:00
parent c7a75ff93c
commit ac82168740
8 changed files with 101 additions and 80 deletions

View file

@ -1,65 +0,0 @@
import {App, SuggestModal} from 'obsidian';
import {APIManager} from '../api/APIManager';
import {MediaTypeModel} from '../models/MediaTypeModel';
export class MediaDbSearchModal extends SuggestModal<MediaTypeModel> {
query: string;
isBusy: boolean;
apiManager: APIManager;
onChoose: (err: Error, result?: MediaTypeModel) => void;
constructor(app: App, apiManager: APIManager, onChoose?: (err: Error, result?: MediaTypeModel) => void) {
super(app);
this.apiManager = apiManager;
this.onChoose = onChoose;
this.isBusy = false;
}
async search(force: boolean = false): Promise<MediaTypeModel[]> {
if (!this.query) {
return;
}
if (!this.isBusy || force) {
this.isBusy = true;
const thisQuery: string = this.query;
console.log('MDB | query started with ' + thisQuery);
const res = await this.apiManager.query(thisQuery);
// console.log(res)
await sleep(1000);
if (this.query === thisQuery) {
this.isBusy = false;
return res;
// return [
// {title: thisQuery, type: 'movie', data: null} as APIRequestResult,
// {title: 'test2', type: 'series', data: {episodes: 24}} as APIRequestResult,
// ];
} else {
return await this.search(true);
}
}
}
async getSuggestions(query: string): Promise<MediaTypeModel[]> {
this.query = query;
return await this.search();
}
renderSuggestion(item: MediaTypeModel, el: HTMLElement): void {
el.createEl('div', {text: item.title});
el.createEl('small', {text: item.type});
}
onChooseSuggestion(item: MediaTypeModel, evt: MouseEvent | KeyboardEvent): void {
this.onChoose(null, item);
}
}