Giter Site home page Giter Site logo

onboarding-codenote-client's Introduction

Welcome to CodeNote project.

CodeNote is an onboarding project that helps codelink new member to get familiar with frontend tech stack at our company such as:

We have 4 main tasks in order to complete this project. Each task includes 2 parts: basic and optional requirement.

You have to complete the basic requirement first, after that you can move to optional requirement that requests more time and challenge to finish.

Part I - Basic Features

First, clone project to your local

$ git clone [email protected]:leo-le-07/onboarding-codenote-client.git /your_folder
$ cd your_folder

Check out and create a new branch

$ git fetch
$ git checkout task-1/add-basic-features
$ git checkout -b task-1/add-basic-features-basic-implement

Install packages and start project

$ yarn install
$ yarn start

Now you can access application at http://localhost:3000

Basic requirement

We already have Signup feature as example. Now we want to help a user to log in with email ([email protected]) and password (123456) at path /login. The UI should be like this Login

Hints:

  • Currently we're using aws-amplify library to support us to interact with AWS services. In case of login, you can use method Auth.signIn from that library.
  • After logging in successfully, you need to call userHasAuthenticated method. It passes from App component in order to notify other components in our application that we've already logged in.

Optional requirement

A user can create a note at path /notes/new. The UI should be like this Create new note

Hints:

  • In order to upload file attachment to S3, please use method s3Upload from /libs/awsLib library.
  • For creating new note, we can use API method from aws-amplify to make a new note request. For example:
API.post("notes", "/notes", { body: { attachment: 's3-url', content: 'our note content' }});

Submit Pull Request

When finishing, please create a pull request to branch task-1/add-basic-features

Part II - Working With Redux

In part I, we manage a user logged in state in App component as isAuthenticated internal state. Then we pass that state as childProps to all nested children. It still works in the beginning, however, it hards to manage in real projects.

Redux comes up with a convenient way to share state within our application.

Check out and create a new branch

$ git fetch
$ git checkout task-2/working-with-redux
$ git checkout -b task-2/working-with-redux-basic-implement

Install packages and start project

$ yarn install
$ yarn start

You'll see the website broken when trying to use some features because we've already removed isAuthenticated internal state from App component as well as childProps from ScreensRoot component.

Basic requirement

Manage state by redux and make our website works normally again.

Submit Pull Request

When finishing, please create a pull request to branch task-2/working-with-redux

Part III - TypeScript Type Checking

From ReactJS official page

Static type checkers like Flow and TypeScript identify certain types of problems before you even run your code. They can also improve developer workflow by adding features like auto-completion. For this reason, we recommend using Flow or TypeScript instead of PropTypes for larger code bases.

In this project, we prefer TypeScript to Flow type.

Check out and create a new branch

$ git fetch
$ git checkout task-3/typescript-type-checking
$ git checkout -b task-3/typescript-type-checking-basic-implement

Install packages and start project

$ yarn install
$ yarn start

Basic requirement

If you run type checker command

$ npm run checktype

You'll see some errors related to 2 components that we created in Part I: Login and NewNote.

You need to add TypeScript to those components and make sure type checker passes with no error.

Optional requirement

Take a look at file tsconfig.json in our project, you will see that we only cover type checkers for 2 components above. Try adding type checker for all files inside src folder by replacing

  "include": [
    "src/screens/Login",
    "src/screens/NewNote",
  ]

with

  "include": ["src"]

This time, we'll add TypeScript to cover for all files in our project.

Submit Pull Request

When finishing, please create a pull request to branch task-3/typescript-type-checking

Part IV - Writing Unit Tests

In this part, we'll add unit tests for our components with Jest and Enzyme support.

Check out and create a new branch

$ git fetch
$ git checkout task-4/writing-tests
$ git checkout -b task-4/writing-tests-basic-implement

Install packages and start project

$ yarn install
$ yarn start

Basic requirement

If you run test by this command

$ npm run test

You'll see an error related to empty test for Home component.

We'll fix that error by adding unit tests for that component.

Optional requirement

Running this command to generate Jest coverage report

$ npm run test --coverage

Open coverage report file at coverage/lcov-report/index.html from root folder. You'll see that most of components in our project are not covered.

You could add more unit tests to the rest components optionally in order to increase test coverage points.

Submit Pull Request

When finishing, please create a pull request to branch task-4/writing-tests

Part V - Going Live

This one is optional part. We'll use Netlify service to deploy our website. You can create a new Netlify account here in case you don't have it yet.

Install Netlify client on your local

$ npm install -g netlify-cli

Build your reactjs app

$ npm run build

Deploy to production

$ netlify deploy

Netlify will ask you some simple questions before deploying. When Netify asks you about deploy path, please enter ./build. It means that Netify only deploys your build folder.

Wait for a few seconds, you will see Live Draft URL link after Netlify deployment finished.

Issues

Feel free to submit issues and enhancement requests.

Contributing

Please refer to each project's style guidelines and guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

onboarding-codenote-client's People

Contributors

leo-le-07 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.