Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import { TFile } from 'obsidian'; import { ImplementsStatic } from 'src/classes/decorators/ImplementsStatic'; import type { IDIContainer } from 'src/libs/DependencyInjection/interfaces/IDIContainer'; import { Lifecycle } from 'src/libs/LifecycleManager/decorators/Lifecycle'; import { ILifecycleObject } from 'src/libs/LifecycleManager/interfaces/ILifecycleObject'; import PrjTopicData from './Data/PrjTopicData'; import { PrjTaskManagementModel } from './PrjTaskManagementModel'; /** * Represents the model for a topic. */ @Lifecycle() @ImplementsStatic<ILifecycleObject>() export class TopicModel extends PrjTaskManagementModel<PrjTopicData> { /** * Initializes the model. */ public static onLoad(): void { TopicModel.registerThisModelFactory(); } /** * Registers the model factory for the topic model. */ private static registerThisModelFactory(): void { // eslint-disable-next-line no-console console.debug('Registering `TopicModel` at `PrjTaskManagementModel`'); PrjTaskManagementModel.registerModelFactory( 'Topic', (file: TFile) => new TopicModel(file), ); } /** * Creates a new instance of the topic model. * @param file The file to create the model for. * @param dependencies The optional dependencies to use. */ constructor(file: TFile | undefined, dependencies?: IDIContainer) { super(file, PrjTopicData, dependencies); } } |