Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ac4318e
feat: enhance ApplicationBarView with namespace and organization serv…
nicosammito Jul 9, 2026
7253a7a
feat: simplify ApplicationTabView by removing unused services and adm…
nicosammito Jul 9, 2026
9af312b
feat: remove old tab views
nicosammito Jul 9, 2026
c02381b
feat: simplify default export by directly exporting ApplicationBarView
nicosammito Jul 9, 2026
ec7c91a
feat: rename page.tsx to default.tsx for clarity in file structure
nicosammito Jul 9, 2026
6e5e25e
feat: simplify default export by directly exporting ApplicationBarView
nicosammito Jul 9, 2026
190dd40
feat: replace Page component with direct export of ApplicationTabView
nicosammito Jul 9, 2026
6756881
feat: update padding property in Layout component for improved spacing
nicosammito Jul 9, 2026
dd98d3d
feat: update navigation links in OrganizationCreatePage to point to w…
nicosammito Jul 9, 2026
11294bf
feat: update link in OrganizationsView to point to workspaces creation
nicosammito Jul 9, 2026
3104b88
feat: update @code0-tech/triangulum dependency to version 0.25.8
nicosammito Jul 9, 2026
464b9fa
feat: simplify button group in UserEditDialogComponent and enhance la…
nicosammito Jul 9, 2026
aa048df
feat: create NamespacesPage component for organization creation
nicosammito Jul 9, 2026
95d2a1f
feat: add Workspaces button to ApplicationBarView for improved naviga…
nicosammito Jul 9, 2026
758dab0
feat: redesign ApplicationPage layout and enhance user profile display
nicosammito Jul 9, 2026
507d995
feat: remove redundant header from OrganizationsTopView for cleaner UI
nicosammito Jul 9, 2026
432bae4
feat: remove unnecessary UI elements from PersonalProjectsView for im…
nicosammito Jul 9, 2026
0e76623
feat: add namespaceMemberships query and update User service for impr…
nicosammito Jul 9, 2026
71e6875
feat: add Namespace data table components for improved namespace mana…
nicosammito Jul 9, 2026
8aaebc7
feat: add utility function to derive namespace display names from par…
nicosammito Jul 9, 2026
25c3477
feat: add NamespacesPage and NamespacesView components for namespace …
nicosammito Jul 9, 2026
66ad965
feat: enhance user retrieval logic in User service and NamespaceDataT…
nicosammito Jul 9, 2026
d92b09c
feat: simplify ApplicationBarView by removing unused icons and improv…
nicosammito Jul 10, 2026
3e5486e
feat: enhance ApplicationPage with button groups for project and orga…
nicosammito Jul 10, 2026
5645759
feat: update NamespaceOverviewOrganizationLeftView to link to organiz…
nicosammito Jul 10, 2026
997d303
feat: adjust layout padding in NamespaceOverviewPage for improved spa…
nicosammito Jul 10, 2026
9015c96
feat: refactor page component exports to directly export NamespaceOve…
nicosammito Jul 10, 2026
299ceaa
feat: improve layout and spacing in ProjectsView for better readability
nicosammito Jul 10, 2026
148a3d9
feat: update text hierarchy in UserEditDialogComponent for improved v…
nicosammito Jul 10, 2026
30df286
feat: clean up button props in UserMenuComponent for improved readabi…
nicosammito Jul 10, 2026
f5c4ce6
feat: update text content in ApplicationPage for improved clarity and…
nicosammito Jul 10, 2026
861516d
feat: update text content in NamespacesView for improved clarity and …
nicosammito Jul 10, 2026
90852a4
feat: add createdAt field to Project fragment for enhanced data retri…
nicosammito Jul 10, 2026
19efa30
feat: add NamespacesTopView component for improved namespace management
nicosammito Jul 10, 2026
d399f1b
feat: enhance ApplicationPage with namespace and organization data in…
nicosammito Jul 10, 2026
aeaeda3
feat: implement scrollable area in ModulesPage for better plugin visi…
nicosammito Jul 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@apollo/client": "^4.0.9",
"@code0-tech/pictor": "^0.11.0",
"@code0-tech/triangulum": "^0.25.6",
"@code0-tech/triangulum": "^0.25.8",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lint": "^6.9.5",
"@icons-pack/react-simple-icons": "^13.13.0",
Expand Down
7 changes: 1 addition & 6 deletions src/app/(dashboard)/@bar/default.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
"use client";

import React from "react";
import {ApplicationBarView} from "@edition/application/views/ApplicationBarView";

const Page = () => {
return <ApplicationBarView/>
}

export default Page
export default ApplicationBarView
5 changes: 0 additions & 5 deletions src/app/(dashboard)/@tab/default.ts

This file was deleted.

File renamed without changes.
5 changes: 0 additions & 5 deletions src/app/(dashboard)/@tab/licenses/add/default.tsx

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions src/app/(dashboard)/@tab/namespace/[namespaceId]/page.tsx

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/(dashboard)/@tab/organizations/default.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/(dashboard)/@tab/runtimes/default.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/(dashboard)/@tab/settings/page.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/(dashboard)/@tab/users/default.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/(dashboard)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const ApplicationLayout: React.FC<ApplicationLayoutProps> = ({children, bar, tab
{tab}
</Flex>
}>
<Layout showLayoutSplitter={false} px={0.7} layoutGap={"0"} topContent={<>{bar}</>}>
<Layout showLayoutSplitter={false} pr={0.7} layoutGap={"0"} topContent={<>{bar}</>}>
<Layout>
<>{children}</>
</Layout>
Expand Down
4 changes: 1 addition & 3 deletions src/app/(dashboard)/namespace/[namespaceId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

import {NamespaceOverviewPage} from "@edition/namespace/pages/NamespaceOverviewPage";

export default function Page() {
return <NamespaceOverviewPage/>
}
export default NamespaceOverviewPage
5 changes: 0 additions & 5 deletions src/app/(dashboard)/namespace/[namespaceId]/projects/page.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions src/app/(dashboard)/organizations/page.tsx

This file was deleted.

5 changes: 1 addition & 4 deletions src/app/(dashboard)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"use client"

import React from "react";
import {ApplicationPage} from "@edition/application/pages/ApplicationPage";

export default function Page() {
return <ApplicationPage/>
}
export default ApplicationPage
5 changes: 5 additions & 0 deletions src/app/(dashboard)/workspaces/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"use client"

import {NamespacesPage} from "@edition/namespace/pages/NamespacesPage";

export default NamespacesPage
7 changes: 1 addition & 6 deletions src/app/(flow)/@bar/default.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
"use client";

import React from "react";
import {ApplicationBarView} from "@edition/application/views/ApplicationBarView";

const Page = () => {
return <ApplicationBarView/>
}

export default Page
export default ApplicationBarView
6 changes: 3 additions & 3 deletions src/app/(flow)/@tab/default.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client"

export default function Page() {
return null
}
import {ApplicationTabView} from "@edition/application/views/ApplicationTabView";

export default ApplicationTabView

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading