387 Commits

Author SHA1 Message Date
b06461ce74
Rename "leptos_start" to "libretunes" 2024-03-01 18:53:42 -05:00
d50afbf6e7
Add tower-sessions crate 2024-03-01 18:00:19 -05:00
e1e3fe52d4
Handle server functions 2024-03-01 18:00:16 -05:00
fe465e2246
Properly handle router errors
Fixes file serving, including favicon
2024-03-01 18:00:13 -05:00
dcd08ff46e
Remove favicon server 2024-03-01 18:00:10 -05:00
acf6d3fc05
Make http crate non-optional 2024-03-01 18:00:06 -05:00
5aaf602e2c
Add thiserror crate 2024-03-01 17:59:54 -05:00
57fd838e10
Add file and error handler 2024-03-01 17:59:50 -05:00
939b14403f
Add tower-http crate 2024-03-01 17:59:47 -05:00
37d57eee14
Add tower crate 2024-03-01 17:59:44 -05:00
f587a70155
Switch to axum server 2024-03-01 17:59:38 -05:00
213e43e835
Add axum crate 2024-03-01 17:59:32 -05:00
4f999e7338
Add tokio crate 2024-03-01 17:59:27 -05:00
416a8b693a
Add leptos_axum package 2024-03-01 17:59:11 -05:00
59b469d16d
Add logo 2024-03-01 17:23:19 -05:00
59b11dae76 Merge branch '1-add-queue' into 'main'
Add functioning queue

See merge request libretunes/libretunes!11
2024-03-01 16:46:45 -05:00
03ba18e0b8
Merge branch 'main' into 1-add-queue 2024-03-01 02:20:15 -05:00
147e3c16c8
Separate Song component to own file instead of with queue 2024-03-01 02:14:21 -05:00
bf47efbff7
Stop reactively tracking status in toggle queue 2024-03-01 02:14:16 -05:00
6423d238b6 Merge branch '14-create-login-signup-page' into 'main'
Create login and signup pages

Closes #14

See merge request libretunes/libretunes!10
2024-02-29 20:47:16 -05:00
d2ee1fdf9e Merge branch '16-implement-song-artist-and-album-search' into 'main'
Implement song, artist, and album search

Closes #16

See merge request libretunes/libretunes!9
2024-02-29 20:28:05 -05:00
8507b536ec Add queue and playbar to homepage 2024-02-28 01:01:46 -05:00
d2986797bb Implement dragging to reorder queue 2024-02-28 00:54:35 -05:00
a47e6fedc3 Changed login and signup color themes 2024-02-27 16:41:54 -05:00
1c4ce06064 navigation to home page after login and signup 2024-02-27 16:23:53 -05:00
7236e09b4b added simple route to home after signup and login
modified:   src/pages/login.rs
	modified:   src/pages/signup.rs
2024-02-26 10:30:54 -05:00
2b76340608 changes to login
modified:   src/pages/login.rs
	modified:   src/pages/signup.rs
	modified:   style/login.scss
	modified:   style/signup.scss
2024-02-23 21:03:10 -05:00
f4bea8aa33 made a simple password visibility toggler
modified:   Cargo.lock
	modified:   Cargo.toml
	modified:   src/pages/signup.rs
	modified:   style/signup.scss
2024-02-23 20:31:25 -05:00
2a0dacff3e Update styling and layout/coloring of the queue items 2024-02-23 19:22:19 -05:00
e6a68f4f40 Add trash outline icon for updated queue coloring 2024-02-23 19:21:45 -05:00
5650882ba8 Finished inaugural login and signup pages
modified:   src/pages/login.rs
	modified:   src/pages/signup.rs
2024-02-23 16:24:05 -05:00
e0552269fb Don't update status on every time_update 2024-02-23 16:16:50 -05:00
2ab1f44317 added functionality to login page.
modified:   src/pages/login.rs
2024-02-18 02:01:34 -05:00
c30ba689b1 Added functionalty to the signup page.
modified:   src/pages/signup.rs
2024-02-18 01:53:57 -05:00
8066c80459
Add search functions 2024-02-16 23:51:33 -05:00
201afec219
Add futures crate 2024-02-16 23:51:28 -05:00
69eb1e866a
Add serde feature to time crate 2024-02-16 23:51:24 -05:00
bd7b1ebd1a
Add migration to create artist, album, and song title indicies 2024-02-16 23:51:20 -05:00
11bc55bf61
Add migration to install pg_trgm extension 2024-02-16 23:50:49 -05:00
a0d465abc4 Allow scrolling of queue and fix height to just touch playbar 2024-02-16 17:37:57 -05:00
24ed2afae6 Fix formatting of playing vs. delete status of queue items 2024-02-16 17:37:22 -05:00
fbc57fd90e Modify queue to only allow delete of upcoming songs 2024-02-16 17:34:45 -05:00
2a389a90d7 Merge branch '15-create-database-tables-for-songs-artists-and-albums' into 'main'
Create database tables for songs, artists, and albums

Closes #15

See merge request libretunes/libretunes!8
2024-02-16 16:18:34 -05:00
371b184ef8
Merge branch 'main' into 15-create-database-tables-for-songs-artists-and-albums 2024-02-16 00:16:03 -05:00
7e24038b22
Implement data manipulation methods for artists, albums, songs 2024-02-16 00:12:24 -05:00
7498ee0dd3 Merge branch '10-run-diesel-database-migrations-automatically' into 'main'
Run Diesel database migrations automatically

Closes #10

See merge request libretunes/libretunes!4
2024-02-15 23:55:03 -05:00
cfcfe5a7c8 Merge branch '12-allow-separation-of-postgres-db-endpoint-and-credentials' into 'main'
Build database URL from POSTGRES_ environment variables

Closes #12

See merge request libretunes/libretunes!5
2024-02-15 23:54:08 -05:00
2c1c70d214 Merge branch '11-create-docker-compose-file' into 'main'
Add Docker compose

Closes #11

See merge request libretunes/libretunes!6
2024-02-15 23:53:45 -05:00
28942a41a0 Merge remote-tracking branch 'origin/2-implement-authentication-backend' into danny-fix 2024-02-13 17:13:18 -05:00
79a0bb579e
Merge remote-tracking branch 'origin/main' into 10-run-diesel-database-migrations-automatically 2024-02-13 16:58:17 -05:00