Skip to content
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

feat: add welcome page #565

Merged
merged 23 commits into from
Sep 18, 2018
Merged

feat: add welcome page #565

merged 23 commits into from
Sep 18, 2018

Conversation

fsdiogo
Copy link
Contributor

@fsdiogo fsdiogo commented Sep 4, 2018

Check #564 for reference.

Copy link
Member

@lidel lidel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fsdiogo posted some of my content ideas in #564 (comment)

I've added a commit with browser.runtime.onInstalled hook that opens the landing page on first install or when loaded as a temporary extension. It should make development easier :)

Note 1: I had to register this hook synchronously before anything else. Registering from async function missed the event.

Note 2: It is possible to use the same hook to react for update event (eg. to display release notes of new release), but that is something for a separate PR :)

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 5, 2018

Cool, thanks @lidel 🙂

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 5, 2018

Current status:

page

I have to put thumbnails and style them in the videos section, and link them to YouTube. I tried embedding the videos but got an error due to the extension blocking something, I don't remember what exactly, have to check that again.

After that I'll start working on the left side. Thoughts?

@lidel
Copy link
Member

lidel commented Sep 6, 2018

Onboarding links

It is very easy to digest, does not overwhelm the user, I like it a lot!

Let's reorder onboarding links/sections to follow the growth of user from noobie to contributor :)

  1. New to IPFS?
  2. Got questions?
  3. Want to help?

Videos

Youtube player was probably blocked by the default CSP, which is very strict in WebExtensions in Firefox:

It is possible to set more liberal CSP, but if you just embedd a thumbnail that opens a video in a new tab it should also be fine:

<a href="https://www.youtube.com/watch?feature=player_embedded&v=YOUTUBE_VIDEO_ID_HERE
" target="_blank"><img src="https://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg" 
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="0" /></a>

Left side

Here's an idea: What if when HTTP API on default port is down (peerCount === -1), we let user choose if they want to start embedded js-ipfs or simply connect to a non-standard port/address?

@olizilla created a very nice UI for this in WebUI, see screenshots in ipfs/ipfs-webui#715, we could basically copy the idea and add third option "start embedded js-ipfs".

Thoughts?

@olizilla
Copy link
Member

olizilla commented Sep 6, 2018

Here's an idea: What if when HTTP API on default port is down (peerCount === -1), we let user choose if they want to start embedded js-ipfs or simply connect to a non-standard port/address?

I like the idea but my fear is that for new users it'll be more confusing than a meaningful choice. They won't have all the background info. I think right now we want people to run a separate daemon, so perhaps we should try focusing the messaging on that... what is the clearest way we can explain it.

We could offer the choice, but I don't think it should be presented with a 50/50 visual weighting of the concepts.

How does metamask deal with it? They don't have an embedded option, so it'd be great to grab some screenshots of their onboarding flow and add them to an issue on https://github.com/ipfs/ipfs-gui so we can learn from it.

@olizilla
Copy link
Member

olizilla commented Sep 6, 2018

More generally, this is looking great @fsdiogo
On the left side, I agree with @lidel it check we already have a connection to an ipfs instance, and (approximately) say "Woo hoo, here are some stats and amazing things you can go find / co-host on the peer-web", and if not then it should give a some super clear instructions on what to do next. Feel free to start with what we have in ipfs/ipfs-webui#715 and we can iterate from there. Feels like another component we're gonna want to share!

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 6, 2018

I'd like to give the users the option to choose the node to connect, but I also agree that it can be confusing.

I'm afraid that the instructions will take a lot of space, I'd like this page to be as simple as possible 🤔

@olizilla
Copy link
Member

olizilla commented Sep 6, 2018

I'm afraid that the instructions will take a lot of space, I'd like this page to be as simple as possible 🤔

That's a reasonable fear. This section of companion has 3 jobs:

  • catch the user after install, to create a feeling of a coherent process from the promotion page through the install and then making it out the other side to a page that looks similar / familiar and welcoming.

  • ensure the users set up is working and clearly guide them to install an ipfs daemon (most likely error) or update their api adress. Updating address is really for users that already know something about IPFS, so it can be given a lower visual priority. The page should make it easy to restart or go install a deamon, and possible to update your api address.

  • inspire and inform the user about what's possible now they have a working set up.

Where the user has no api running we must still "catch" them, but the most important thing is getting them to a working set up. Given that, it feels like we could have a layout that gives a little space to creating the "catch" and the rest to "How to get this working well"

Where the user has a working set up, catching and inspiring can take up all the space, and we can drop the the "get it working" section. Power users who want to change the api they connect to can do so in the app settings.

When Desktop is updated, we'd message it like "go install desktop, then install companion" to increase the chances of the user being able to use companion right away, but we have to deal with both scenarios.

@olizilla
Copy link
Member

olizilla commented Sep 6, 2018

also of note, where you don't have working setup, we'd still pass through the "everything is working" flow once they fix the issue... the flow for a new user with no daemon is something like:

"the catch" -> "how to get it working" --> ...user goes off and installs a thing... -> "hurray you did it!" + "inspire them / what's next".

@hacdias
Copy link
Member

hacdias commented Sep 8, 2018

I like the page, but I was wondering if there aren't any more up to date videos to put there. That 'IPFS Alpha' videos seems a bit old. Or show some of the other apps/functionalities like Desktop or WebUI.

@lidel
Copy link
Member

lidel commented Sep 9, 2018

I think we could grab something from IPFS Talks Playlist.

