Skip to content

Commit

Permalink
Merge pull request #384 from Lodestone-Team/363-macro-text-overlap-an…
Browse files Browse the repository at this point in the history
…d-ui-fixes

363 macro text overlap and UI fixes
  • Loading branch information
CheatCod committed Jun 17, 2024
2 parents da82405 + 0fcef17 commit 9527bc4
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 94 deletions.
4 changes: 2 additions & 2 deletions dashboard/src/components/Instance/InstanceSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function InstanceSetting() {
key={section.section_id}
className="mb-16 flex flex-col gap-4 @4xl:flex-row"
>
<div className="w-80 shrink-0">
<div className="w-full shrink-0">
<h2 className="text-h2 font-extrabold tracking-medium">
{section.name}
</h2>
Expand Down Expand Up @@ -119,7 +119,7 @@ export default function InstanceSetting() {
</div>
))}
<div className="mb-16 flex flex-col gap-4 @4xl:flex-row">
<div className="w-80 shrink-0">
<div className="w-full shrink-0">
<h2 className="text-h2 font-extrabold tracking-medium">
Danger Zone
</h2>
Expand Down
197 changes: 108 additions & 89 deletions dashboard/src/pages/macros.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { useDocumentTitle } from 'usehooks-ts';
import { Table, TableColumn, TableRow } from 'components/Table';
import { faPlayCircle, faSkull, faGear } from '@fortawesome/free-solid-svg-icons';
import {
faPlayCircle,
faSkull,
faGear,
} from '@fortawesome/free-solid-svg-icons';
import { ButtonMenuConfig } from 'components/ButtonMenu';
import {
getMacros,
Expand All @@ -12,7 +16,14 @@ import {
storeMacroConfig,
} from 'utils/apis';
import { InstanceContext } from 'data/InstanceContext';
import { useContext, useEffect, useState, useMemo, Dispatch, SetStateAction } from 'react';
import {
useContext,
useEffect,
useState,
useMemo,
Dispatch,
SetStateAction,
} from 'react';
import { MacroEntry } from 'bindings/MacroEntry';
import clsx from 'clsx';
import { useQueryClient } from '@tanstack/react-query';
Expand All @@ -29,52 +40,55 @@ const MacroModalContents = ({
initialMacroData,
selectedInstance,
row,
macroDataSetter
macroDataSetter,
}: {
initialMacroData: GetConfigResponse,
selectedInstance: InstanceInfo,
row: TableRow,
macroDataSetter: Dispatch<SetStateAction<GetConfigResponse | undefined>>
initialMacroData: GetConfigResponse;
selectedInstance: InstanceInfo;
row: TableRow;
macroDataSetter: Dispatch<SetStateAction<GetConfigResponse | undefined>>;
}) => {
// mirror state so settings ui is in sync with what gets sent to backend
const [macroData, setMacroData] = useState<GetConfigResponse>(initialMacroData);
const [macroData, setMacroData] =
useState<GetConfigResponse>(initialMacroData);
return (
<div className={
clsx('mb-2', 'flex flex-col gap-4 @4xl:flex-row')}>
<span className="w-full min-w-0 rounded-lg border border-gray-faded/30 child:w-full child:border-b child:border-gray-faded/30 first:child:rounded-t-lg last:child:rounded-b-lg last:child:border-b-0">
{
Object.entries(macroData.config).map(([_, manifest], index) => {
<div className={clsx('mb-2', 'flex flex-col gap-4 @4xl:flex-row')}>
<span className="w-full min-w-0 rounded-lg border border-gray-faded/30 child:w-full child:border-b child:border-gray-faded/30 first:child:rounded-t-lg last:child:rounded-b-lg last:child:border-b-0">
{Object.entries(macroData.config).map(([_, manifest], index) => {
return (
<SettingField
key = {index}
instance = {selectedInstance}
sectionId={`${selectedInstance.uuid}-${row.name}`}
settingId={manifest.setting_id}
setting={adaptSettingManifest(manifest)}
error = {null}
onSubmit={(value) => {
const newState = {
...macroData,
config: {
...macroData.config,
[`${manifest.name}`]: {
...macroData.config[`${manifest.name}`],
value
}
}
}
macroDataSetter(newState);
setMacroData(newState);
}}
/> )
})
}

</span>
{macroData && macroData.error && <TextCaption text = {'This macro requires additional config.' || ''} className = 'text-small text-red-300 whitespace-pre-wrap'/>}
<SettingField
key={index}
instance={selectedInstance}
sectionId={`${selectedInstance.uuid}-${row.name}`}
settingId={manifest.setting_id}
setting={adaptSettingManifest(manifest)}
error={null}
onSubmit={(value) => {
const newState = {
...macroData,
config: {
...macroData.config,
[`${manifest.name}`]: {
...macroData.config[`${manifest.name}`],
value,
},
},
};
macroDataSetter(newState);
setMacroData(newState);
}}
/>
);
})}
</span>
{macroData && macroData.error && (
<TextCaption
text={'This macro requires additional config.' || ''}
className="whitespace-pre-wrap text-small text-red-300"
/>
)}
</div>
)
}
);
};

