2022-06-01 20:47:47 +02:00
|
|
|
import { getUnpackedSettings } from "http2";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { h, VNode } from "preact";
|
|
|
|
import { useState } from "preact/hooks";
|
2022-06-01 20:47:47 +02:00
|
|
|
import { Button } from "../mui/Button.js";
|
|
|
|
import arrowDown from "../svg/chevron-down.svg";
|
|
|
|
import { ParagraphClickable } from "./styled/index.js";
|
2022-01-10 20:04:53 +01:00
|
|
|
|
|
|
|
export interface Props {
|
2022-02-23 19:18:37 +01:00
|
|
|
label: (s: string) => VNode;
|
2022-01-10 20:04:53 +01:00
|
|
|
actions: string[];
|
2022-06-01 20:47:47 +02:00
|
|
|
onClick: (s: string) => Promise<void>;
|
2022-01-10 20:04:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* functionality: it will receive a list of actions, take the first actions as
|
|
|
|
* the first chosen action
|
|
|
|
* the user may change the chosen action
|
|
|
|
* when the user click the button it will call onClick with the chosen action
|
|
|
|
* as argument
|
|
|
|
*
|
|
|
|
* visually: it is a primary button with a select handler on the right
|
|
|
|
*
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
export function MultiActionButton({
|
|
|
|
label,
|
|
|
|
actions,
|
|
|
|
onClick: doClick,
|
|
|
|
}: Props): VNode {
|
|
|
|
const defaultAction = actions.length > 0 ? actions[0] : "";
|
|
|
|
|
|
|
|
const [opened, setOpened] = useState(false);
|
|
|
|
const [selected, setSelected] = useState<string>(defaultAction);
|
|
|
|
|
|
|
|
const canChange = actions.length > 1;
|
|
|
|
const options = canChange ? actions.filter((a) => a !== selected) : [];
|
|
|
|
function select(m: string): void {
|
|
|
|
setSelected(m);
|
|
|
|
setOpened(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!canChange) {
|
|
|
|
return (
|
2022-06-01 20:47:47 +02:00
|
|
|
<Button variant="contained" onClick={() => doClick(selected)}>
|
2022-01-10 20:04:53 +01:00
|
|
|
{label(selected)}
|
2022-06-01 20:47:47 +02:00
|
|
|
</Button>
|
2022-01-10 20:04:53 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div style={{ position: "relative", display: "inline-block" }}>
|
|
|
|
{opened && (
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
position: "absolute",
|
|
|
|
bottom: 32 + 5,
|
|
|
|
right: 0,
|
|
|
|
marginLeft: 8,
|
|
|
|
marginRight: 8,
|
|
|
|
borderRadius: 5,
|
|
|
|
border: "1px solid blue",
|
|
|
|
background: "white",
|
|
|
|
boxShadow: "0px 8px 16px 0px rgba(0,0,0,0.2)",
|
|
|
|
zIndex: 1,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{options.map((m) => (
|
|
|
|
<ParagraphClickable key={m} onClick={() => select(m)}>
|
|
|
|
{label(m)}
|
|
|
|
</ParagraphClickable>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
)}
|
2022-06-01 20:47:47 +02:00
|
|
|
<Button
|
|
|
|
variant="contained"
|
2022-01-10 20:04:53 +01:00
|
|
|
onClick={() => doClick(selected)}
|
|
|
|
style={{
|
|
|
|
borderTopRightRadius: 0,
|
|
|
|
borderBottomRightRadius: 0,
|
|
|
|
marginRight: 0,
|
2022-06-01 20:47:47 +02:00
|
|
|
// maxWidth: 170,
|
2022-02-16 19:15:47 +01:00
|
|
|
overflowX: "hidden",
|
|
|
|
textOverflow: "ellipsis",
|
2022-01-10 20:04:53 +01:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
{label(selected)}
|
2022-06-01 20:47:47 +02:00
|
|
|
</Button>
|
2022-01-10 20:04:53 +01:00
|
|
|
|
2022-06-01 20:47:47 +02:00
|
|
|
<Button
|
|
|
|
variant="outlined"
|
|
|
|
onClick={async () => setOpened((s) => !s)}
|
2022-01-10 20:04:53 +01:00
|
|
|
style={{
|
|
|
|
marginLeft: 0,
|
|
|
|
borderTopLeftRadius: 0,
|
|
|
|
borderBottomLeftRadius: 0,
|
2022-06-01 20:47:47 +02:00
|
|
|
paddingLeft: 4,
|
|
|
|
paddingRight: 4,
|
|
|
|
minWidth: "unset",
|
2022-01-10 20:04:53 +01:00
|
|
|
}}
|
|
|
|
>
|
2022-03-24 20:02:38 +01:00
|
|
|
<div
|
2022-03-28 19:03:59 +02:00
|
|
|
style={{
|
|
|
|
height: 24,
|
|
|
|
width: 24,
|
2022-06-01 20:47:47 +02:00
|
|
|
marginLeft: 4,
|
|
|
|
marginRight: 4,
|
|
|
|
// fill: "white",
|
2022-03-28 19:03:59 +02:00
|
|
|
}}
|
2022-03-24 20:02:38 +01:00
|
|
|
dangerouslySetInnerHTML={{ __html: arrowDown }}
|
|
|
|
/>
|
2022-06-01 20:47:47 +02:00
|
|
|
</Button>
|
2022-01-10 20:04:53 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|