Skip to content

Commit

Permalink
back up & running
Browse files Browse the repository at this point in the history
  • Loading branch information
botanrice committed Nov 7, 2024
1 parent d18caef commit fd24bfd
Show file tree
Hide file tree
Showing 12 changed files with 422 additions and 121 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
VITE_SUPABASE_URL='https://xxxyyxzzxx.supabase.co'
VITE_SUPABASE_KEY='xyajbaeiap-example-...'
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# Def never commit these
.env

# Not needed
node_modules/

# Personal/temporary files, ignore this
.DS_Store
[email protected]
[email protected]
dist/assets/index-63BfQeXy.js
tjojaygamnzkipjsrnab.storage.zip
21 changes: 17 additions & 4 deletions NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,25 @@ What is preventing me from saying this look good enough to go?
- [ x ] home btn on palette screen
- [ x ] white bounding box stretches to full screen

#### v0.0.2
- [ ] Home page is immediately synthesia
- [ ] Palettes are saved to a single database
- [ ] Remove dev buttons
#### v0.0.2a *(supabase conversion)*
- [ x ] All songs added to AWS S3
- [ x ] All songs added to supabase
- [ x ] Convert main functions from AsyncStorage to supabase

#### v0.0.2b *(supabase conversion)*
- [ x ] Fix navigation on color picker (pagination?) *mehhhh half-fixed...*
- [ x ] Ensure each song lines up with its title/id in the picker

#### v0.0.2c
- [ x ] Home page is ~~immediately synthesia~~ a welcome page to synthesia
- [ x ] All songs are added to be listened to
- [ x ] Palettes are saved to a single database
- [ ] Remove dev buttons on palettes page
- [ ] Improved navigation

#### v0.0.3
- [ ] Move tracklist to a simple list on side instead of pagination

### Future
[ ] Test that this works online
[ ] Navbar at top
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# dropcolumn.com
# synthesia

Another iteration of dropcolumn.com, built with the stoic engine in mind.
A tool for generating color palettes based on set sounds.

Another bo rice brainblast and an iteration of dropcolumn.com, built with the stoic engine in mind.

## Features

### synthesia

`/colors` will take you there. Pick a color based on the sound. Displays palette at end.
*More to come...*
~~`/colors` will take you there. Pick a color based on the sound. Displays palette at end.~~

68 changes: 0 additions & 68 deletions dist/assets/index--NiGbLEz.js

This file was deleted.

6 changes: 3 additions & 3 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/DCWW_white.png" />
<link rel="icon" type="image/svg+xml" href="/synthesia/DCWW_white.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Drop Column Worldwide</title>
<script type="module" crossorigin src="/assets/index--NiGbLEz.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Fdj4n0ZA.css">
<script type="module" crossorigin src="/synthesia/assets/index-63BfQeXy.js"></script>
<link rel="stylesheet" crossorigin href="/synthesia/assets/index-Fdj4n0ZA.css">
</head>
<body>
<div id="root"></div>
Expand Down
200 changes: 198 additions & 2 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.22.3",
"@supabase/supabase-js": "^2.43.0",
"@uiw/react-color": "^2.0.6",
"@wcj/dark-mode": "^1.0.16",
"firebase": "^10.8.1",
Expand Down
2 changes: 1 addition & 1 deletion src/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Navbar = () => {

return (
<div className="Navbar">
<span onClick={() => navigate("/")}>eject</span>
<span onClick={() => navigate("/synthesia/")}>eject</span>
</div>
);
};
Expand Down
11 changes: 6 additions & 5 deletions src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,21 @@ import ErrorPage from './ErrorPage';
const router = createBrowserRouter([
{
path: "/synthesia/",
element: <Home />,
element: <Color />,
errorElement: <ErrorPage />,
},
{
path: "/synthesia/color",
element: <Color />,
},
{
path: "enter",
element: <EnterSto />,
path: "/synthesia/palettes/",
element: <Palettes />,
errorElement: <ErrorPage />,
},
{
path: "/palettes/",
element: <Palettes />,
path: "enter",
element: <EnterSto />,
},
{
path: "/music/",
Expand Down
Loading

0 comments on commit fd24bfd

Please sign in to comment.