2024-09-26 15:02:51 -07:00
|
|
|
mod add_remove;
|
2024-09-13 00:40:34 -07:00
|
|
|
mod assembly;
|
2024-09-13 14:53:12 -07:00
|
|
|
mod display;
|
2024-09-28 14:18:04 -07:00
|
|
|
mod engine;
|
2024-09-13 15:15:55 -07:00
|
|
|
mod outline;
|
2024-09-13 00:40:34 -07:00
|
|
|
|
2024-09-27 14:33:49 -07:00
|
|
|
use rustc_hash::FxHashSet;
|
2024-09-13 00:40:34 -07:00
|
|
|
use sycamore::prelude::*;
|
2024-09-12 15:24:41 -07:00
|
|
|
|
2024-09-26 15:02:51 -07:00
|
|
|
use add_remove::AddRemove;
|
2024-09-28 18:56:33 -07:00
|
|
|
use assembly::Assembly;
|
2024-09-13 14:53:12 -07:00
|
|
|
use display::Display;
|
2024-09-13 15:15:55 -07:00
|
|
|
use outline::Outline;
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct AppState {
|
2024-09-19 16:08:55 -07:00
|
|
|
assembly: Assembly,
|
2024-09-27 14:33:49 -07:00
|
|
|
selection: Signal<FxHashSet<usize>>
|
2024-09-13 15:15:55 -07:00
|
|
|
}
|
2024-09-12 15:24:41 -07:00
|
|
|
|
2024-09-22 14:40:31 -07:00
|
|
|
impl AppState {
|
|
|
|
fn new() -> AppState {
|
|
|
|
AppState {
|
|
|
|
assembly: Assembly::new(),
|
2024-09-27 14:33:49 -07:00
|
|
|
selection: create_signal(FxHashSet::default())
|
2024-09-22 14:40:31 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-12 15:24:41 -07:00
|
|
|
fn main() {
|
|
|
|
sycamore::render(|| {
|
2024-09-28 18:56:33 -07:00
|
|
|
provide_context(AppState::new());
|
2024-09-13 15:15:55 -07:00
|
|
|
|
2024-09-12 15:24:41 -07:00
|
|
|
view! {
|
2024-09-26 15:02:51 -07:00
|
|
|
div(id="sidebar") {
|
|
|
|
AddRemove {}
|
|
|
|
Outline {}
|
|
|
|
}
|
2024-09-13 14:53:12 -07:00
|
|
|
Display {}
|
2024-09-12 15:24:41 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|