Class AbstractStorage<T>

AbstractStorage is a generic class that provides an interface for storing and retrieving data using IndexedDB through the localForage library. It includes methods for synchronous and asynchronous data retrieval and storage, as well as a method for clearing the storage.

Type Parameters

  • T = StorageData

    The type of data to be stored and retrieved. Defaults to any.

Hierarchy

  • AbstractStorage

Implements

Constructors

Properties

Methods

Constructors

  • Initializes a new instance of the Storage class.

    This constructor checks if IndexedDB is supported in the current environment. If not, it throws an error. If supported, it creates a localforage instance with the specified configuration for the SEJ Editor.

    Type Parameters

    • T = any

    Returns AbstractStorage<T>

    Throws

    If IndexedDB is not supported.

Properties

debug: boolean = false
key: string = 'state'
store: LocalForage
version: number = 1

Methods

  • Parameters

    • Optional callback: ((data) => void)
        • (data): void
        • Parameters

          • data: T

          Returns void

    Returns void

  • Returns Promise<null | T>

  • Stores the provided data in IndexedDB and optionally executes a callback function.

    Parameters

    • data: T

      The data to be stored.

    • Optional callback: (() => void)

      An optional callback function to be executed after the data is stored.

        • (): void
        • Returns void

    Returns void

  • Asynchronously sets the provided data in the storage.

    Parameters

    • data: T

      The data to be stored.

    Returns Promise<void>

    A promise that resolves when the data has been stored.

    Remarks

    This method measures the time taken to store the data and logs it to the console if debugging is enabled.

Generated using TypeDoc