mirror of
https://github.com/openziti/zrok.git
synced 2025-03-13 15:08:21 +01:00
split out ReleaseShareModal (#822)
This commit is contained in:
parent
edc3d08b18
commit
143c4b88ab
53
ui100/src/ReleaseShareModal.tsx
Normal file
53
ui100/src/ReleaseShareModal.tsx
Normal file
@ -0,0 +1,53 @@
|
||||
import {Share} from "./api";
|
||||
import {useEffect, useRef, useState} from "react";
|
||||
import {Box, Button, Checkbox, FormControlLabel, Grid2, Modal, Typography} from "@mui/material";
|
||||
import {modalStyle} from "./styling/theme.ts";
|
||||
|
||||
interface ReleaseShareProps {
|
||||
close: () => void;
|
||||
isOpen: boolean;
|
||||
detail: Share;
|
||||
action: () => void;
|
||||
}
|
||||
|
||||
const ReleaseShareModal = ({ close, isOpen, detail, action }: ReleaseShareProps) => {
|
||||
const [token, setToken] = useState<String>("");
|
||||
const [checked, setChecked] = useState<boolean>(false);
|
||||
const checkedRef = useRef<boolean>();
|
||||
checkedRef.current = checked;
|
||||
|
||||
const toggleChecked = () => {
|
||||
setChecked(!checkedRef.current);
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
setChecked(false);
|
||||
}, [isOpen]);
|
||||
|
||||
useEffect(() => {
|
||||
if(detail && detail.token) {
|
||||
setToken(detail.token);
|
||||
}
|
||||
}, [detail]);
|
||||
|
||||
return (
|
||||
<Modal open={isOpen} onClose={close}>
|
||||
<Box sx={{ ...modalStyle }}>
|
||||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center">
|
||||
<Typography variant="h5"><strong>Release Share</strong></Typography>
|
||||
</Grid2>
|
||||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center">
|
||||
<Typography variant="body1">Would you like to release the share <code>{token}</code> ?</Typography>
|
||||
</Grid2>
|
||||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center">
|
||||
<FormControlLabel control={<Checkbox checked={checked} onChange={toggleChecked} />} label={<p>I confirm the release of <code>{token}</code></p>} sx={{ mt: 2 }} />
|
||||
</Grid2>
|
||||
<Grid2 container sx={{ flexGrow: 1 }} alignItems="center">
|
||||
<Button color="error" variant="contained" disabled={!checked} onClick={action}>Release</Button>
|
||||
</Grid2>
|
||||
</Box>
|
||||
</Modal>
|
||||
)
|
||||
}
|
||||
|
||||
export default ReleaseShareModal;
|
@ -1,59 +1,12 @@
|
||||
import {Node} from "@xyflow/react";
|
||||
import {Box, Button, Checkbox, FormControlLabel, Grid2, Modal, Tooltip, Typography} from "@mui/material";
|
||||
import {Button, Grid2, Tooltip, Typography} from "@mui/material";
|
||||
import ShareIcon from "@mui/icons-material/Share";
|
||||
import {Configuration, MetadataApi, Share, ShareApi} from "./api";
|
||||
import {useEffect, useRef, useState} from "react";
|
||||
import {useEffect, useState} from "react";
|
||||
import PropertyTable from "./PropertyTable.tsx";
|
||||
import useStore from "./model/store.ts";
|
||||
import DeleteIcon from "@mui/icons-material/Delete";
|
||||
import {modalStyle} from "./styling/theme.ts";
|
||||
|
||||
interface ReleaseShareProps {
|
||||
close: () => void;
|
||||
isOpen: boolean;
|
||||
detail: Share;
|
||||
action: () => void;
|
||||
}
|
||||
|
||||
const ReleaseShareModal = ({ close, isOpen, detail, action }: ReleaseShareProps) => {
|
||||
const [token, setToken] = useState<String>("");
|
||||
const [checked, setChecked] = useState<boolean>(false);
|
||||
const checkedRef = useRef<boolean>();
|
||||
checkedRef.current = checked;
|
||||
|
||||
const toggleChecked = (event: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setChecked(!checkedRef.current);
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
setChecked(false);
|
||||
}, [isOpen]);
|
||||
|
||||
useEffect(() => {
|
||||
if(detail && detail.token) {
|
||||
setToken(detail.token);
|
||||
}
|
||||
}, [detail]);
|
||||
|
||||
return (
|
||||
<Modal open={isOpen} onClose={close}>
|
||||
<Box sx={{ ...modalStyle }}>
|
||||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center">
|
||||
<Typography variant="h5"><strong>Release Share</strong></Typography>
|
||||
</Grid2>
|
||||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center">
|
||||
<Typography variant="body1">Would you like to release the share <code>{token}</code> ?</Typography>
|
||||
</Grid2>
|
||||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center">
|
||||
<FormControlLabel control={<Checkbox checked={checked} onChange={toggleChecked} />} label={<p>I confirm the release of <code>{token}</code></p>} sx={{ mt: 2 }} />
|
||||
</Grid2>
|
||||
<Grid2 container sx={{ flexGrow: 1 }} alignItems="center">
|
||||
<Button color="error" variant="contained" disabled={!checked} onClick={action}>Release</Button>
|
||||
</Grid2>
|
||||
</Box>
|
||||
</Modal>
|
||||
)
|
||||
}
|
||||
import ReleaseShareModal from "./ReleaseShareModal.tsx";
|
||||
|
||||
interface SharePanelProps {
|
||||
share: Node;
|
||||
|
Loading…
Reference in New Issue
Block a user