export type MacrosPage = 'All Macros' | 'Running Tasks' | 'History';
const Macros = () => {
Expand All @@ -83,8 +97,9 @@ const Macros = () => {
const [macros, setMacros] = useState<TableRow[]>([]);
const [tasks, setTasks] = useState<TableRow[]>([]);
const [history, setHistory] = useState<TableRow[]>([]);
const [ showMacroConfigModal, setShowMacroConfigModal ] = useState(false);
const [macroConfigContents, setMacroConfigContents] = useState<ReactNode>(null);
const [showMacroConfigModal, setShowMacroConfigModal] = useState(false);
const [macroConfigContents, setMacroConfigContents] =
useState<ReactNode>(null);

// macro settings state
const [macroData, setMacroData] = useState<GetConfigResponse>();
Expand Down Expand Up @@ -161,24 +176,29 @@ const Macros = () => {
toast.error('Error opening macro config: No instance selected');
return;
}
try {
const initialData = await getMacroConfig(selectedInstance.uuid, row.name as string);
try {
const initialData = await getMacroConfig(
selectedInstance.uuid,
row.name as string
);
// store initial settings to potentially rollback
setMacroData(initialData);
setMacroRow(row);

setMacroConfigContents(<MacroModalContents
initialMacroData={initialData}
macroDataSetter={setMacroData}
selectedInstance={selectedInstance}
row={row}
/>)
setShowMacroConfigModal(true)
setMacroConfigContents(
<MacroModalContents
initialMacroData={initialData}
macroDataSetter={setMacroData}
selectedInstance={selectedInstance}
row={row}
/>
);
setShowMacroConfigModal(true);
} catch (error) {
// error potentialy thrown by axioswrapper - should be error type
toast.error((error as Error).message);
}
}
};

useEffect(() => {
if (!selectedInstance) return;
Expand Down Expand Up @@ -227,8 +247,8 @@ const Macros = () => {
[]
);
if (result !== '') {
toast.error(result)
await openMacroModal(row)
toast.error(result);
await openMacroModal(row);
return;
}
const newMacros = macros.map((macro) => {
Expand All @@ -251,8 +271,8 @@ const Macros = () => {
variant: 'text',
intention: 'info',
disabled: false,
onClick: openMacroModal
}
onClick: openMacroModal,
},
],
},
},
Expand Down Expand Up @@ -344,35 +364,34 @@ const Macros = () => {
onClick={() => setShowCreateMacro(true)}
/>
</div> */}
{
showMacroConfigModal &&
<ConfirmDialog
title = "Macro Config"
type = "info"
isOpen = {showMacroConfigModal}
onClose = {() => {
setShowMacroConfigModal(false)
}}
confirmButtonText='Save'
closeButtonText='Close'
onConfirm={async () => {
if (!selectedInstance || !macroRow || !macroData) {
// theoretically, this should never occur
toast.error("Error: Invalid state")
} else {
await storeMacroConfig(
selectedInstance.uuid,
macroRow.name as string,
macroData.config
);
}

setShowMacroConfigModal(false)
}}
>
{macroConfigContents}
</ConfirmDialog>
}
{showMacroConfigModal && (
<ConfirmDialog
title="Macro Config"
type="info"
isOpen={showMacroConfigModal}
onClose={() => {
setShowMacroConfigModal(false);
}}
confirmButtonText="Save"
closeButtonText="Close"
onConfirm={async () => {
if (!selectedInstance || !macroRow || !macroData) {
// theoretically, this should never occur
toast.error('Error: Invalid state');
} else {
await storeMacroConfig(
selectedInstance.uuid,
macroRow.name as string,
macroData.config
);
}

setShowMacroConfigModal(false);
}}
>
{macroConfigContents}
</ConfirmDialog>
)}
<div className="mt-[0rem] mb-4">All macros for your instance</div>
<div className="flex flex-row justify-start border-b border-gray-400">
{pages.map((page) => (
Expand All @@ -381,8 +400,8 @@ const Macros = () => {
className={clsx(
selectedPage === page &&
'border-b-2 border-blue-200 text-blue-200',
'font-mediumbold mr-4 hover:cursor-pointer',
'enabled:focus-visible:ring-blue-faded/50 focus-visible:outline-none enabled:focus-visible:ring-4'
'mr-4 font-mediumbold hover:cursor-pointer',
'focus-visible:outline-none enabled:focus-visible:ring-4 enabled:focus-visible:ring-blue-faded/50'
)}
onClick={() => setSelectedPage(page)}
>
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const SettingsPage = () => {

return (
// used to possibly center the content
<div className="relative mx-auto flex h-full w-full max-w-2xl flex-row justify-center @container">
<div className="relative mx-auto flex h-full w-full flex-row justify-center @container">
<div className="flex w-full grow flex-col items-stretch gap-2 px-4 pt-8">
<div className="flex min-w-0 flex-row items-center gap-4">
<h1 className="dashboard-instance-heading">Core Settings</h1>
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/pages/settings/CoreSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ export const CoreSettings = () => {
These settings can cause irreversible damage to your server!
</h3>
</div>
<div className="w-full rounded-lg border border-red-faded child:w-full child:border-b child:border-gray-faded/30 first:child:rounded-t-lg last:child:rounded-b-lg last:child:border-b-0">
<div className="w-full rounded-lg border border-red-faded child:w-full child:border-b child:border-gray-faded/30 first:child:rounded-t-lg last:child:rounded-b-lg last:child:border-b-0 mb-10">
{unsafeModeField}
{openPortField}
</div>
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/pages/settings/UserSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export const UserSettings = () => {
</div>
</Dialog>
</Transition>
<div className="relative mx-auto flex h-full w-full max-w-2xl flex-row justify-center @container">
<div className="relative mx-auto flex h-full w-full max-w-2xl flex-row justify-center @container mb-10">
<div className="flex w-full flex-col gap-12 overflow-y-scroll px-4 pt-8">
<h1 className="dashboard-instance-heading">User Settings</h1>
{UserBoxes}
Expand Down

0 comments on commit 9527bc4

Please sign in to comment.