Sha256: 488a14cf22ee78c5b6d93a041d39dc514f095fcb2c210f6c30c6e2ce49be180e

Contents?: true

Size: 1.19 KB

Versions: 632

Compression:

Stored size: 1.19 KB

Contents

import React from "react";
import FlexItem from "../../pb_flex/_flex_item";
import EditorButton from "./EditorButton";
import { ToolbarTypes } from "./EditorTypes";

const ToolbarHistoryItems = ({editor}: any): React.ReactElement => {

const toolbarHistoryItems = [
    {
        classname: `toolbar_button`,
        icon: "undo",
        text: "Undo",
        onclick: () => editor.chain().focus().undo().run(),
        disable: !editor.can().chain().focus().undo().run()
    },
    {
        classname: `toolbar_button`,
        icon: "redo",
        text: "Redo",
        onclick: () => editor.chain().focus().redo().run(),
        disable: !editor.can().chain().focus().redo().run()
    },
];

    return (
    <>
    <FlexItem displayFlex>
          {toolbarHistoryItems.map(
            ({ onclick, classname, disable, icon, text }: ToolbarTypes, index: number) => (
              <EditorButton
                  classname={classname}
                  disable={disable}
                  icon={icon}
                  key={index}
                  onclick={onclick}
                  text={text}
              />
            )
          )}
        </FlexItem>
    </>
    )
}

export default ToolbarHistoryItems

Version data entries

632 entries across 632 versions & 1 rubygems

Version Path
playbook_ui-13.29.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.PBNTR297gradientoverlay3029 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.pbntr312tableheaderflexremoval3019 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.dialogturbostreameventlistener3017 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.PLAY1338alpha3001 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.PLAY1343fixTooltiprunwayissue2987 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.PLAY1343fixTooltiprunwayissue2986 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.28.0.pre.alpha.PLAY1343fixTooltiprunwayissue2984 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.27.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.26.0.pre.alpha.PBNTR291Dropdownrailsv22840 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.26.0.pre.alpha.jasoncypretpatch12820 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.26.0.pre.alpha.jasoncypretpatch12816 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0.pre.alpha.PBNTR291Dropdownrailsv22812 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.26.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0.pre.alpha.PLAY1249fixTooltipswrappingformelementscausingmisalignment2785 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0.pre.alpha.PLAY1249fixTooltipswrappingformelementscausingmisalignment2783 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0.pre.alpha.PBNTR272Dropdownkitv42769 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0.pre.alpha.barchartfix2766 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0.pre.alpha.PLAY761globalpaddingpropsbuttons2713 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.25.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx