Skip to content

Commit

Permalink
Tree updates (#236)
Browse files Browse the repository at this point in the history
* redux-undo add

* fix build layout

* add engine

* layout clean

* search asset fix

* break out assets migration into separate file

* home fix

* text search assets

* add description, computed columns

* name prefix search assets spaces

* fix display

* same

* asset search fixes

* real time text search

* asset search

* add recent assets

* storage thumb

* sidebar optimize

* basic file upload!

* lift dropzone

* update asset url to be id not name

* dropzone

* copy

* border

* asset tags

* key prop

* add right click download asset

* x toggle

* basic scene ui

* del scene

* scene name edit

* hover on scene

* clean

* two way input polish

* add entities crud

* change from hover to click sidebar

* local

* near bsic tree

* formatting

* clean format

* depth fix + dragdrop

* node key dragdrop clea

* drag drop keep parent open

* clean

* WIP

* boilerplate working

* import

* working bg

* clean

* hide action menu tree item

* child type rm

* rm movedialog

* clean

* clean

* clean

* clean

* basic scene crud

* add currentscene

* entity work

* working entities crud

* break slices into different files

* cache polish

* add component CRUD

* clean

* component entities updates

* rm component name

* entities

* create scene upon space creation

* entity children setup

* updatable entity name hierarchy

* basic parent update setup

* working child tree item saving

* optional children add

* clean

* bug fixes for cachcing

* working reordering of entities!

* optimize entity queries

* working .children refactor pt 1

* clean the junk

* clean more atlassian junk

* packages

* progress

* hook up entities

* cleaning tree

* root entity

* sidebar size fix

* fix for input firing w/o change

* progress on saving entity
  • Loading branch information
Kluskey authored Oct 8, 2024
1 parent d1ff26e commit f211a02
Show file tree
Hide file tree
Showing 48 changed files with 3,571 additions and 394 deletions.
6 changes: 6 additions & 0 deletions mirror-2/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@
--chart-5: 340 75% 55%;
}
}
.ant-tree-switcher_close {
margin-top: 0.5rem !important;
}
.ant-tree-switcher_open {
margin-top: 0.5rem !important;
}
4 changes: 4 additions & 0 deletions mirror-2/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"
import Link from "next/link"
import { appDescription, appName } from "@/lib/theme-service"
import { Metadata } from "next"
import AccountDropdownMenu from "@/components/ui/account-dropdown-menu"


export default function MusicPage() {

return (
<>
<div className="md:hidden">
Expand Down Expand Up @@ -63,7 +65,9 @@ export default function MusicPage() {
<Button className="w-full" asChild>
<Link href="/space/new" className="w-full p-3"><PlusCircleIcon className="mr-2" />Create a Space</Link>
</Button>

</div>
<AccountDropdownMenu />
</div>
<Separator className="my-4" />
<div className="relative">
Expand Down
2 changes: 1 addition & 1 deletion mirror-2/app/layout.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function ClientLayout({ children }) {
export function AuthLayout({ children }) {
useSetupAuthEvents()
return (
<main className="items-center min-h-screen">
<main className="items-center">
<div className="">
{children}
</div>
Expand Down
Loading

0 comments on commit f211a02

Please sign in to comment.