2022-08-04 12:56:30 +02:00
|
|
|
import { defineMessages, useIntl } from 'react-intl';
|
2023-02-10 12:26:57 +01:00
|
|
|
import { Menu, Icon, Text, PopupTrigger, Popup, Item, Button } from 'react-basics';
|
|
|
|
import Icons from 'components/icons';
|
|
|
|
import { labels } from 'components/messages';
|
2022-08-04 12:56:30 +02:00
|
|
|
import { saveDashboard } from 'store/dashboard';
|
2022-03-02 08:03:50 +01:00
|
|
|
|
2022-08-04 12:56:30 +02:00
|
|
|
const messages = defineMessages({
|
|
|
|
toggleCharts: { id: 'message.toggle-charts', defaultMessage: 'Toggle charts' },
|
|
|
|
editDashboard: { id: 'message.edit-dashboard', defaultMessage: 'Edit dashboard' },
|
|
|
|
});
|
2022-03-02 08:03:50 +01:00
|
|
|
|
|
|
|
export default function DashboardSettingsButton() {
|
2022-08-04 12:56:30 +02:00
|
|
|
const { formatMessage } = useIntl();
|
2022-03-02 08:03:50 +01:00
|
|
|
|
|
|
|
const menuOptions = [
|
|
|
|
{
|
2022-08-04 12:56:30 +02:00
|
|
|
label: formatMessage(messages.toggleCharts),
|
2022-03-02 08:03:50 +01:00
|
|
|
value: 'charts',
|
|
|
|
},
|
2022-07-25 08:25:04 +02:00
|
|
|
{
|
2022-08-04 12:56:30 +02:00
|
|
|
label: formatMessage(messages.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
|
|
|
}
|