minor improvement in sidebar

This commit is contained in:
2023-10-31 08:47:21 -07:00
parent 425a995755
commit f61aca26cd
2 changed files with 13 additions and 14 deletions

File diff suppressed because one or more lines are too long

View File

@@ -56,7 +56,10 @@
nav
page-specific]])
(when page-specific
[:div {:class " pt-5 mt-5 space-y-2 border-t border-gray-200 dark:border-gray-700"}
page-specific]
)]])
(defn main-aside-nav- []
[:ul {:class "space-y-1"}
@@ -69,7 +72,7 @@
(menu-button- {"@click" "open = !open"
:icon svg/accounting-invoice-mail}
"Invoices")
(sub-menu- {:x-show "open"}
(sub-menu- (hx/alpine-appear {:x-show "open"})
(menu-button- {:href (bidi/path-for client-routes/routes
:invoices)}
"All")
@@ -86,7 +89,7 @@
(menu-button- {:icon svg/receipt-register-1
"@click" "open = !open"}
"Sales")
(sub-menu- {:x-show "open"}
(sub-menu- (hx/alpine-appear {:x-show "open"})
(menu-button- {:href (str (bidi/path-for ssr-routes/only-routes
:pos-sales)
"?date-range=week")} "Sales")
@@ -109,7 +112,7 @@
(menu-button- {"@click" "open = !open"
:icon svg/payments}
"Payments")
(sub-menu- {:x-show "open"}
(sub-menu- (hx/alpine-appear {:x-show "open"})
(menu-button- {:href (bidi/path-for client-routes/routes
:payments)} "All")
(menu-button- {:href (bidi/path-for client-routes/routes
@@ -124,7 +127,7 @@
:icon svg/bank}
"Transactions")
(sub-menu- {:x-show "open"}
(sub-menu- (hx/alpine-appear {:x-show "open"})
(menu-button- {:href (bidi/path-for client-routes/routes
:transactions)} "All")
(menu-button- {:href (bidi/path-for client-routes/routes
@@ -139,7 +142,7 @@
(menu-button- {"@click" "open = !open"
:icon svg/receipt}
"Ledger")
(sub-menu- {:x-show "open"}
(sub-menu- (hx/alpine-appear {:x-show "open"})
(menu-button- {:href (bidi/path-for client-routes/routes
:ledger)} "Register")
(menu-button- {:href (bidi/path-for client-routes/routes
@@ -230,15 +233,13 @@
:href (bidi/path-for ssr-routes/only-routes
:admin-jobs)}
"Background Jobs")]
[:li {:x-data (hx/json {:open false})
}
[:li {:x-data (hx/json {:open false})}
(menu-button- {:icon svg/arrow-in
"@click" "open = !open"}
"Import")
(sub-menu- {:id "dropdown-import"
:x-show "open"
}
(sub-menu- (hx/alpine-appear
{:x-show "open"})
(menu-button- {:href (bidi/path-for client-routes/routes
:admin-excel-import)} "Excel Invoices")
(menu-button- {:href (bidi/path-for client-routes/routes
@@ -246,5 +247,3 @@
(menu-button- {:href (bidi/path-for ssr-routes/only-routes
:admin-ezcater-xls)
:hx-boost "true"} "EZCater XLS Import"))]])