mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 23:12:23 +00:00
chore(dockview): remove unused Dockview configuration file
- Deleted `src/config/dockview.ts` as it was no longer needed with the refactor to support dynamic panel options.
This commit is contained in:
parent
54998d5c1b
commit
a897e00a72
@ -1,73 +0,0 @@
|
||||
import { AddPanelOptions } from "dockview";
|
||||
|
||||
export const DefaultDockviewOptions: AddPanelOptions[] = [
|
||||
{
|
||||
id: "Description",
|
||||
component: "Description",
|
||||
title: "Description",
|
||||
params: { icon: "FileTextIcon" },
|
||||
},
|
||||
{
|
||||
id: "Solutions",
|
||||
component: "Solutions",
|
||||
title: "Solutions",
|
||||
params: { icon: "FlaskConicalIcon" },
|
||||
position: {
|
||||
referencePanel: "Description",
|
||||
direction: "within",
|
||||
},
|
||||
inactive: true,
|
||||
},
|
||||
{
|
||||
id: "Submissions",
|
||||
component: "Submissions",
|
||||
title: "Submissions",
|
||||
params: { icon: "CircleCheckBigIcon" },
|
||||
position: {
|
||||
referencePanel: "Solutions",
|
||||
direction: "within",
|
||||
},
|
||||
inactive: true,
|
||||
},
|
||||
{
|
||||
id: "Code",
|
||||
component: "Code",
|
||||
title: "Code",
|
||||
params: { icon: "SquarePenIcon" },
|
||||
position: {
|
||||
referencePanel: "Submissions",
|
||||
direction: "right",
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "Bot",
|
||||
component: "Bot",
|
||||
title: "Bot",
|
||||
params: { icon: "BotIcon" },
|
||||
position: {
|
||||
referencePanel: "Code",
|
||||
direction: "right",
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "Testcase",
|
||||
component: "Testcase",
|
||||
title: "Testcase",
|
||||
params: { icon: "SquareCheckIcon" },
|
||||
position: {
|
||||
referencePanel: "Code",
|
||||
direction: "below",
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "TestResult",
|
||||
component: "TestResult",
|
||||
title: "Test Result",
|
||||
params: { icon: "TerminalIcon" },
|
||||
position: {
|
||||
referencePanel: "Testcase",
|
||||
direction: "within",
|
||||
},
|
||||
inactive: true,
|
||||
},
|
||||
];
|
Loading…
Reference in New Issue
Block a user