Added ability to add new location
This commit is contained in:
@@ -6,7 +6,7 @@ import React, { useEffect, useMemo } from "react";
|
|||||||
import { DndProvider, useDrag, useDrop } from "react-dnd";
|
import { DndProvider, useDrag, useDrop } from "react-dnd";
|
||||||
import { HTML5Backend } from "react-dnd-html5-backend";
|
import { HTML5Backend } from "react-dnd-html5-backend";
|
||||||
|
|
||||||
import { EditOutlined, EyeOutlined } from "@ant-design/icons";
|
import { DeleteOutlined, EditOutlined, EyeOutlined, PlusOutlined } from "@ant-design/icons";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import SpoolIcon from "../../components/spoolIcon";
|
import SpoolIcon from "../../components/spoolIcon";
|
||||||
import { useGetSetting, useSetSetting } from "../../utils/querySettings";
|
import { useGetSetting, useSetSetting } from "../../utils/querySettings";
|
||||||
@@ -82,7 +82,17 @@ function SpoolCard({ spool }: { spool: ISpool }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function LocationContainer({ title, spools }: { title: string; spools: ISpool[] }) {
|
function LocationContainer({
|
||||||
|
title,
|
||||||
|
spools,
|
||||||
|
showDelete,
|
||||||
|
onDelete,
|
||||||
|
}: {
|
||||||
|
title: string;
|
||||||
|
spools: ISpool[];
|
||||||
|
showDelete?: boolean;
|
||||||
|
onDelete?: () => void;
|
||||||
|
}) {
|
||||||
const { token } = useToken();
|
const { token } = useToken();
|
||||||
const invalidate = useInvalidate();
|
const invalidate = useInvalidate();
|
||||||
|
|
||||||
@@ -106,7 +116,10 @@ function LocationContainer({ title, spools }: { title: string; spools: ISpool[]
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="loc-container">
|
<div className="loc-container">
|
||||||
<h3>{title}</h3>
|
<h3>
|
||||||
|
<span>{title}</span>
|
||||||
|
{showDelete && <Button icon={<DeleteOutlined />} size="small" type="text" onClick={onDelete} />}
|
||||||
|
</h3>
|
||||||
<div className="loc-spools" ref={drop} style={style}>
|
<div className="loc-spools" ref={drop} style={style}>
|
||||||
{spools.map((spool) => (
|
{spools.map((spool) => (
|
||||||
<SpoolCard key={spool.id} spool={spool} />
|
<SpoolCard key={spool.id} spool={spool} />
|
||||||
@@ -168,31 +181,41 @@ export const Locations: React.FC<IResourceComponentsProps> = () => {
|
|||||||
|
|
||||||
// Create list of locations that's sorted
|
// Create list of locations that's sorted
|
||||||
const locationsList = useMemo(() => {
|
const locationsList = useMemo(() => {
|
||||||
// Start with the locations from the spools
|
// Start with the locations setting
|
||||||
let allLocs = [...Object.keys(spoolLocations), ...settingsLocations];
|
let allLocs = settingsLocations;
|
||||||
|
console.log("settingsLocations", settingsLocations);
|
||||||
|
|
||||||
// Remove duplicates
|
// Add any missing locations from the spools
|
||||||
allLocs = [...new Set(allLocs)];
|
for (const loc of Object.keys(spoolLocations)) {
|
||||||
|
if (!allLocs.includes(loc)) {
|
||||||
allLocs.sort((a, b) => {
|
allLocs.push(loc);
|
||||||
// Sort alphabetically
|
}
|
||||||
return a.localeCompare(b);
|
}
|
||||||
});
|
|
||||||
|
|
||||||
return allLocs;
|
return allLocs;
|
||||||
}, [spoolLocations, settingsLocations]);
|
}, [spoolLocations, settingsLocations]);
|
||||||
|
|
||||||
// Create containers
|
// Create containers
|
||||||
const containers = locationsList.map((loc) => {
|
const containers = locationsList.map((loc) => {
|
||||||
return <LocationContainer key={loc} title={loc} spools={spoolLocations[loc] ?? []} />;
|
const spools = spoolLocations[loc] ?? [];
|
||||||
|
return (
|
||||||
|
<LocationContainer
|
||||||
|
key={loc}
|
||||||
|
title={loc}
|
||||||
|
spools={spools}
|
||||||
|
showDelete={spools.length == 0}
|
||||||
|
onDelete={() => {
|
||||||
|
setLocationsSetting.mutate(locationsList.filter((l) => l !== loc));
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update locations settings so it always includes all spool locations
|
// Update locations settings so it always includes all spool locations
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// Check if they're not the same
|
// Check if they're not the same
|
||||||
if (JSON.stringify(locationsList.sort()) !== JSON.stringify(settingsLocations.sort())) {
|
if (JSON.stringify(locationsList) !== JSON.stringify(settingsLocations)) {
|
||||||
console.log("Updating locations settings", locationsList, settingsLocations);
|
console.log("Updating locations settings", locationsList, settingsLocations);
|
||||||
// Update settings
|
|
||||||
setLocationsSetting.mutate(locationsList);
|
setLocationsSetting.mutate(locationsList);
|
||||||
}
|
}
|
||||||
}, [spoolLocations]);
|
}, [spoolLocations]);
|
||||||
@@ -207,7 +230,21 @@ export const Locations: React.FC<IResourceComponentsProps> = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<DndProvider backend={HTML5Backend}>
|
<DndProvider backend={HTML5Backend}>
|
||||||
<div className="loc-metacontainer">{containers}</div>
|
<div className="loc-metacontainer">
|
||||||
|
{containers}
|
||||||
|
<div className="newLocContainer">
|
||||||
|
<Button
|
||||||
|
type="dashed"
|
||||||
|
shape="circle"
|
||||||
|
icon={<PlusOutlined />}
|
||||||
|
size="large"
|
||||||
|
style={{
|
||||||
|
margin: "1em",
|
||||||
|
}}
|
||||||
|
onClick={() => setLocationsSetting.mutate([...settingsLocations, "New Location"])}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</DndProvider>
|
</DndProvider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -8,6 +8,13 @@
|
|||||||
width: 24em;
|
width: 24em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.loc-container h3 {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.loc-container .loc-spools {
|
.loc-container .loc-spools {
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user