Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Layers #48

Merged
merged 4 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { useAtom, useAtomValue } from 'jotai';
import Canvas from './components/Canvas';
import Inspector from './components/Inspector';
// import Layers from './components/Layers';
import Toolbar from './components/Toolbar';
import Zoom from './components/Zoom';
import { isDrawingAtom, onKeyPressAtom } from './store/store';
Expand Down Expand Up @@ -29,7 +28,6 @@ const App = () => {
<Toolbar />
<Canvas />
<Inspector />
{/* <Layers /> */}
<Zoom />
</div>
);
Expand Down
46 changes: 46 additions & 0 deletions src/assets/icons/Icons.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
export const IconLayerToBackFront = () => {
return (
<svg
aria-hidden="true"
focusable="false"
role="img"
viewBox="0 0 24 24"
fill="none"
strokeWidth="2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<g strokeWidth="1.5">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 10l0 10"></path>
<path d="M12 10l4 4"></path>
<path d="M12 10l-4 4"></path>
<path d="M4 4l16 0"></path>
</g>
</svg>
);
};

export const IconLayerToBackwardForward = () => {
return (
<svg
aria-hidden="true"
focusable="false"
role="img"
viewBox="0 0 24 24"
fill="none"
strokeWidth="2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<g strokeWidth="1.5">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 5l0 14"></path>
<path d="M16 9l-4 -4"></path>
<path d="M8 9l4 -4"></path>
</g>
</svg>
);
};
47 changes: 45 additions & 2 deletions src/components/Inspector.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { useMemo } from 'react';
import { useAtom, useAtomValue } from 'jotai';
import deleteIcon from '../assets/icons/trash.svg';
import {
deleteElementsAtom,
creationInitialElementAtom,
selectedElementAtom,
updateElementsAtom,
isDrawingAtom,
setLayersAtom,
} from '../store/store';
import { ElementProps } from '../types/CommonTypes';
import LineArrowProp from './inspectorElements/LineArrowProp';
import LineProp from './inspectorElements/LineProp';
import EdgeRoundProp from './inspectorElements/EdgeRoundProp';
Expand All @@ -19,10 +18,20 @@ import StrokeWidthProp from './inspectorElements/StrokeWidthProp';
import ColorsPalette from './inspectorElements/ColorsPalette';
import StrokeStyleProp from './inspectorElements/StrokeStyleProp';
import DuplicateProp from './inspectorElements/DuplicateProp';
import LayersBtn from './inspectorElements/LayersBtn';

import { ElementProps } from '../types/CommonTypes';

import deleteIcon from '../assets/icons/trash.svg';
import {
IconLayerToBackFront,
IconLayerToBackwardForward,
} from '../assets/icons/Icons';

const Inspector = () => {
const [, deleteElements] = useAtom(deleteElementsAtom);
const [, updateElements] = useAtom(updateElementsAtom);
const [, setLayers] = useAtom(setLayersAtom);
const selectedElement = useAtomValue(selectedElementAtom);
const [creationInitialElement, setCreationInitialElement] = useAtom(
creationInitialElementAtom,
Expand Down Expand Up @@ -234,6 +243,40 @@ const Inspector = () => {
strokeLinecap="round"
/>
</div>

<>
<p>Layers</p>
<div id="layers" className="flex flex-wrap gap-1">
<LayersBtn
Icon={IconLayerToBackFront}
className="bg-gray-200 h-8 min-w-8 p-[6px] rounded-md rotate-180"
handlerClick={() => {
setLayers('back');
}}
/>
<LayersBtn
Icon={IconLayerToBackwardForward}
className="bg-gray-200 h-8 min-w-8 p-[6px] rounded-md rotate-180"
handlerClick={() => {
setLayers('backward');
}}
/>
<LayersBtn
Icon={IconLayerToBackwardForward}
className="bg-gray-200 h-8 min-w-8 p-[6px] rounded-md"
handlerClick={() => {
setLayers('forward');
}}
/>
<LayersBtn
Icon={IconLayerToBackFront}
className="bg-gray-200 h-8 min-w-8 p-[6px] rounded-md"
handlerClick={() => {
setLayers('front');
}}
/>
</div>
</>
</>
</aside>
)}
Expand Down
9 changes: 0 additions & 9 deletions src/components/Layers.tsx

This file was deleted.

18 changes: 18 additions & 0 deletions src/components/inspectorElements/LayersBtn.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
interface Props {
className?: string;
Icon?: () => JSX.Element;
handlerClick?: () => void;
}

const LayersBtn = ({ className, Icon, handlerClick }: Props) => {
return (
<button
onClick={handlerClick}
className={`${className} active:bg-blue-300`}
>
{Icon && <Icon />}
</button>
);
};

export default LayersBtn;
62 changes: 62 additions & 0 deletions src/store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ export const onDragStartAtom = atom(
} else {
set(selectedElementAtom, [element])
}
} else {
set(selectedElementAtom, [element])
}
set(isDraggingAtom, true)
}
Expand Down Expand Up @@ -450,4 +452,64 @@ export const duplicateAtom = atom(
set(selectedElementAtom, prev => [...prev, duplicatedElemment])
})
}
)

export const setLayersAtom = atom(
null,
(get, set, direction: string) => {
const selectedElement = get(selectedElementAtom)
switch (direction) {
case "back":
set(elementsAtom, (prev) => {
const filteredArray = prev.filter((el) => !selectedElement.find((selectedEl) => selectedEl.id === el.id))
return [...selectedElement, ...filteredArray]
})
break;
case "backward":
// spaghetti code / crappy code
set(elementsAtom, (prev) => {
const resultArray: typeof prev = []
const elementsToMove: typeof prev = []
const indexes: number[] = []
prev.forEach((el, i) => {
// filtering and saving index & element to insert
if (selectedElement.find((selectedEl) => selectedEl.id === el.id && i > 0)) {
elementsToMove.push(el)
indexes.push(i)
} else {
resultArray.push(el)
}
})
elementsToMove.forEach((el, i) => resultArray.splice(indexes[i] - 1, 0, el))
return resultArray
})
break;
case "forward":
// spaghetti code / crappy code
set(elementsAtom, (prev) => {
const resultArray: typeof prev = []
const elementsToMove: typeof prev = []
const indexes: number[] = []
prev.forEach((el, i) => {
if (selectedElement.find((selectedEl) => selectedEl.id === el.id)) {
elementsToMove.push(el)
indexes.push(i)
} else {
resultArray.push(el)
}
})
elementsToMove.forEach((el, i) => resultArray.splice(indexes[i] + 1, 0, el))
return resultArray
})
break;
case "front":
set(elementsAtom, (prev) => {
const filteredArray = prev.filter((el) => !selectedElement.find((selectedEl) => selectedEl.id === el.id))
return [...filteredArray, ...selectedElement]
})
break;

}

}
)