Sha256: ead5a82c61a940821260593b8d7bb1fb67091d42109e5cc1cc433b4cd0f60023

Contents?: true

Size: 1.03 KB

Versions: 357

Compression:

Stored size: 1.03 KB

Contents

import PbEnhancedElement from '../pb_enhanced_element'

export default class PbTable extends PbEnhancedElement {
  static get selector(): string {
    return '.table-responsive-collapse'
  }

  connect(): void {
    const tables = document.querySelectorAll('.table-responsive-collapse');

    // Each Table
    [].forEach.call(tables, (table: HTMLTableElement) => {
      // Header Titles
      const headers: string[] = [];
      [].forEach.call(table.querySelectorAll('th'), (header: HTMLTableCellElement) => {
        const colSpan = header.colSpan
        for (let i = 0; i < colSpan; i++) {
          headers.push(header.textContent.replace(/\r?\n|\r/, ''));
        }
      });

      // for each row in tbody
      [].forEach.call(table.querySelectorAll('tbody tr'), (row: HTMLTableRowElement) => {
        // for each cell
        [].forEach.call(row.cells, (cell: HTMLTableCellElement, headerIndex: number) => {
          // apply the attribute
          cell.setAttribute('data-title', headers[headerIndex])
        })
      })
    })
  }
}

Version data entries

357 entries across 357 versions & 1 rubygems

Version Path
playbook_ui-14.0.0.pre.alpha.PLAY14733479 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-14.0.0.pre.alpha.dependabotnpmandyarnreactjoyride2823478 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-14.0.0.pre.alpha.PLAY14113475 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-14.0.0.pre.alpha.play1447alphatest3462 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-14.1.0 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.34.1.pre.alpha.PLAY14633399 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0.pre.alpha.PLAY14143318 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0.pre.alpha.PLAY14143312 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0.pre.alpha.PBNTR405dropdownformfixesrails3311 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0.pre.alpha.PLAY1454formpillicons3309 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0.pre.alpha.PLAY14143306 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0.pre.alpha.PLAY14143305 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.33.0 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.32.0.pre.alpha.PBNTR405dropdownformfixesrails3301 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.32.0.pre.alpha.PLAY14143297 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.31.0.pre.alpha.PLAY10863204 app/pb_kits/playbook/pb_table/index.ts
playbook_ui-13.31.0.pre.alpha.PLAY10863202 app/pb_kits/playbook/pb_table/index.ts