-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UI update and preparing automatic builds. #11
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -1,7 +1,37 @@ | |||
use dioxus::html::HasFileData; |
Check failure
Code scanning / clippy
failed to resolve: use of undeclared crate or module dioxus Error
use dioxus::prelude::*; | ||
use crate::video::manager::get_video_file; |
Check failure
Code scanning / clippy
unresolved import crate::video::manager::get_video_file Error
@@ -3,32 +3,120 @@ | |||
|
|||
use crate::routes::Route; | |||
|
|||
// Profile component | |||
#[component] |
Check failure
Code scanning / clippy
cannot find attribute component in this scope Error
// Profile component | ||
#[component] | ||
pub(crate) fn Profile() -> Element { | ||
rsx! { |
Check failure
Code scanning / clippy
cannot find macro rsx in this scope Error
@@ -0,0 +1,16 @@ | |||
#[cfg_attr(target_family = "windows", path = "desktop_video_manager.rs")] | |||
#[cfg_attr(target_family = "wasm", path = "web_video_manager.rs")] | |||
pub mod manager; |
Check warning
Code scanning / clippy
file is loaded as a module multiple times: src/main.rs Warning
pub (in crate::routes) fn Home() -> Element { | ||
let mut count = use_signal(|| 0); | ||
pub(in crate::routes) fn Home() -> Element { | ||
let username = use_signal(|| "Kristopher"); |
Check failure
Code scanning / clippy
cannot find function use_signal in this scope Error
|
||
#[component] | ||
pub(in crate::routes) fn Video() -> Element { | ||
let mut enable_directory_upload = use_signal(|| false); |
Check failure
Code scanning / clippy
cannot find function use_signal in this scope Error
|
||
#[component] | ||
pub(in crate::routes) fn Video() -> Element { | ||
let mut enable_directory_upload = use_signal(|| false); | ||
let mut video_files_uploaded = use_signal(|| Vec::new() as Vec<VideoFile>); |
Check failure
Code scanning / clippy
cannot find function use_signal in this scope Error
#[component] | ||
pub(crate) fn NavBar() -> Element { | ||
// keep track of which button was pressed last | ||
let mut selected = use_signal(|| "Home"); |
Check failure
Code scanning / clippy
cannot find function use_signal in this scope Error
This pull request handles the following:
The README mostly talks about a roadmap for the project showing potential features. The UI, if it's implemented on the web, will also fulfill the mobile UI. So after all of the pages are built, I'll make them responsive for mobile and tablet screens.
This pull request also opens up the pathway to fixing the automatic build process for #10.