deboraCs26 / onboard

0 stars 0 forks source link

[Track 8/8] Taqfy - UX and Frontend #26

Open taki-tiler[bot] opened 1 week ago

taki-tiler[bot] commented 1 week ago

Ok, there is no more features to add to your project by now! Now, you'll just apply the concepts you've learned so far, as well as some practices we use here at Taqtile.

Step 1/4 - Thinking about components

Estimated time: 10 minutes

We ❤️ apps. And a crucial part when making a good app is the User Experience, a.k.a UX. Also, you've learned about componentization and how it contributes to make a good and usable app. So, this step is just a mental exercise. We have below two images representing 2 of the screens you developed so far: Login and Create User:

Screens

Looking at these screens, you can extract from them some components that can be (re)used. They are relatively simple to componentize, but, as you can imagine, there's not only one way of doing it, specially when the design gets more complex. So, before coding them in a hurry, let's take some minutes to think:

  1. What components can be extracted?
  2. Why we should extract them?
  3. What attributes each of these components will contain?

After you answer these questions, go to next step to see our suggestions on how to componentize them. Then, you'll start coding these components.

Btw, as we are talking about UX, here are some references if you want to know more about it:

deboraCs26 commented 1 week ago

next

taki-tiler[bot] commented 1 week ago

Step 2/4 - Planning our components

Estimated time: 10 minutes

So, as promised, let's present our suggestions. First, we'd like to show this document, which is a nice Frontend guide and it has some conventions we adopt on our projects. It was not given to you on previous step on purpose, so you could think on your own. Based on it, we can answer the quesitons of the previous step:

  1. What components can be extracted?

The way we thought about it, basically 3 components, as shown on the image below: H1 (Header1 - text component), Form field and button.

Suggestions

  1. Why we should extract them?

Two of the most important reasons:

  1. What attributes each of these components will contain?

There's not only one answer for this either. But, as general rule, a component can contain:

  1. Style attibutes: sizes, formats, colors, margins, and every other style attribute that should look the same on all occurrences of the component.
  2. Behaviour attibutes: interactions, different states, animations, etc.

So, for the components of question 1:

deboraCs26 commented 6 days ago

next

taki-tiler[bot] commented 6 days ago

Step 3/4 - Styled components library

Estimated time: 1 hour

After some minutes of theory, it's finally time to put all the previous thoughts on code.

We'll start with a setup of some tools for our UX development. Here at Taqtile we use the Styled Components library, which helps us to styling our components in a very convenient way.

For now, your job is to install the library and understand at least the basic concepts. Try to use it creating a very simple component to check if it's working, and then go to next step.

deboraCs26 commented 6 days ago

next

taki-tiler[bot] commented 6 days ago

Step 4/4 - Turning theory into code

Estimated time: 8 hours

Now that you have the most important and powerful tool we use, let's turn our components of steps 1 and 2 into code!

To do that in a reasonable time, we will focus only on on Login and Add User, as we did before. Your job is to create some components and use them at both UIs, so you can see all of the thoughts of steps 1 and 2 on action.

Here are some specifications our "design team" is giving to help you build the components. You don't exactly need to follow all the detailed values if you don't want to. Whats's extremely important is to have those specs parametrized, as the values as not that important: we should design our code to change them easily if necessary.

H1:

Button:

You can add some things to this specs if you want, such as borders radius, gradient, icons, etc. Just be careful with the time you're spending on this styling.

Form

As the behaviour, your form should have two states:

TIP: Anytime you implement a component, it's a good practice to test it isolated, so we can make sure it's working properly, including states/behaviours.

deboraCs26 commented 6 days ago

next

taki-tiler[bot] commented 6 days ago

Congratulations! You just finished the onboard! 🎉

Thank you for participating, we hope you've learned a lot. The main goal of this onboard is to make you ready to enter in any of our projects.

As you advance on the project, we'd like to hear your feedback. Please, contact your tutors and let them know your thoughts on this onboard: