mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 21:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import type FNote from "../entities/fnote.js";
 | 
						|
import CalendarView from "../widgets/view_widgets/calendar_view.js";
 | 
						|
import ListOrGridView from "../widgets/view_widgets/list_or_grid_view.js";
 | 
						|
import type { ViewModeArgs } from "../widgets/view_widgets/view_mode.js";
 | 
						|
import type ViewMode from "../widgets/view_widgets/view_mode.js";
 | 
						|
 | 
						|
export type ViewTypeOptions = "list" | "grid" | "calendar";
 | 
						|
 | 
						|
export default class NoteListRenderer {
 | 
						|
 | 
						|
    private viewType: ViewTypeOptions;
 | 
						|
    public viewMode: ViewMode | null;
 | 
						|
 | 
						|
    constructor($parent: JQuery<HTMLElement>, parentNote: FNote, noteIds: string[], showNotePath: boolean = false) {
 | 
						|
        this.viewType = this.#getViewType(parentNote);
 | 
						|
        const args: ViewModeArgs = {
 | 
						|
            $parent,
 | 
						|
            parentNote,
 | 
						|
            noteIds,
 | 
						|
            showNotePath
 | 
						|
        };
 | 
						|
 | 
						|
        if (this.viewType === "list" || this.viewType === "grid") {
 | 
						|
            this.viewMode = new ListOrGridView(this.viewType, args);
 | 
						|
        } else if (this.viewType === "calendar") {
 | 
						|
            this.viewMode = new CalendarView(args);
 | 
						|
        } else {
 | 
						|
            this.viewMode = null;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    #getViewType(parentNote: FNote): ViewTypeOptions {
 | 
						|
        const viewType = parentNote.getLabelValue("viewType");
 | 
						|
 | 
						|
        if (!["list", "grid", "calendar"].includes(viewType || "")) {
 | 
						|
            // when not explicitly set, decide based on the note type
 | 
						|
            return parentNote.type === "search" ? "list" : "grid";
 | 
						|
        } else {
 | 
						|
            return viewType as ViewTypeOptions;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    get isFullHeight() {
 | 
						|
        return this.viewMode?.isFullHeight;
 | 
						|
    }
 | 
						|
 | 
						|
    async renderList() {
 | 
						|
        if (!this.viewMode) {
 | 
						|
            return null;
 | 
						|
        }
 | 
						|
 | 
						|
        return await this.viewMode.renderList();
 | 
						|
    }
 | 
						|
 | 
						|
}
 |