Skip to content

Commit 4a6dc72

Browse files
committed
chore: wip
1 parent e8c8b1c commit 4a6dc72

File tree

10 files changed

+21
-19
lines changed

10 files changed

+21
-19
lines changed

storage/framework/defaults/components/Dashboard/Sidebar.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const calculateTransform = (section: string) => {
4545
// State for each section's collapse status
4646
const sections = useLocalStorage<Sections>('sidebar-sections', {
4747
library: true,
48-
blog: true,
48+
content: true,
4949
app: true,
5050
data: true,
5151
commerce: true,
@@ -69,7 +69,7 @@ const expandedItems = useLocalStorage<Record<string, boolean>>('sidebar-expanded
6969
})
7070
7171
// Create an ordered array of sections that we can reorder
72-
const sectionOrder = useLocalStorage<string[]>('sidebar-section-order', ['library', 'blog', 'app', 'data', 'commerce', 'marketing', 'analytics', 'management'])
72+
const sectionOrder = useLocalStorage<string[]>('sidebar-section-order', ['library', 'content', 'app', 'data', 'commerce', 'marketing', 'analytics', 'management'])
7373
7474
// Toggle function for sections
7575
const toggleSection = (section: string) => {
@@ -162,15 +162,15 @@ const sectionContent: Record<string, SectionContent> = {
162162
{ to: '/packages', icon: 'i-hugeicons-package', text: 'Packages' }
163163
]
164164
},
165-
blog: {
165+
content: {
166166
items: [
167-
{ to: '/blog', icon: 'i-hugeicons-dashboard-speed-01', text: 'Dashboard' },
168-
{ to: '/blog/posts', icon: 'i-hugeicons-document-validation', text: 'Posts' },
169-
{ to: '/blog/categories', icon: 'i-hugeicons-tags', text: 'Categories' },
170-
{ to: '/blog/tags', icon: 'i-hugeicons-tag-01', text: 'Tags' },
171-
{ to: '/blog/comments', icon: 'i-hugeicons-comment-01', text: 'Comments' },
172-
{ to: '/blog/authors', icon: 'i-hugeicons-user-edit-01', text: 'Authors' },
173-
{ to: '/blog/seo', icon: 'i-hugeicons-seo', text: 'SEO' }
167+
{ to: '/content/dashboard', icon: 'i-hugeicons-dashboard-speed-01', text: 'Dashboard' },
168+
{ to: '/content/posts', icon: 'i-hugeicons-document-validation', text: 'Posts' },
169+
{ to: '/content/categories', icon: 'i-hugeicons-tags', text: 'Categories' },
170+
{ to: '/content/tags', icon: 'i-hugeicons-tag-01', text: 'Tags' },
171+
{ to: '/content/comments', icon: 'i-hugeicons-comment-01', text: 'Comments' },
172+
{ to: '/content/authors', icon: 'i-hugeicons-user-edit-01', text: 'Authors' },
173+
{ to: '/content/seo', icon: 'i-hugeicons-seo', text: 'SEO' }
174174
]
175175
},
176176
app: {

storage/framework/defaults/views/dashboard/blog/seo/index.vue renamed to storage/framework/defaults/views/dashboard/content/seo/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ function getPostTitleById(id: number): string {
590590
@click="openBulkOptimizationModal"
591591
class="inline-flex items-center rounded-md bg-white px-2.5 py-1.5 text-sm font-semibold text-blue-600 shadow-sm ring-1 ring-inset ring-blue-300 hover:bg-blue-50 dark:bg-blue-gray-800 dark:text-blue-400 dark:ring-blue-500/30 dark:hover:bg-blue-500/10"
592592
>
593-
<div class="i-hugeicons-magic-wand h-4 w-4 mr-1"></div>
593+
<div class="i-hugeicons-magic-wand-05 h-4 w-4 mr-1"></div>
594594
Optimize Selected
595595
</button>
596596
</div>
@@ -1157,7 +1157,7 @@ function getPostTitleById(id: number): string {
11571157
</div>
11581158
<div class="sm:flex sm:items-start">
11591159
<div class="mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full bg-blue-100 sm:mx-0 sm:h-10 sm:w-10 dark:bg-blue-900/30">
1160-
<div class="i-hugeicons-magic-wand h-6 w-6 text-blue-600 dark:text-blue-400"></div>
1160+
<div class="i-hugeicons-magic-wand-05 h-6 w-6 text-blue-600 dark:text-blue-400"></div>
11611161
</div>
11621162
<div class="mt-3 text-center sm:ml-4 sm:mt-0 sm:text-left">
11631163
<h3 class="text-base font-semibold leading-6 text-gray-900 dark:text-white" id="modal-title">Bulk SEO Optimization</h3>

storage/framework/types/components.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ declare module 'vue' {
8080
Navbar: typeof import('./../defaults/components/Dashboard/Navbar.vue')['default']
8181
NavLink: typeof import('./../defaults/components/Marketing/NavLink.vue')['default']
8282
NotificationDemo: typeof import('./../defaults/components/Docs/Demo/NotificationDemo.vue')['default']
83+
NotificationErrorModal: typeof import('./../defaults/components/Dashboard/NotificationErrorModal.vue')['default']
84+
NotificationStatusBadge: typeof import('./../defaults/components/Dashboard/NotificationStatusBadge.vue')['default']
8385
OneTimePayment: typeof import('./../defaults/components/Dashboard/Billing/OneTimePayment.vue')['default']
8486
Pagination: typeof import('./../defaults/components/Dashboard/Commerce/Delivery/Pagination.vue')['default']
8587
PaymentForm: typeof import('./../defaults/components/Dashboard/Billing/PaymentForm.vue')['default']

storage/framework/types/dashboard-router.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ declare module 'vue-router/auto-routes' {
3333
'/analytics/pages/': RouteRecordInfo<'/analytics/pages/', '/analytics/pages', Record<never, never>, Record<never, never>>,
3434
'/analytics/referrers/': RouteRecordInfo<'/analytics/referrers/', '/analytics/referrers', Record<never, never>, Record<never, never>>,
3535
'/analytics/web/': RouteRecordInfo<'/analytics/web/', '/analytics/web', Record<never, never>, Record<never, never>>,
36-
'/blog/': RouteRecordInfo<'/blog/', '/blog', Record<never, never>, Record<never, never>>,
37-
'/blog/authors/': RouteRecordInfo<'/blog/authors/', '/blog/authors', Record<never, never>, Record<never, never>>,
38-
'/blog/categories/': RouteRecordInfo<'/blog/categories/', '/blog/categories', Record<never, never>, Record<never, never>>,
39-
'/blog/comments/': RouteRecordInfo<'/blog/comments/', '/blog/comments', Record<never, never>, Record<never, never>>,
40-
'/blog/posts/': RouteRecordInfo<'/blog/posts/', '/blog/posts', Record<never, never>, Record<never, never>>,
41-
'/blog/seo/': RouteRecordInfo<'/blog/seo/', '/blog/seo', Record<never, never>, Record<never, never>>,
42-
'/blog/tags/': RouteRecordInfo<'/blog/tags/', '/blog/tags', Record<never, never>, Record<never, never>>,
4336
'/buddy/': RouteRecordInfo<'/buddy/', '/buddy', Record<never, never>, Record<never, never>>,
4437
'/cloud/': RouteRecordInfo<'/cloud/', '/cloud', Record<never, never>, Record<never, never>>,
4538
'/commands/': RouteRecordInfo<'/commands/', '/commands', Record<never, never>, Record<never, never>>,
@@ -70,6 +63,13 @@ declare module 'vue-router/auto-routes' {
7063
'/commerce/waitlist/products': RouteRecordInfo<'/commerce/waitlist/products', '/commerce/waitlist/products', Record<never, never>, Record<never, never>>,
7164
'/commerce/waitlist/restaurant': RouteRecordInfo<'/commerce/waitlist/restaurant', '/commerce/waitlist/restaurant', Record<never, never>, Record<never, never>>,
7265
'/components/': RouteRecordInfo<'/components/', '/components', Record<never, never>, Record<never, never>>,
66+
'/content/authors/': RouteRecordInfo<'/content/authors/', '/content/authors', Record<never, never>, Record<never, never>>,
67+
'/content/categories/': RouteRecordInfo<'/content/categories/', '/content/categories', Record<never, never>, Record<never, never>>,
68+
'/content/comments/': RouteRecordInfo<'/content/comments/', '/content/comments', Record<never, never>, Record<never, never>>,
69+
'/content/dashboard': RouteRecordInfo<'/content/dashboard', '/content/dashboard', Record<never, never>, Record<never, never>>,
70+
'/content/posts/': RouteRecordInfo<'/content/posts/', '/content/posts', Record<never, never>, Record<never, never>>,
71+
'/content/seo/': RouteRecordInfo<'/content/seo/', '/content/seo', Record<never, never>, Record<never, never>>,
72+
'/content/tags/': RouteRecordInfo<'/content/tags/', '/content/tags', Record<never, never>, Record<never, never>>,
7373
'/dependencies/': RouteRecordInfo<'/dependencies/', '/dependencies', Record<never, never>, Record<never, never>>,
7474
'/deployments/': RouteRecordInfo<'/deployments/', '/deployments', Record<never, never>, Record<never, never>>,
7575
'/deployments/[id]': RouteRecordInfo<'/deployments/[id]', '/deployments/:id', { id: ParamValue<true> }, { id: ParamValue<false> }>,

0 commit comments

Comments
 (0)