Добавлены модели услуг и расходников для фулфилмент центров, реализованы соответствующие мутации и запросы в GraphQL. Обновлен конфигурационный файл и добавлен новый компонент Toaster в макет приложения. Обновлены зависимости в package.json и package-lock.json.

This commit is contained in:
Bivekich
2025-07-17 10:47:20 +03:00
parent 205c9eae98
commit 99e91287f3
22 changed files with 2148 additions and 2 deletions

View File

@ -11,7 +11,8 @@ import {
LogOut,
Building2,
Store,
MessageCircle
MessageCircle,
Wrench
} from 'lucide-react'
export function Sidebar() {
@ -63,9 +64,14 @@ export function Sidebar() {
router.push('/messenger')
}
const handleServicesClick = () => {
router.push('/services')
}
const isSettingsActive = pathname === '/settings'
const isMarketActive = pathname.startsWith('/market')
const isMessengerActive = pathname.startsWith('/messenger')
const isServicesActive = pathname.startsWith('/services')
return (
<div className="fixed left-0 top-0 h-full w-56 bg-white/10 backdrop-blur-xl border-r border-white/20 p-3">
@ -131,6 +137,22 @@ export function Sidebar() {
<MessageCircle className="h-3 w-3 mr-2" />
Мессенджер
</Button>
{/* Услуги - только для фулфилмент центров */}
{user?.organization?.type === 'FULFILLMENT' && (
<Button
variant={isServicesActive ? "secondary" : "ghost"}
className={`w-full justify-start text-left transition-all duration-200 h-8 text-xs ${
isServicesActive
? 'bg-white/20 text-white hover:bg-white/30'
: 'text-white/80 hover:bg-white/10 hover:text-white'
} cursor-pointer`}
onClick={handleServicesClick}
>
<Wrench className="h-3 w-3 mr-2" />
Услуги
</Button>
)}
<Button
variant={isSettingsActive ? "secondary" : "ghost"}