mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 23:46:19 +00:00
🆙 Small update toolbar
This commit is contained in:
@@ -216,14 +216,6 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
<motion.div variants={ itemVariants }>
|
<motion.div variants={ itemVariants }>
|
||||||
<ToolbarItemView icon="catalog" onClick={ () => CreateLinkEvent('catalog/toggle/normal') } className="tb-icon" />
|
<ToolbarItemView icon="catalog" onClick={ () => CreateLinkEvent('catalog/toggle/normal') } className="tb-icon" />
|
||||||
</motion.div>
|
</motion.div>
|
||||||
<motion.div variants={ itemVariants }>
|
|
||||||
<ToolbarItemView icon="buildersclub" onClick={ () => CreateLinkEvent('catalog/toggle/builder') } className="tb-icon" />
|
|
||||||
</motion.div>
|
|
||||||
<motion.div variants={ itemVariants } className="relative">
|
|
||||||
<ToolbarItemView icon="inventory" onClick={ () => CreateLinkEvent('inventory/toggle') } className="tb-icon" />
|
|
||||||
{ (getFullCount > 0) &&
|
|
||||||
<LayoutItemCountView count={ getFullCount } className="absolute -right-1 top-0" /> }
|
|
||||||
</motion.div>
|
|
||||||
<motion.div variants={ itemVariants } className="relative">
|
<motion.div variants={ itemVariants } className="relative">
|
||||||
<AnimatePresence>
|
<AnimatePresence>
|
||||||
{ isMeExpanded &&
|
{ isMeExpanded &&
|
||||||
@@ -237,7 +229,7 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
</motion.div> }
|
</motion.div> }
|
||||||
</AnimatePresence>
|
</AnimatePresence>
|
||||||
<motion.div
|
<motion.div
|
||||||
className="cursor-pointer"
|
className="cursor-pointer relative h-[40px] w-[40px] overflow-hidden"
|
||||||
whileHover={ { scale: 1.08 } }
|
whileHover={ { scale: 1.08 } }
|
||||||
whileTap={ { scale: 0.95 } }
|
whileTap={ { scale: 0.95 } }
|
||||||
onClick={ event =>
|
onClick={ event =>
|
||||||
@@ -245,11 +237,19 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
setMeExpanded(value => !value);
|
setMeExpanded(value => !value);
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
} }>
|
} }>
|
||||||
<LayoutAvatarImageView headOnly={ true } direction={ 2 } figure={ userFigure } className="tb-icon !h-[64px] !w-[32px] !bg-center !bg-no-repeat" style={ { marginTop: "8px" } } />
|
<LayoutAvatarImageView headOnly={ true } direction={ 2 } figure={ userFigure } className="tb-icon" style={ { backgroundSize: 'auto', backgroundPosition: '-25px -38px' } } />
|
||||||
</motion.div>
|
</motion.div>
|
||||||
{ (getTotalUnseen > 0) &&
|
{ (getTotalUnseen > 0) &&
|
||||||
<LayoutItemCountView count={ getTotalUnseen } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
<LayoutItemCountView count={ getTotalUnseen } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
||||||
</motion.div>
|
</motion.div>
|
||||||
|
<motion.div variants={ itemVariants }>
|
||||||
|
<ToolbarItemView icon="buildersclub" onClick={ () => CreateLinkEvent('catalog/toggle/builder') } className="tb-icon" />
|
||||||
|
</motion.div>
|
||||||
|
<motion.div variants={ itemVariants } className="relative">
|
||||||
|
<ToolbarItemView icon="inventory" onClick={ () => CreateLinkEvent('inventory/toggle') } className="tb-icon" />
|
||||||
|
{ (getFullCount > 0) &&
|
||||||
|
<LayoutItemCountView count={ getFullCount } className="absolute -right-1 top-0" /> }
|
||||||
|
</motion.div>
|
||||||
{ (isInRoom && showToolbarButton) &&
|
{ (isInRoom && showToolbarButton) &&
|
||||||
<motion.div variants={ itemVariants }>
|
<motion.div variants={ itemVariants }>
|
||||||
<ToolbarItemView icon="wired-tools" onClick={ openMonitor } className="tb-icon" />
|
<ToolbarItemView icon="wired-tools" onClick={ openMonitor } className="tb-icon" />
|
||||||
@@ -268,14 +268,14 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
{ (openTicketsCount > 0) &&
|
{ (openTicketsCount > 0) &&
|
||||||
<LayoutItemCountView count={ openTicketsCount } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
<LayoutItemCountView count={ openTicketsCount } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
||||||
</motion.div> }
|
</motion.div> }
|
||||||
{ isMod &&
|
|
||||||
<motion.div variants={ itemVariants }>
|
|
||||||
<ToolbarItemView icon="furnieditor" onClick={ () => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" />
|
|
||||||
</motion.div> }
|
|
||||||
{ (isHk && hkEnabled) &&
|
{ (isHk && hkEnabled) &&
|
||||||
<motion.div variants={ itemVariants }>
|
<motion.div variants={ itemVariants }>
|
||||||
<ToolbarItemView icon="housekeeping" onClick={ () => CreateLinkEvent('housekeeping/toggle') } className="tb-icon" />
|
<ToolbarItemView icon="housekeeping" onClick={ () => CreateLinkEvent('housekeeping/toggle') } className="tb-icon" />
|
||||||
</motion.div> }
|
</motion.div> }
|
||||||
|
{ isMod &&
|
||||||
|
<motion.div variants={ itemVariants }>
|
||||||
|
<ToolbarItemView icon="furnieditor" onClick={ () => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" />
|
||||||
|
</motion.div> }
|
||||||
</motion.div>
|
</motion.div>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
<motion.div
|
<motion.div
|
||||||
@@ -324,16 +324,7 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
<motion.div variants={ itemVariants }>
|
<motion.div variants={ itemVariants }>
|
||||||
<ToolbarItemView icon="catalog" onClick={ () => CreateLinkEvent('catalog/toggle/normal') } className="tb-icon" />
|
<ToolbarItemView icon="catalog" onClick={ () => CreateLinkEvent('catalog/toggle/normal') } className="tb-icon" />
|
||||||
</motion.div>
|
</motion.div>
|
||||||
<motion.div variants={ itemVariants }>
|
<motion.div variants={ itemVariants } className="relative shrink-0">
|
||||||
<ToolbarItemView icon="buildersclub" onClick={ () => CreateLinkEvent('catalog/toggle/builder') } className="tb-icon" />
|
|
||||||
</motion.div>
|
|
||||||
<motion.div variants={ itemVariants } className="relative">
|
|
||||||
<ToolbarItemView icon="inventory" onClick={ () => CreateLinkEvent('inventory/toggle') } className="tb-icon" />
|
|
||||||
{ (getFullCount > 0) &&
|
|
||||||
<LayoutItemCountView count={ getFullCount } className="absolute -right-1 top-0" /> }
|
|
||||||
</motion.div>
|
|
||||||
</motion.div>
|
|
||||||
<motion.div variants={ itemVariants } className="relative mx-[2px] shrink-0">
|
|
||||||
<AnimatePresence>
|
<AnimatePresence>
|
||||||
{ isMeExpanded &&
|
{ isMeExpanded &&
|
||||||
<motion.div
|
<motion.div
|
||||||
@@ -346,7 +337,7 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
</motion.div> }
|
</motion.div> }
|
||||||
</AnimatePresence>
|
</AnimatePresence>
|
||||||
<motion.div
|
<motion.div
|
||||||
className="cursor-pointer"
|
className="cursor-pointer relative h-[40px] w-[40px] overflow-hidden"
|
||||||
whileHover={ { scale: 1.08 } }
|
whileHover={ { scale: 1.08 } }
|
||||||
whileTap={ { scale: 0.95 } }
|
whileTap={ { scale: 0.95 } }
|
||||||
onClick={ event =>
|
onClick={ event =>
|
||||||
@@ -354,11 +345,20 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
setMeExpanded(value => !value);
|
setMeExpanded(value => !value);
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
} }>
|
} }>
|
||||||
<LayoutAvatarImageView headOnly={ true } direction={ 2 } figure={ userFigure } className="tb-icon !h-[64px] !w-[32px] !bg-center !bg-no-repeat" style={ { marginTop: "8px" } } />
|
<LayoutAvatarImageView headOnly={ true } direction={ 2 } figure={ userFigure } className="tb-icon" style={ { backgroundSize: 'auto', backgroundPosition: '-25px -38px' } } />
|
||||||
</motion.div>
|
</motion.div>
|
||||||
{ (getTotalUnseen > 0) &&
|
{ (getTotalUnseen > 0) &&
|
||||||
<LayoutItemCountView count={ getTotalUnseen } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
<LayoutItemCountView count={ getTotalUnseen } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
||||||
</motion.div>
|
</motion.div>
|
||||||
|
<motion.div variants={ itemVariants }>
|
||||||
|
<ToolbarItemView icon="buildersclub" onClick={ () => CreateLinkEvent('catalog/toggle/builder') } className="tb-icon" />
|
||||||
|
</motion.div>
|
||||||
|
<motion.div variants={ itemVariants } className="relative">
|
||||||
|
<ToolbarItemView icon="inventory" onClick={ () => CreateLinkEvent('inventory/toggle') } className="tb-icon" />
|
||||||
|
{ (getFullCount > 0) &&
|
||||||
|
<LayoutItemCountView count={ getFullCount } className="absolute -right-1 top-0" /> }
|
||||||
|
</motion.div>
|
||||||
|
</motion.div>
|
||||||
<motion.div
|
<motion.div
|
||||||
variants={ containerVariants }
|
variants={ containerVariants }
|
||||||
className="tb-bar-scroll flex h-full items-center gap-2 overflow-x-auto overflow-y-visible px-1">
|
className="tb-bar-scroll flex h-full items-center gap-2 overflow-x-auto overflow-y-visible px-1">
|
||||||
@@ -380,14 +380,14 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props =>
|
|||||||
{ (openTicketsCount > 0) &&
|
{ (openTicketsCount > 0) &&
|
||||||
<LayoutItemCountView count={ openTicketsCount } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
<LayoutItemCountView count={ openTicketsCount } className="pointer-events-none absolute -right-1 -top-1 z-10" /> }
|
||||||
</motion.div> }
|
</motion.div> }
|
||||||
{ isMod &&
|
|
||||||
<motion.div variants={ itemVariants }>
|
|
||||||
<ToolbarItemView icon="furnieditor" onClick={ () => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" />
|
|
||||||
</motion.div> }
|
|
||||||
{ (isHk && hkEnabled) &&
|
{ (isHk && hkEnabled) &&
|
||||||
<motion.div variants={ itemVariants }>
|
<motion.div variants={ itemVariants }>
|
||||||
<ToolbarItemView icon="housekeeping" onClick={ () => CreateLinkEvent('housekeeping/toggle') } className="tb-icon" />
|
<ToolbarItemView icon="housekeeping" onClick={ () => CreateLinkEvent('housekeeping/toggle') } className="tb-icon" />
|
||||||
</motion.div> }
|
</motion.div> }
|
||||||
|
{ isMod &&
|
||||||
|
<motion.div variants={ itemVariants }>
|
||||||
|
<ToolbarItemView icon="furnieditor" onClick={ () => CreateLinkEvent('furni-editor/toggle') } className="tb-icon" />
|
||||||
|
</motion.div> }
|
||||||
<motion.div variants={ itemVariants } className="relative">
|
<motion.div variants={ itemVariants } className="relative">
|
||||||
<ToolbarItemView icon="friendall" onClick={ () => CreateLinkEvent('friends/toggle') } className="tb-icon" />
|
<ToolbarItemView icon="friendall" onClick={ () => CreateLinkEvent('friends/toggle') } className="tb-icon" />
|
||||||
{ (requests.length > 0) &&
|
{ (requests.length > 0) &&
|
||||||
|
|||||||
Reference in New Issue
Block a user