Evan Almloff
36f67bd5e2
update 0.4 doc links to 0.5
2024-03-27 20:42:07 -05:00
Jonathan Kelley
537f064001
Remove some old docs, cleanup some readmes
2024-03-27 17:28:30 -07:00
Miles Murgaw
3cbe6ff96e
Fix Outdated README.md ( #2147 )
...
* fix: outdated readme
* Fix missing readme
---------
Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
2024-03-26 19:17:02 -07:00
Evan Almloff
dadbab5d72
make some enums non-exhaustive ( #2140 )
2024-03-26 19:14:48 -07:00
Evan Almloff
460a685fa3
Warn if cli-config is not available at compile time ( #2135 )
...
* warn if a package relies on the CLI config, but it is not built with the CLI
* fix default features
---------
Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
2024-03-26 19:10:26 -07:00
Emil Boman
fb396b0448
Fix fullstack render server context ( #2139 )
...
* Fix fullstack render server context
* only set the server context while polling futures
---------
Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
2024-03-26 09:59:25 -05:00
Evan Almloff
e012d816eb
fix streaming server functions, and precompress assets in release mode ( #2121 )
2024-03-20 23:05:50 -07:00
Jonathan Kelley
6c9f991f0b
hotfix: finding hotreload path fails when not running under cargo
2024-03-20 09:54:57 -07:00
Jonathan Kelley
3d699e7a75
Match on more places for asset reloading
2024-03-13 15:10:44 -07:00
Jonathan Kelley
ad7a350d2e
fix hotreloading issues in the CLI
2024-03-12 13:39:42 -07:00
studystill
3a21ac5710
remove repetitive words ( #2046 )
...
Signed-off-by: studystill <chenghuiyue@outlook.com>
2024-03-11 09:49:26 -05:00
Jonathan Kelley
47e7f2fd41
Kick server futures on the client
2024-03-08 16:52:03 -08:00
Evan Almloff
f8a8ee3e29
fix clippy
2024-03-08 12:45:23 -06:00
Evan Almloff
9bad802beb
clean up dirty scopes module
2024-03-07 21:04:48 -06:00
Evan Almloff
716eb11426
update suspend in use_server_future
2024-03-05 18:39:32 -06:00
Jonathan Kelley
62d79747aa
Merge pull request #1987 from ealmloff/fix-fullstack-history
...
Fix fullstack history
2024-03-04 14:19:38 -08:00
Evan Almloff
55f308363d
expose non-blocking functions to read and write to the fullstack request
2024-02-29 10:39:02 -06:00
Jonathan Kelley
36fe5e30cb
chore: clean up cargo.tomls to enable releasing
2024-02-21 14:16:01 -08:00
Evan Almloff
36ae7ec12e
wrap fullstack rebuilds in block in place
2024-02-19 14:59:58 -06:00
Evan Almloff
c4a4a31eec
Merge branch 'master' into pr/atty303/1948
2024-02-19 08:35:31 -06:00
Jonathan Kelley
ebdb98bff2
Make clippy happy, pass tests
2024-02-18 21:08:48 -08:00
Jonathan Kelley
d732269b8f
backend proxy tests almost work!
2024-02-18 09:45:27 -08:00
Evan Almloff
14b4af4bbc
fix cargo check all features except the router
2024-02-16 16:22:13 -06:00
Evan Almloff
2952578a2e
add a streaming example
2024-02-16 16:04:12 -06:00
Evan Almloff
e7d8a25d17
get the dioxus CLI compiling
2024-02-16 14:55:44 -06:00
Evan Almloff
30af559275
add tracing to server function registration
2024-02-16 14:19:36 -06:00
Koji AGAWA
1f0e03ca19
feat(fullstack): support wasm target
2024-02-17 05:12:33 +09:00
Evan Almloff
194d90e66f
fix a few CLI errors
2024-02-16 12:39:36 -06:00
Evan Almloff
e745212157
bump server functions
2024-02-16 12:17:01 -06:00
Evan Almloff
0ef29b7d75
reorganize fullstack
2024-02-16 09:03:35 -06:00
Jonathan Kelley
64a321eacc
Get more axum stuff upgraded to 0.7
2024-02-15 18:59:57 -08:00
Jonathan Kelley
214a907adc
Upgrade to axum 0.7, drop 3rd party adapters
2024-02-15 18:05:30 -08:00
Jonathan Kelley
ea34eee20a
Remove ssr eval from fullstack
2024-02-14 17:00:12 -08:00
Evan Almloff
b4d17abfc1
document all features
2024-02-09 12:15:59 -06:00
Miles Murgaw
3c1028c523
fix: prerelease doc
2024-02-08 17:53:45 -05:00
Evan Almloff
b4f2a925c7
fix fullstack playwright test features
2024-02-05 15:04:49 -06:00
Evan Almloff
b63c14fab8
change config flags from ssr to server to match the features
2024-02-05 14:20:15 -06:00
Jonathan Kelley
7d78e5e250
Fix warnings and compile errors
2024-02-03 13:10:16 -08:00
Evan Almloff
e767e49d5e
switch to server instead of ssr everywhere
2024-02-02 19:32:18 -06:00
Evan Almloff
1afada528d
fix user server future
2024-02-02 18:01:57 -06:00
Evan Almloff
1c4e1d84ea
serialize data in the server and deserialize data in the client
2024-02-02 17:23:00 -06:00
Jonathan Kelley
f44b72f5e1
server_future uses use_resource
2024-02-02 14:08:21 -08:00
Jonathan Kelley
7c2947a131
Implement effects using reactivecontext
2024-02-01 13:21:52 -08:00
Jonathan Kelley
0c71b95e82
skeleton of use_server_future with reactivity
2024-02-01 13:21:52 -08:00
Jonathan Kelley
6818bbe10a
Make use_future take an impl FnMut + 'static, don't include router prelude when we don't need to
2024-01-31 16:33:53 -08:00
Jonathan Kelley
8f07d881a6
Switch todo!() to unreachable!/unimplemented! where it matters
2024-01-31 16:26:20 -08:00
Evan Almloff
8eda785ace
try to pull the default out directory for the fullstack server from the config
2024-01-31 16:50:54 -06:00
Evan Almloff
fb01a276b0
fix axum build in fullstack
2024-01-31 15:25:19 -06:00
Jonathan Kelley
a72c035de4
Fix cargo check on examples
2024-01-30 17:59:57 -08:00
Jonathan Kelley
d34538f4da
Add memochain example
2024-01-26 22:33:41 -08:00