seed-rs / seed

A Rust framework for creating web apps

Home Page:https://seed-rs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Website & Readme.md - community feedback

MartinKavik opened this issue · comments

Hi!
We want to make Seed's website and documentation as good as possible.

If you want to help a little bit, please see those issues for more info:

Thank you!

The docs on docs.rs aren't building for 0.5.0.

EDIT: Probably related to rust-lang/docs.rs#503.

The website is really good! Thanks!
The only small problem is that if you switch to dark mode and refresh the page, it first renders in light mode, then switches.

commented

The new websites great, I really think because Seed is big enough and active enough that it should have an online chat presence, i.e. a Discord or something.

The new website is showing an outdated version (0.4.2 (Nov 05, 2019)) but the overall documentation is quite good :)

One thing that might be interesting for companies would be a section Commercial Support so that people can see that seed is more than just a hobby project.

an online chat presence, i.e. a Discord or something

I was thinking about it, but I (we?) don't have capacity to take care of it (chat, forum, twitter, etc.) in the near future. However if you (@rebo) or anybody else want to help with it, just write us a mail :)

The new website is showing an outdated version (0.4.2 (Nov 05, 2019))

Yeah, seed-rs.org content for Seed 0.5.0 is WIP (PR). We also have to redeploy docs (? @David-OConnor) to fix official Rust docs.

They are process errors, we should update docs and seed-rs.org content before the Seed release.

a section Commercial Support

@flosse Could you create an issue in https://github.com/seed-rs/seed-rs.org and describe a little bit what you think that should be in this section from your point of view?

@flosse Could you create an issue in https://github.com/seed-rs/seed-rs.org and describe a little bit what you think that should be in this section from your point of view?

see seed-rs/seed-rs.org#9

Great job 👍 , the website is far better than the old one.

I created Discord channel. Feel free to join!

I'm getting invalid invite.

It turns our that invite links have expiration date.
Here's unlimited one: https://discord.gg/JHHcHp5

I have only skimmed the new website, but it looks great! Bonus points for the dark mode button <3

About update function:
" It accepts a message and a model as parameters, and returns an Update struct. Update contains ShouldRender and Effect enums."
It doesn't return anything. This paragraph is either outdated or ambiguous.

@decafbad Thanks for feedback! We plan to rewrite guides after Seed 0.7.0 release (released in next weeks). I'll try to update also docs for 0.6.0.

Seed 0.7.0 release (released in next weeks).

🎉 awesome!

at https://seed-rs.org/0.7.0/use/ I removed #![allow(clippy::wildcard_imports)] but no clippy errors.

@decafbad Try to change something in the Rust code, save it and then run cargo make clippy. There is a bug in clippy - it sometimes doesn't lint the code at all if it's already compiled.

It works fine now, after I ran a second cargo clean. Couldn't get what's wrong.