rust-yew-realworld-example-app icon indicating copy to clipboard operation
rust-yew-realworld-example-app copied to clipboard

Exemplary real world app built with Rust + Yew + WebAssembly, by Function Components + Hooks, also supports desktop by Tauri.

Results 12 rust-yew-realworld-example-app issues
Sort by recently updated
recently updated
newest added

**Describe the bug** This is not an app specific issue, but it's just how GitHub Pages handles the URLs. Of course, you may argue that this is not app specific,...

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Load docker in Fedora 36 2. Run docker compose...

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...

This project mentions its goal is to produce a project sample that adheres closely to Yew idioms. As far as build tooling goes, I'm curious why [Trunk](https://trunkrs.dev) isn't used?

Some realworld servers return null for the image field on the author json if it hasn't been set. One example is the Rust based [realworld-tide](https://github.com/colinbankier/realworld-tide) server. If you create a...

The template for `article-meta` is as follow: ```html Eric Simons January 20th   Follow Eric Simons (10)      Favorite Post (29) ``` It includes a 'favorite button' and a...

**Describe the bug** Articles with `` in the body trigger XSS **To Reproduce** Steps to reproduce the behavior: 1. Go to https://jetli.github.io/rust-yew-realworld-example-app/#/article/img-src-onerror-alert-xss-in-title-with-img-onerror-img-dvpw7w 2. See alert **Expected behavior** The body is...

Encode strings used as URL query parameter values. For example, tag names can be arbitrary strings. These names are used in URL query parameters, so they must encoded appropriately. The...

### Fix a article rendering bug: Fix `use_state(|| props.article.clone())` and `props.article` __not synchronized__ in case of partial tab switching. Add a debug log in file `crates/conduit-wasm/src/components/article_preview.rs` ```rust log::debug!("DEBUG: props.article: {:?}",...