Sha256: 69262ead28b5fb6a5f31dbd4513ad9bc70b9d21d61908c8400b06c0e6d0096a0

Contents?: true

Size: 888 Bytes

Versions: 775

Compression:

Stored size: 888 Bytes

Contents

import PbEnhancedElement from '../pb_enhanced_element'

export default class PbFixedConfirmationToast extends PbEnhancedElement {
  static get selector() {
    return '.remove_toast'
  }

  connect() {
    this.self = this.element
    this.autoCloseToast(this.self)

    this.self.addEventListener('click', () => {
      this.removeToast(this.self)
    })
  }

  removeToast(elem) {
    elem.parentNode.removeChild(elem)
  }

  autoCloseToast(element) {
    const classListValues = element.classList.value
    const hasAutoCloseClass = classListValues.includes('auto_close')

    if (hasAutoCloseClass) {
      const classList = classListValues.split(' ')
      const autoCloseValue = classList[classList.length - 1].split('_')[2]
      const autoCloseIntValue = parseInt(autoCloseValue)

      setTimeout(() => {
        this.removeToast(element)
      }, autoCloseIntValue)
    }
  }
}

Version data entries

775 entries across 775 versions & 1 rubygems

Version Path
playbook_ui-14.7.0 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PLAY1613darkdatetimecolors4432 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.19 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.18 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PBNTR667railstypeaheadformintegration4424 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.17 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.16 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.15 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.14 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.13 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PBNTR666advancedtablefirstcolumn4406 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.12 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PLAY15814384 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PBNTR633dropdownavailablepropstable4380 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.11 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.10 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PLAY1551tiptapextbump4350 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.6.2.pre.alpha.PLAY15814348 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.9 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js
playbook_ui-14.7.0.pre.rc.8 app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js