Sha256: b637564af248703294b270e723d6b27d3dff2c1e6d28417c1441b4358b6311f9

Contents?: true

Size: 680 Bytes

Versions: 916

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

916 entries across 916 versions & 1 rubygems

Version Path
playbook_ui-13.7.0.pre.alpha.play845allkitsbytypes1232 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.7.0.pre.alpha.play845allkitsbytypes1231 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.7.0.pre.alpha.play978makehighchartsadevdependencypoc1223 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.6.0.pre.alpha.play845allkitsbytypes1219 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.7.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.6.0.pre.alpha.tiptapreacthookformbug1210 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.6.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.5.0.pre.alpha.play984collapsiblekithidestooltips1203 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.5.0.pre.alpha.PLAY823globalpropoverflow1191 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.5.0.pre.alpha.PLAY823globalpropoverflow1188 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.5.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.4.0.pre.alpha.PLAY973Hash1181 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.4.0.pre.alpha.play961turnoffdeprecationwarnings1171 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.4.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.3.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.2.0.pre.alpha.PLAY986dateTimeRounding1150 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.2.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.1.0 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.0.0.pre.alpha.PLAY966collapsiblenav41129 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts
playbook_ui-13.0.0.pre.alpha.PLAY966collapsiblenav41128 app/pb_kits/playbook/pb_rich_text_editor/useFocus.ts