Git Product home page Git Product logo

blog's Introduction

Области хранения данных:

  • data base JSON-Server
  • BFF
  • redux store

Сущности приложения:

  • User:
    • DB (List of users)
    • BFF (Current user session)
    • Redux Store (Display in browser)
  • User Role:
    • DB (List of roles)
    • BFF (Current user session with role)
    • Redux Store (Usage on client)
  • Posts:
    • DB (List of articles)
    • Redux Store (Display in browser)
  • Comments:
    • DB (List of comments)
    • Redux Store (Display in browser)

Таблицы DB:

  • users: id / login / password / registered_at(date) / role_id
  • roles: id / name
  • posts: id / title / image_url / content / published_at(date)
  • comments: id / author_id / post_id / content /published_at

Схема состояния на BFF:

  • сессия текущего пользователя: login / password / role

Схема для Redux Store на клиенте:

  • user: id / login / roleId / session
  • posts:массив post: id / title / imageUrl / publishedAt / commentsCount
  • post: id / title / imageUrl / content / publishedAt / comments: массив comment: id / author / content / publishedAt
  • users: массив user: id / login / registeredAt / role

blog's People

Contributors

pileroid 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.