Eg. a short one hands-on (~10min) and a longer with the bigger picture.
For a longer one perhaps this one from TEDxSanFrancisco?
Is there a better recording of hands-on than the 'IPFS Alpha'?

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 10, 2018

@hacdias @lidel as discussed in today's sync, we'll keep the Alpha Demo for now.

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 10, 2018

Everything cool:

ok

Missing daemon:

not-ok

Thoughts? 🙂

Copy link
Member

@lidel lidel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quick feedback:

Left pane:

Right pane:

  • Reorder sections to 1) New to IPFS? 2) Got Questions? 3) Want to help?
  • Reorder project icons 1) Multiformats 2) IPLD 3) libp2p
  • Add some padding around videos so they don't overlap when viewport is tight

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 11, 2018

@lidel new update based on your feedback, thanks!

  • Added fonts
    • Used montserrat for the Companion title
    • Tried it in the titles but I think it looks better as is
  • Added heartbeat animation and disabled logo to reflect the API state
  • Fixed weird margins
    • The margin between the You're all set! and the bottom copy is less than the logo margin to differentiate those two parts (the extension title and the success state)
  • Reordered resources and projects
  • Fixed videos margin

IPFS API 👍

ok

IPFS API 👎

nok

@fsdiogo fsdiogo changed the title [WIP] feat: add welcome page feat: add welcome page Sep 11, 2018
- capitalized onboarding headers
- improved onboarding copy, added Dicover section, extended last one
- removed blue circles from videos, felt bit too distracting
@lidel
Copy link
Member

lidel commented Sep 11, 2018

@fsdiogo looks awesome! 👍 🥇

I've added some additional links to onboarding steps in right pane and made tiny UI changes in dca7932 (mostly to make it look better with fonts on Linux and for people with custom GTK/dark themes), please fetch it and check if it looks good on Mac.

The only remaining thing before we merge this is adding i18n.
Just move strings from page to add-on/_locales/en/messages.json, keys probably should start with page_landingWelcome_ or something like that.

Copy link
Member

@lidel lidel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow, nearly done 👍 👀

Before we merge this, please remove render and copy from i18n keys, they make keys longer without providing actual context to translators :)

add-on/src/landing-pages/welcome/index.html Outdated Show resolved Hide resolved
add-on/src/utils/i18n.js Outdated Show resolved Hide resolved
Copy link
Member

@lidel lidel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fsdiogo I fixed race condition during companion init, now the landing page opens after companion inits, so there will be no false-negatives.

While I was at it I also added:

  • a fix for UI jitter when API state is unknown
  • a fix for translated span renderer

Check if it looks ok on your end. Is there anything you want to add before we merge this?

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 14, 2018

Cool, the UI jitter is solved 👍

The fix for the translated span broke something, I'm getting this:

ss

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 14, 2018

Fixed it, commit incoming.

Other than that I think it's ready to merge 🚀

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 17, 2018

Tested it in Chrome and Firefox with the latest commits and everything is good 👌

@olizilla
Copy link
Member

minor, but the vertical alignment of the left side is based on the height of the content on the right side rather than the height of the screen. On a 13" laptop screen the message on the left look a little low down and on a smaller screen the text gets cropped off the bottom. Would be great to fix that so it was centred on screen height, but could be a separate PR.

@lidel
Copy link
Member

lidel commented Sep 17, 2018

Yeah, I think I see what you mean:

2018-09-17-141457_1269x718_scrot

@fsdiogo will you be able to address this before merge? :)

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 18, 2018

I'm working on that, but having some issues. When the left side doesn't fit in the viewport I'm unable to have scroll there because I'm using position: fixed. Trying to find a solution.

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 18, 2018

Here's the thing: my idea was to fix the left side and give it a min-height. When the screen height was less than that min-height, the left side would have to scroll, but I only wanted one scroll for the entire page. That isn't possible. I don't know if I'm making myself clear 🤔

Solution: as we don't have a lot of content on the left side, it's possible to keep it all on the viewport, for screens with smaller widths heights I can reduce the margins and logo sizes to keep it all in the user view wit media queries.

So the left side will always be fully visible with no scroll, and the right side content will have scroll (the page scroll).

Is that ok with you guys or were you thinking of another solution?

@lidel
Copy link
Member

lidel commented Sep 18, 2018

So the left side will always be fully visible with no scroll, and the right side content will have scroll (the page scroll).

I think it would be ok with me as long responsive reflow on narrow screens (eg. mobile) still works.

I mean this (right side moved below left side due to the narrow viewport):

2018-09-18-162344_490x762_scrot

If we can't support that, then its better to merge current version.

@olizilla
Copy link
Member

Yep i get you. I'd do what you can to make the content on the left fit the available space on small screens without needing a scrollbar. If the left still overflows vertically, then it should probably get it's own scrollbar like https://jsbin.com/lehemay/1/edit?html,css,output

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 18, 2018

@lidel, yeah, I can make it responsive in mobile as it is now!

@olizilla I thought of that too, but honestly I really don't like the idea of having two individual scrolls. So that would be my last resort.

@fsdiogo
Copy link
Contributor Author

fsdiogo commented Sep 18, 2018

1

2

3

Copy link
Member

@lidel lidel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great @fsdiogo, thank you!
I'm gonna merge this and push to Beta to get some initial feedback while translation begins.

@lidel lidel merged commit 5c7be88 into master Sep 18, 2018
@lidel lidel deleted the feat/add-landing-pages branch September 18, 2018 22:01
@lidel lidel mentioned this pull request Sep 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants