File editor groundwork and refactor work

This commit is contained in:
Reece
2025-06-20 17:51:24 +01:00
parent 9c410865f9
commit 3ebf75ae6f
14 changed files with 2237 additions and 733 deletions
@@ -9,6 +9,7 @@ import AutoAwesomeIcon from '@mui/icons-material/AutoAwesome';
import VisibilityIcon from "@mui/icons-material/Visibility";
import EditNoteIcon from "@mui/icons-material/EditNote";
import InsertDriveFileIcon from "@mui/icons-material/InsertDriveFile";
import FolderIcon from "@mui/icons-material/Folder";
import { Group } from "@mantine/core";
const VIEW_OPTIONS = [
@@ -36,6 +37,14 @@ const VIEW_OPTIONS = [
),
value: "fileManager",
},
{
label: (
<Group gap={4}>
<FolderIcon fontSize="small" />
</Group>
),
value: "fileEditor",
},
];
interface TopControlsProps {