Add unit test.

This commit is contained in:
Paulo Gustavo Veiga 2022-10-23 00:34:09 -07:00
parent fa943b302f
commit 6ef810b77c
4 changed files with 42 additions and 30 deletions

View File

@ -17,29 +17,39 @@
*/
import React, { useEffect, useState } from 'react';
import ActionConfig from '../../../../classes/action/action-config';
import Editor from '../../../../classes/model/editor';
import { ToolbarMenuItem } from '../../../toolbar';
const UndoAndRedo = (props: {
type UndoAndRedo = {
configuration: ActionConfig;
disabledCondition: (event) => boolean;
}) => {
const [disabled, setDisabled] = useState(true);
useEffect(() => {
const handleUpdate: any = (event) => {
const isDisabled = props.disabledCondition(event);
setDisabled(!isDisabled);
model: Editor;
};
return () => {
designer.removeEvent('modelUpdate', handleUpdate);
const UndoAndRedo = ({ configuration, disabledCondition, model }: UndoAndRedo) => {
const [disabled, setDisabled] = useState(true);
useEffect(() => {
if (model?.isMapLoadded()) {
const handleUpdate: any = (event) => {
const isDisabled = disabledCondition(event);
setDisabled(!isDisabled);
return () => {
designer.removeEvent('modelUpdate', handleUpdate);
};
};
};
designer.addEvent('modelUpdate', handleUpdate);
}, []);
if (model.getDesigner()) {
designer.addEvent('modelUpdate', handleUpdate);
}
}
}, [model?.isMapLoadded()]);
return (
<ToolbarMenuItem
configuration={{
...props.configuration,
...configuration,
disabled: () => disabled,
}}
></ToolbarMenuItem>

View File

@ -116,6 +116,7 @@ const AppBar = ({ model, mapInfo, capability, onAction, accountConfig }: AppBarP
onClick: () => designer.undo(),
}}
disabledCondition={(event) => event.undoSteps > 0}
model={model}
/>
),
visible: !capability.isHidden('undo-changes'),
@ -133,6 +134,7 @@ const AppBar = ({ model, mapInfo, capability, onAction, accountConfig }: AppBarP
onClick: () => designer.redo(),
}}
disabledCondition={(event) => event.redoSteps > 0}
model={model}
/>
),
visible: !capability.isHidden('redo-changes'),

View File

@ -31,7 +31,6 @@ const initialization = (designer: Designer) => {
};
const persistence = new LocalStorageManager('samples/{id}.wxml', false, false);
const mapId = 'welcome';
const options: EditorOptions = {
mode: 'edition-owner',
locale: 'en',

View File

@ -273,20 +273,21 @@ describe('Toolbar', () => {
});
});
// describe('AppBar', () => {
// it('When render it displays a menu', () => {
// const capacity = new Capability('edition-owner', false);
// const model = new Editor(null);
describe('AppBar', () => {
it('When render it displays a menu', () => {
const capacity = new Capability('edition-owner', false);
const model = new Editor(null);
// render(
// <IntlProvider>
// <AppBar
// mapInfo={new MapInfoImpl('welcome', 'Develop Map Title', false)}
// capability={capacity}
// model={model}
// />,
// </IntlProvider>
// );
// screen.getByRole('menubar');
// });
// });
render(
<IntlProvider locale="en">
<AppBar
mapInfo={new MapInfoImpl('welcome', 'Develop Map Title', false)}
capability={capacity}
model={model}
/>
,
</IntlProvider>,
);
screen.getByRole('menubar');
});
});