status-react/src/quo
Jamie Caprani 72d43ba745
Visual tests setup (#14329)
feat: configuration setup for visual tests

Co-authored-by: Erik Seppanen <esep@protonmail.com>
2022-11-20 15:46:04 -08:00
..
components Visual tests setup (#14329) 2022-11-20 15:46:04 -08:00
design_system Support mutual contact requests 2022-05-31 09:23:24 +01:00
previews Implemention of quo2 bottom-nav-tab (#14077) 2022-09-28 01:27:06 +05:30
README.md Use native binary for the clj-kondo linter (#14179) 2022-10-19 09:54:01 -03:00
animated.cljs Use native binary for the clj-kondo linter (#14179) 2022-10-19 09:54:01 -03:00
core.cljs Add request/approve communites 2021-02-26 15:38:19 +01:00
gesture_handler.cljs [#13517] UI Component - Message Input (#13620) 2022-09-06 11:19:05 +02:00
haptic.cljs fix: quo haptic impact light key (#13772) 2022-08-08 10:21:17 +02:00
platform.cljs Merge password screens 2020-07-15 11:28:02 +03:00
react.clj Add bottom sheet 2020-06-02 18:10:27 +03:00
react.cljs refactor: go through clj-kondo warnings (#13929) 2022-09-05 18:52:39 +08:00
react_native.cljs Shell & Bottom Tabs Migration (#14099) 2022-10-24 18:35:06 +05:30
spec.cljs Add text input and tooltip components 2020-05-04 16:38:26 +03:00
theme.cljs wallet redesign 2022-04-04 16:14:14 +02:00

README.md

Status Quo Components

All components in Quo should be independent of the app state. They should be pure and easy to reason about. Avoiding the app state is also required to make the library independent and easy to be pulled off as a separate repository when needed. To avoid high coupling and direct use of internal styling, the components should be exported via namespace quo.core and used by the Status app only from there. This will allow a more flexible way to update components without possible breakages into the app style.

Quo components should not have any dependency on the Status app, this will avoid circular dependency and also benefit the independence of the components.

All components are stored inside components namespaces. They are stateless and do not dispatch and subscribe to re-frame database. All state should be passed by props and all events can be passed as functions. Avoiding direct connection with re-frame will allow components to grow and be reused in different places without the conditionals hell.

All style system constants are stored inside design-system namespaces. They are used to build components and can be directly required by the status app. Avoid duplication of these vars and do not use them in code directly as a value.

For each component introduced, add previews of all possible states.

Do not introduce components for slightly modified existing components, if they are not a part of the design system. In case they are required in one place in the app, use style override.

Code style

Ensure that your changes match the style of the rest of the code. This library uses Clojure Community code style The Clojure Style Guide. To ensure consistency, run make lint, which uses the clj-kondo linter.

Best practices

  • Design components atomically and compose them into bigger components.
  • Do not export individual atoms, only components. This way we can limit design system to be used in too many way which can creating disjointed experiences.
  • Avoid external margins for atom components, it can be added on the wrapper where they are used but can't be removed without overriding. Max Stoiber article on margins
  • Design reusable components into Layout Isolated Components (Article more relates to web, but ideas fits also to mobile development)
  • Explicit is better than implicit, do not rely on platform default, if you expect a specific value, then override it

TBD:

  • Components documentation
  • Check props using spec in pre conditions.