The abstract stock. It shouldn't be used directly, use stocks that extends it.

Type Parameters

  • T

Hierarchy (view full)

Constructors

Properties

cards: T[] = []
element: HTMLElement

the stock element (should be an empty HTML Element)

inclination: number
manager: CardManager<T>

the card manager

onCardClick?: ((card) => void)

Called when selection change. Returns the clicked card.

card: the clicked card (can be selected or unselected)

Type declaration

    • (card): void
    • Called when selection change. Returns the clicked card.

      card: the clicked card (can be selected or unselected)

      Parameters

      • card: T

      Returns void

onSelectionChange?: ((selection, lastChange) => void)

Called when selection change. Returns the selection.

selection: the selected cards of the stock
lastChange: the last change on selection card (can be selected or unselected)

Type declaration

    • (selection, lastChange): void
    • Called when selection change. Returns the selection.

      selection: the selected cards of the stock
      lastChange: the last change on selection card (can be selected or unselected)

      Parameters

      • selection: T[]
      • lastChange: T

      Returns void

selectedCards: T[] = []
selectionMode: CardSelectionMode = 'none'

Methods

  • Add a card to the stock.

    Parameters

    Returns Promise<boolean>

    the promise when the animation is done (true if it was animated, false if it wasn't)

  • Add an array of cards to the stock.

    Parameters

    • cards: T[]

      the cards to add

    • Optional animation: CardAnimation<T>

      a CardAnimation object

    • Optional settings: AddCardSettings

      a AddCardSettings object

    • shift: number | boolean = false

      if number, the number of milliseconds between each card. if true, chain animations

    Returns Promise<boolean>

  • Checks if the card can be added. By default, only if it isn't already present in the stock.

    Parameters

    Returns boolean

    if the card can be added

  • Set the selectable class for each card.

    Parameters

    • Optional selectableCards: T[]

      the selectable cards. If unset, all cards are marked selectable. Default unset.

    Returns void

  • Set if the stock is selectable, and if yes if it can be multiple. If set to 'none', it will unselect all selected cards.

    Parameters

    • selectionMode: CardSelectionMode

      the selection mode

    • Optional selectableCards: T[]

      the selectable cards (all if unset). Calls setSelectableCards method

    Returns void

Generated using TypeDoc