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.21.0.pre.alpha.pbntr220improveexpansionspeed2451 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR224letuserresetrowexpansion2441 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR225advancedtablefeedback2438 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR238DatePickerYearBug2436 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.21.0.pre.alpha.pbntr220improveexpansionspeed2431 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.21.0.pre.alpha.pbntr220improveexpansionspeed2415 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.20.0.pre.alpha.play1247htmloptions2404 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.20.0.pre.alpha.play1247htmloptions2403 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.20.0.pre.alpha.PLAY12572402 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.21.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.20.0.pre.alpha.PBNTR225advancedtablefeedback2375 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.PBNTR200addadvancedtablekitdarkmodestyles2346 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2345 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2342 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.play1186collapsiblenaviconcolorbug2321 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.PBNTR211tablekitsubcomponentsreact2318 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2306 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2305 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.20.0 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx
playbook_ui-13.19.0.pre.alpha.play1141iconkitusinglibrary2264 app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx