UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

44 lines (43 loc) 1.31 kB
import { ApiBase } from './ApiBase'; import * as NoteRedux from '../../Redux/ActionsReducers/NoteRedux'; import { NoteInternalApi } from '../Internal/NoteInternalApi'; export class NoteApiImpl extends ApiBase { constructor(_adaptable) { super(_adaptable); this.internalApi = new NoteInternalApi(_adaptable); } addNote(noteStr, primaryKeyValue, columnId) { const note = { Text: noteStr, PrimaryKeyValue: primaryKeyValue, ColumnId: columnId, Timestamp: Date.now(), }; this.dispatchAction(NoteRedux.NoteAdd(note)); } editNote(note) { note.Timestamp = Date.now(); this.dispatchAction(NoteRedux.NoteEdit(note)); } updateNoteText(noteStr, note) { this.editNote({ ...note, Text: noteStr, }); } deleteNote(note) { this.dispatchAction(NoteRedux.NoteDelete(note)); } getNoteState() { return this.getAdaptableState().Note; } getAllNotes() { return this.getNoteState().Notes; } getNoteForCell(address) { return NoteRedux.GetNoteSelector(this.getAdaptableState().Note, address); } getNoteByUuid(uuid) { return this.getAllNotes().find((note) => note.Uuid === uuid); } }