Sha256: b637564af248703294b270e723d6b27d3dff2c1e6d28417c1441b4358b6311f9

Contents?: true

Size: 680 Bytes

Versions: 943

Compression:

Stored size: 680 Bytes

Contents

const useFocus = () => {
  const allTrixEditors = document.querySelectorAll(
    '.focus-editor-targets trix-editor'
  )
  allTrixEditors.forEach((editorElement: any) => {
    const toolbarElement = editorElement.toolbarElement
    if (editorElement == document.activeElement) {
      editorElement.classList.add('focused-editor')
      toolbarElement.style.display = 'block'
    } else {
      // don't hide the toolbar if we've unfocused to focus on the link dialog.
      if (!toolbarElement.contains(document.activeElement)) {
        editorElement.classList.remove('focused-editor')
        toolbarElement.style.display = 'none'
      }
    }
  })
}

export default useFocus

Version data entries

943 entries across 943 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5437 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR719listdraggablesimple5432 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR768stickyrightcolumn5431 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.12.0.pre.rc.6 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5415 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5413 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.12.0.pre.rc.5 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5409 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5400 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5392 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PLAY1720phonenumberinputformatAsYouType5377 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.play17725374 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.play17725372 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.12.0.pre.rc.4 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.hfhbrakemanplaybook5370 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.responsivetablerails5364 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.responsivetablerails5362 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR769sticky5359 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PBNTR573datepickerinvestigation5355 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5341 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts