-
Notifications
You must be signed in to change notification settings - Fork 4
Port web UI to Dioxus #11
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
Open
StirlingMouse
wants to merge
24
commits into
restructure
Choose a base branch
from
dioxus-ui
base: restructure
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
678388f
Add dioxus version
StirlingMouse bbe009a
Torrents page
StirlingMouse a9cd405
Fix tests
StirlingMouse 7eed96b
Fix dioxus styling
StirlingMouse 48d9065
Split dioxus torrents to helpers
StirlingMouse 14c3628
Port remaining torrent table pages
StirlingMouse 43fd95f
Add stale while loading on dioxus torrent pages
StirlingMouse 4a96ff7
More dioxus work
StirlingMouse 7313ac4
live selected and errors pages
StirlingMouse 15fcdea
Torrent detail cleanup
StirlingMouse 76eefd6
Select multiple
StirlingMouse 7b015fa
Continue dioxus cleanup
StirlingMouse 069df42
ABS image
StirlingMouse a5cbd09
Add E2E tests
StirlingMouse a2cb79c
Build speed improvements
StirlingMouse c63c6a9
Icon fixes
StirlingMouse c358177
Refactor
StirlingMouse 9ee9c87
Clean up torrent tables
StirlingMouse 2b0eadb
Port config to dioxus
StirlingMouse d569a35
Add justfile
StirlingMouse 688bbb9
Fix categories in dioxus
StirlingMouse 848745d
fixup! Add dioxus version
StirlingMouse ace9c03
Fix Dioxus web HTML sanitization
StirlingMouse 9401250
Stabilize Dioxus search and E2E coverage
StirlingMouse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| [build] | ||
| # Use sccache for faster rebuilds (install with: cargo install sccache) | ||
| # rustc-wrapper = ".cargo/sccache-wrapper.sh" | ||
|
|
||
| [target.x86_64-unknown-linux-gnu] | ||
| linker = "clang" | ||
| rustflags = ["-C", "link-arg=-fuse-ld=mold"] | ||
|
|
||
| [target.aarch64-unknown-linux-gnu] | ||
| linker = "clang" | ||
| rustflags = ["-C", "link-arg=-fuse-ld=mold"] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| #!/usr/bin/env bash | ||
| set -euo pipefail | ||
|
|
||
| exec sccache "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick | 🔵 Trivial
Document required toolchain dependencies.
This configuration requires
clangandmoldto be installed on Linux systems. Contributors without these tools will encounter linker errors. Consider adding a note in the README or a comment in this file about the prerequisites, or make these settings conditional (e.g., via environment-based.cargo/config.tomloverrides).🤖 Prompt for AI Agents