yew/examples/README.md
2025-03-03 04:53:22 +09:00

88 lines
11 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Yew Examples
## How to Run
The examples are built with [trunk](https://github.com/thedodd/trunk).
Once you have the development environment fully set up (see [documentation](https://yew.rs/docs/next/getting-started/introduction)),
running an example is as easy as running a single command:
```bash
# move into the directory of the example you want to run
# In this case it's the todomvc example
cd examples/todomvc
# build and serve the example
trunk serve --open
```
Some examples using the `rand` crate require a special rust flag to be enabled:
```bash
RUSTFLAGS='--cfg getrandom_backend="wasm_js"' trunk serve --open
```
Some examples may perform better using the `release` profile. If something is slow, you can try running it with the `--release` argument.
We're also publicly hosting the examples at `https://examples.yew.rs/<EXAMPLE>`.
As an example, check out the TodoMVC example here: <https://examples.yew.rs/todomvc>
## List of Examples
| Example | [CT] | Description |
| ----------------------------------------------------------------------------------------- | ---- | ----------------------------------------------------------------------------------------------------------------------------------- |
| [async_clock](async_clock) | [S] | Demonstrates the use of asynchronous tasks in a yew component. |
| [boids](boids) | [S] | Yew port of [Boids](https://en.wikipedia.org/wiki/Boids) |
| [communication_child_to_parent](communication_child_to_parent) | [S] | Communication from child to parent components. |
| [communication_grandchild_with_grandparent](communication_grandchild_with_grandparent) | [S] | Communication from grandchildren to grandparent components. |
| [communication_grandparent_to_grandchild](communication_grandparent_to_grandchild) | [S] | Communication from grandparent to grandchild components. |
| [communication_parent_to_child](communication_parent_to_child) | [S] | Communication from parent to child components. |
| [contexts](contexts) | [F] | A technical demonstration of the Context API. |
| [counter](counter) | [S] | Simple counter which can be incremented and decremented. |
| [counter_functional](counter_functional) | [F] | Simple counter which can be incremented and decremented made using function components. |
| [dyn_create_destroy_apps](dyn_create_destroy_apps) | [S] | Uses the function `Renderer::with_root_and_props` and the `AppHandle` struct to dynamically create and delete Yew apps. |
| [file_upload](file_upload) | [S] | Uses [`gloo::file`](https://docs.rs/gloo-file/latest/gloo_file/index.html) to read the content of user uploaded files. |
| [function_memory_game](function_memory_game) | [F] | Implementation of [Memory Game](https://github.com/bradlygreen/Memory-Game). |
| [function_router](function_router) | [F] | Identical to [`router`](router) but using function components. |
| [function_todomvc](function_todomvc) | [F] | Implementation of [TodoMVC](http://todomvc.com/) using function components and hooks. |
| [futures](futures) | [S] | Demonstrates how you can use futures and async code with Yew. Features a Markdown renderer. |
| [game_of_life](game_of_life) | [S] | Implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). |
| [immutable](immutable) | [SF] | Using immutable types in components. |
| [inner_html](inner_html) | [S] | Embeds an external document as raw HTML by manually managing the element. |
| [js_callback](js_callback) | [F] | Interacts with JavaScript code. |
| [keyed_list](keyed_list) | [S] | Demonstrates how to use keys to improve the performance of lists. |
| [mount_point](mount_point) | [S] | Shows how to mount the root component to a custom element. |
| [nested_list](nested_list) | [S] | Renders a styled list which tracks hover events. |
| [node_refs](node_refs) | [S] | Uses a [`NodeRef`](https://yew.rs/docs/concepts/components/refs) to focus the input element under the cursor. |
| [password_strength](password_strength) | [SF] | A password strength estimator implemented in Yew. |
| [portals](portals) | [S] | Renders elements into out-of-tree nodes with the help of portals. |
| [router](router) | [S] | The best yew blog built with `yew-router`. |
| [simple_ssr](simple_ssr) | [F] | Demonstrates server-side rendering. |
| [ssr_router](ssr_router) | [F] | Demonstrates server-side rendering with routing. |
| [suspense](suspense) | [F] | This is an example that demonstrates `<Suspense />` support. |
| [timer](timer) | [S] | Demonstrates the use of the interval and timeout services. |
| [timer_functional](timer_functional) | [F] | Demonstrates the use of the interval and timeout services using function components |
| [todomvc](todomvc) | [S] | Implementation of [TodoMVC](http://todomvc.com/). |
| [two_apps](two_apps) | [S] | Runs two separate Yew apps which can communicate with each other. |
| [web_worker_fib](web_worker_fib) | [F] | Calculate Fibonacci numbers in a web worker thread using [`yew-agent`](https://docs.rs/yew-agent/latest/yew_agent/). |
| [web_worker_prime](web_worker_prime) | [F] | Calculate Prime numbers in a web worker thread using [`yew-agent`](https://docs.rs/yew-agent/latest/yew_agent/). |
| [webgl](webgl) | [S] | Controls a [WebGL canvas](https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API/Tutorial/Getting_started_with_WebGL) from Yew. |
| [wasi_ssr_module](wasi_ssr_module) | [F] | Demonstrates server-side rendering using WASI. |
[CT]: ## "Component Type"
[S]: ## "Struct Components"
[F]: ## "Function Components"
[SF]: ## "Struct and Function Components"
## Next Steps
Have a look at Yew's [starter templates](https://yew.rs/docs/getting-started/build-a-sample-app#using-a-starter-template) when starting a project using Yew they can significantly simplify things.
## Helping Out
If one of the examples catches your interest, look for the "improvements" section in its `README.md` file.
Most examples list a few ideas for how to improve them.
Consider starting with those but don't hesitate to improve an example in other ways either.
One problem that currently plagues most examples is the lack of styling.
Please help us make the examples look as flashy as possible!