-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from xi-effect/32348355
323448355 : DnD kit for channels and categories
- Loading branch information
Showing
5 changed files
with
316 additions
and
211 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { useMemo } from 'react'; | ||
import { IChannel, ICategory } from './types'; | ||
import { SortableContext, useSortable, verticalListSortingStrategy } from '@dnd-kit/sortable'; | ||
import { CSS } from '@dnd-kit/utilities'; | ||
import React from 'react'; | ||
import { Channel } from './Channel'; | ||
|
||
interface ICategoryContainer { | ||
category: ICategory; | ||
channels: IChannel[]; | ||
setSlideIndex?: (arg: number) => void; | ||
} | ||
|
||
export function CategoryContainer({ category, channels, setSlideIndex }: ICategoryContainer) { | ||
const { title, subtitle, id } = category; | ||
const channelsIds = useMemo(() => { | ||
return channels.map((channel: IChannel) => channel.elId); | ||
}, [channels]); | ||
|
||
const { setNodeRef, attributes, listeners, transform, transition, isDragging } = useSortable({ | ||
id: id, | ||
data: { | ||
type: 'Category', | ||
category, | ||
}, | ||
}); | ||
|
||
const categoryStyle = { | ||
minHeight: '100px', | ||
transition, | ||
transform: CSS.Transform.toString(transform), | ||
}; | ||
|
||
if (isDragging) { | ||
return ( | ||
<div style={categoryStyle} ref={setNodeRef}> | ||
<div className="border-b-brand-80 bg-brand-80 h-[4px] rounded-[2px]"></div> | ||
</div> | ||
); | ||
} | ||
|
||
return ( | ||
<div ref={setNodeRef} style={categoryStyle}> | ||
<div {...attributes} {...listeners}> | ||
{title && subtitle && ( | ||
<div className="flex flex-col items-start p-2"> | ||
<span className="text-[16px] font-semibold">{title}</span> | ||
<span className="text-[14px] font-normal">{subtitle}</span> | ||
</div> | ||
)} | ||
</div> | ||
<div className="flex flex-grow flex-col gap-2 overflow-x-hidden overflow-y-hidden"> | ||
<SortableContext strategy={verticalListSortingStrategy} items={channelsIds}> | ||
{channels.map((channel: IChannel) => { | ||
return <Channel setSlideIndex={setSlideIndex} key={channel.elId} channel={channel} />; | ||
})} | ||
</SortableContext> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,82 @@ | ||
/* eslint-disable jsx-a11y/click-events-have-key-events */ | ||
/* eslint-disable jsx-a11y/no-noninteractive-element-interactions */ | ||
|
||
'use client'; | ||
|
||
import { Announce, Calendar, Chat, Conference, Task, Updates } from '@xipkg/icons'; | ||
import React, { ReactNode } from 'react'; | ||
import { useParams, usePathname, useRouter } from 'next/navigation'; | ||
import { useSessionStorage } from 'pkg.utils'; | ||
import { ReactNode, useState } from 'react'; | ||
import { IChannel } from './types'; | ||
import { useSortable } from '@dnd-kit/sortable'; | ||
import { CSS } from '@dnd-kit/utilities'; | ||
import React from 'react'; | ||
import { useRouter } from 'next/navigation'; | ||
import { Announce, Calendar, Chat, Conference, Home, Task, Updates, Move } from '@xipkg/icons'; | ||
|
||
type IconsDictT = { | ||
interface IChannelProps { | ||
channel: IChannel; | ||
setSlideIndex?: (arg: number) => void; | ||
} | ||
|
||
interface IIconsDict { | ||
[key: string]: ReactNode; | ||
}; | ||
} | ||
|
||
const iconClassName = 'transition-colors ease-in group-hover:fill-brand-80'; | ||
|
||
const iconsDict: IconsDictT = { | ||
const iconsDict: IIconsDict = { | ||
announce: <Announce className={iconClassName} />, | ||
calendar: <Calendar className={iconClassName} />, | ||
updates: <Updates className={iconClassName} />, | ||
task: <Task className={iconClassName} />, | ||
chat: <Chat className={iconClassName} />, | ||
camera: <Conference className={iconClassName} />, | ||
home: <Home className={iconClassName} />, | ||
}; | ||
|
||
export type ChannelT = { | ||
elId: string; | ||
icon: string; | ||
label: string; | ||
type: string; | ||
link: string; | ||
}; | ||
|
||
export const Channel = ({ elId, icon, label, type, link }: ChannelT) => { | ||
const [slideIndex, setSlideIndex] = useSessionStorage('slide-index-menu', 1); | ||
console.log('slideIndex', slideIndex); | ||
export function Channel({ channel, setSlideIndex }: IChannelProps) { | ||
const [mouseOver, setMouseOver] = useState(false); | ||
const { setNodeRef, attributes, listeners, transform, transition, isDragging } = useSortable({ | ||
id: channel.elId, | ||
data: { | ||
type: 'Channel', | ||
channel, | ||
}, | ||
}); | ||
|
||
const params = useParams<{ id: string }>(); | ||
const pathname = usePathname(); | ||
const router = useRouter(); | ||
|
||
const activeType = pathname.split('/')[3]; | ||
|
||
const isActive = params.id === elId && type === activeType; | ||
|
||
const handleRouteChange = () => { | ||
setSlideIndex(1); | ||
router.push(link); | ||
setSlideIndex && setSlideIndex(1); | ||
router.push(channel.link); | ||
}; | ||
|
||
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({ id: elId }); | ||
|
||
const style = { | ||
transform: CSS.Transform.toString(transform), | ||
height: '40px', | ||
transition, | ||
transform: CSS.Transform.toString(transform), | ||
}; | ||
|
||
if (isDragging) { | ||
return ( | ||
<div ref={setNodeRef} style={style}> | ||
<div className="bg-brand-80 h-[4px] rounded-[2px]"></div> | ||
</div> | ||
); | ||
} | ||
|
||
return ( | ||
<li | ||
id={elId} | ||
className={`text-gray-90 ${isActive ? 'bg-brang-0' : ''}hover:bg-brand-0 hover:text-brand-80 group flex h-[40px] w-full flex-row items-center rounded-lg p-2 transition-colors ease-in hover:cursor-pointer`} | ||
onClick={handleRouteChange} | ||
<div | ||
onMouseEnter={() => setMouseOver(true)} | ||
onMouseLeave={() => setMouseOver(false)} | ||
ref={setNodeRef} | ||
style={style} | ||
{...attributes} | ||
{...listeners} | ||
onClick={() => handleRouteChange()} | ||
> | ||
{iconsDict[icon]} | ||
<span className="pl-2 text-[14px] font-normal"> {label} </span> | ||
</li> | ||
<div className="text-gray-90 hover:bg-brand-0 hover:text-brand-80 group flex h-[40px] w-full flex-row items-center justify-between rounded-lg p-2 transition-colors ease-in hover:cursor-pointer"> | ||
<div className="flex items-center"> | ||
{iconsDict[channel.icon]} | ||
<span className="pl-2 text-[14px] font-normal">{channel.label}</span> | ||
</div> | ||
{mouseOver ? ( | ||
<div {...attributes} {...listeners}> | ||
<Move /> | ||
</div> | ||
) : null} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
} |
Oops, something went wrong.