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)

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>

  • Parameters

    • element: HTMLElement

      The element to animate. The element is added to the destination stock before the animation starts.

    • fromRect: DOMRect
    • settings: CardAnimationSettings

    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

  • Parameters

    • card: T

      a card in the stock

    Returns HTMLElement

    the HTML element generated for the card

  • Returns string

    the class to apply to selectable cards. Use class from manager is unset.

  • Returns string

    the class to apply to selected cards. Use class from manager is unset.

  • Returns string

    the class to apply to selectable cards. Use class from manager is unset.

  • Remove a card from the stock.

    Parameters

    Returns Promise<boolean>

  • Remove a set of card from the stock.

    Parameters

    • cards: T[]

      the cards to remove

    • Optional settings: RemoveCardSettings

      a RemoveCardSettings object

    Returns Promise<boolean>

  • Set selected state to a card.

    Parameters

    • card: T

      the card to select

    • silent: boolean = false

    Returns void

  • Set the card to its front (visible) or back (not visible) side.

    Parameters

    Returns void

  • 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

  • Set unselected state to a card.

    Parameters

    • card: T

      the card to unselect

    • silent: boolean = false

    Returns void

Generated using TypeDoc