Sha256: 488a14cf22ee78c5b6d93a041d39dc514f095fcb2c210f6c30c6e2ce49be180e

Contents?: true

Size: 1.19 KB

Versions: 662

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

662 entries across 662 versions & 1 rubygems

Version Path
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3368 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3366 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.34.0.pre.alpha.PLAY14143358 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.34.0.pre.alpha.PLAY14143357 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.34.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.1.pre.alpha.play1407statvaluekitinconsistencies3352 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.1.pre.alpha.PLAY14143340 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.1.pre.alpha.PLAY14143336 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.1.pre.alpha.PLAY14063320 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.1 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.0.pre.alpha.PLAY14143318 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.0.pre.alpha.PLAY14143312 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.0.pre.alpha.PBNTR405dropdownformfixesrails3311 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.0.pre.alpha.PLAY1454formpillicons3309 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.0.pre.alpha.PLAY14143306 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.33.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.32.0.pre.alpha.PBNTR405dropdownformfixesrails3301 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.32.0.pre.alpha.PLAY14143297 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.32.0.pre.alpha.PLAY14143288 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.32.0.pre.alpha.PLAY14143272 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx