Skip to content

Latest commit

 

History

History
166 lines (99 loc) · 10.1 KB

Mobile Developer.md

File metadata and controls

166 lines (99 loc) · 10.1 KB

Mobile Developer

Company best practices

  • You know how to share secret values with other employees. 📚
  • You know how to share secret values externally 📚
  • You create pull requests with proper name and description 📚
  • You squash merge your pull requests 📚
  • You name your commits properly 📚
  • You review PRs carefully and leave your comments 📚
  • You know how to configure rules in a repository for merging to specific branches (master, develop)
  • You know how to reference a Jira ticket in your commit
  • You use Slack statuses in line with company policy (remote working, vacationing, in a meeting, etc)

React

  • You know how to write a function component. 📚
  • You know the difference between function and class components. 📚
  • You know how to define and modify local component's state. 📚
  • You know what Virtual DOM is and how React uses it to render components. 📚
  • You know how to use element events and how to incorporate them in React lifecycle 📚
  • You can use useState and useEffect hooks. 📚
  • You know how hook dependency array works. 📚

Application state management

  • You can describe full Redux flow 📚
  • You know how to apply selector functions to useSelector hook. 📚
  • You know how to dispatch actions from React component. 📚
  • You know how to create a reducer. 📚
  • You know how to create an action creator 📚
  • You understand benefits of using immutable data structures in Redux applications 📚
  • You know how to use at least one of the libraries that provide immutable data structures in redux state 📚
  • You know how to create a reducer that uses immer 📚
  • You know how to create a selector with createSelector function 📚
  • You understand the concept of side effects 📚
  • You know how to take a side effect and dispatch an action based on it 📚
  • You know how to select data from Redux state using selector functions inside sagas. 📚

HTTP

  • You know how to create an HTTP request using native fetch 📚
  • You know how to handle errors returned in HTTP response 📚
  • You know how to use axios to send HTTP request to an API endpoint 📚
  • You know how to handle errors returned in HTTP response 📚
  • You can configure axios to have a predefined base url for making requests

Internationalization

  • You know and use React-intl components 📚
  • You know how to create messages files using defineMessage api 📚

Date & Time

  • You know how to create a Date object for a specific date 📚
  • You know how to create a date-fns date object for specific date 📚
  • You know how to format and display a date object using standard format strings 📚

Tools

  • You know how to extract style values (geometry, colours, fonts, etc.) from a design project 📚
  • You know how to extract image assets from a design project
  • You know how to extract vector icon asset from a project

Contribution

We are very open to contributions to extend or change the requirements based on your gut and experience. To contribute you can use a pull request which will be later validated by our technical team and added to the main docs.

If you will spot any issues please add them in the Issues section.

Credits

This page is maintained by Apptension team.

You can see more of our work here: Apptension portfolio.

License

MIT License

© 2023 Apptension Sp. z o.o.

Built and maintained by Apptension.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.