A stock with fixed slots (some can be empty)

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

mapCardToSlot?: ((card) => SlotId)

Type declaration

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'
slotClasses: string[]
slots: HTMLDivElement[] = []
slotsIds: SlotId[] = []

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>

  • Add new slots ids. Will not change nor empty the existing ones.

    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

  • Change the slots ids. Will empty the stock before re-creating the slots.

    Parameters

    • slotsIds: SlotId[]

      the new slotsIds. Will replace the old ones.

    Returns void

  • Swap cards inside the slot stock.

    Parameters

    • cards: T[]

      the cards to swap

    • Optional settings: AddCardSettings

      for updateInformations and selectable

    Returns Promise<boolean[]>

Generated using TypeDoc