2023-02-10 12:26:57 +01:00
|
|
|
import { Menu, Icon, Text, PopupTrigger, Popup, Item, Button } from 'react-basics';
|
|
|
|
import Icons from 'components/icons';
|
2022-08-04 12:56:30 +02:00
|
|
|
import { saveDashboard } from 'store/dashboard';
|
2023-03-22 22:05:55 +01:00
|
|
|
import useMessages from 'hooks/useMessages';
|
2022-03-02 08:03:50 +01:00
|
|
|
|
|
|
|
export default function DashboardSettingsButton() {
|
2023-03-22 22:05:55 +01:00
|
|
|
const { formatMessage, labels } = useMessages();
|
2022-03-02 08:03:50 +01:00
|
|
|
|
|
|
|
const menuOptions = [
|
|
|
|
{
|
2023-03-22 22:05:55 +01:00
|
|
|
label: formatMessage(labels.toggleCharts),
|
2022-03-02 08:03:50 +01:00
|
|
|
value: 'charts',
|
|
|
|
},
|
2022-07-25 08:25:04 +02:00
|
|
|
{
|
2023-03-22 22:05:55 +01:00
|
|
|
label: formatMessage(labels.editDashboard),
|
2022-07-25 08:25:04 +02:00
|
|
|
value: 'order',
|
|
|
|
},
|
2022-03-02 08:03:50 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
function handleSelect(value) {
|
|
|
|
if (value === 'charts') {
|
2022-08-05 06:37:18 +02:00
|
|
|
saveDashboard(state => ({ showCharts: !state.showCharts }));
|
2022-03-02 08:03:50 +01:00
|
|
|
}
|
2022-07-25 08:25:04 +02:00
|
|
|
if (value === 'order') {
|
2022-08-04 12:56:30 +02:00
|
|
|
saveDashboard({ editing: true });
|
2022-07-25 08:25:04 +02:00
|
|
|
}
|
2022-03-02 08:03:50 +01:00
|
|
|
}
|
|
|
|
|
2022-12-27 01:57:59 +01:00
|
|
|
return (
|
2023-02-10 12:26:57 +01:00
|
|
|
<PopupTrigger>
|
|
|
|
<Button>
|
|
|
|
<Icon>
|
|
|
|
<Icons.Edit />
|
|
|
|
</Icon>
|
|
|
|
<Text>{formatMessage(labels.edit)}</Text>
|
|
|
|
</Button>
|
|
|
|
<Popup alignment="end">
|
|
|
|
<Menu variant="popup" items={menuOptions} onSelect={handleSelect}>
|
|
|
|
{({ label, value }) => <Item key={value}>{label}</Item>}
|
|
|
|
</Menu>
|
|
|
|
</Popup>
|
|
|
|
</PopupTrigger>
|
2022-12-27 01:57:59 +01:00
|
|
|
);
|
2022-03-02 08:03:50 +01:00
|
|
|
}
|