2023-03-03 16:23:46 +01:00
|
|
|
import { inject, injectable } from "tsyringe";
|
2024-05-21 19:59:04 +02:00
|
|
|
import { NoteController } from "@spt/controllers/NoteController";
|
|
|
|
import { IPmcData } from "@spt/models/eft/common/IPmcData";
|
|
|
|
import { IItemEventRouterResponse } from "@spt/models/eft/itemEvent/IItemEventRouterResponse";
|
|
|
|
import { INoteActionData } from "@spt/models/eft/notes/INoteActionData";
|
2023-03-03 16:23:46 +01:00
|
|
|
|
|
|
|
@injectable()
|
|
|
|
export class NoteCallbacks
|
|
|
|
{
|
2023-11-16 02:35:05 +01:00
|
|
|
constructor(@inject("NoteController") protected noteController: NoteController)
|
|
|
|
{}
|
2023-03-03 16:23:46 +01:00
|
|
|
|
2023-07-15 15:49:25 +02:00
|
|
|
/** Handle AddNote event */
|
2023-03-03 16:23:46 +01:00
|
|
|
public addNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse
|
|
|
|
{
|
|
|
|
return this.noteController.addNote(pmcData, body, sessionID);
|
|
|
|
}
|
|
|
|
|
2023-07-15 15:49:25 +02:00
|
|
|
/** Handle EditNote event */
|
2023-03-03 16:23:46 +01:00
|
|
|
public editNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse
|
|
|
|
{
|
|
|
|
return this.noteController.editNote(pmcData, body, sessionID);
|
|
|
|
}
|
|
|
|
|
2023-07-15 15:49:25 +02:00
|
|
|
/** Handle DeleteNote event */
|
2023-03-03 16:23:46 +01:00
|
|
|
public deleteNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse
|
|
|
|
{
|
|
|
|
return this.noteController.deleteNote(pmcData, body, sessionID);
|
|
|
|
}
|
|
|
|
}
|