Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guilleangulo/movie-reviews
Excel prototype using React
https://github.com/guilleangulo/movie-reviews
demo flux-pattern movie-reviews
Last synced: 3 days ago
JSON representation
Excel prototype using React
- Host: GitHub
- URL: https://github.com/guilleangulo/movie-reviews
- Owner: GuilleAngulo
- Created: 2020-01-24T17:39:00.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-30T13:23:00.000Z (over 4 years ago)
- Last Synced: 2024-10-19T13:36:15.132Z (3 months ago)
- Topics: demo, flux-pattern, movie-reviews
- Language: JavaScript
- Homepage: https://reviews.guilleangulo.me/
- Size: 1.14 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 📽️ Movie Reviews
This component implements a data table, with the following funcionality:
- The headers and initial data can be uploaded at src/util/schema.js
- Sorts the data alphabetically by clicking the headers of the table (An up/down arrow will ilustrate it).
- A searching field looking for an specific letter or word in order to filter the table data.
- Modify data by double clicking on cells. Press enter for save the new data.
- Each row can be: displayed, edited or removed using the actions column.
- It is possible to switch between light and dark theme (night mode), using the switch at the top-right corner.### Styled Components 💅
The app uses styled components to have 'ThemeProvider' feature in order to switch styles between themes.### Flux Pattern
It is implemented the flux pattern at 'flux' folder. The store is at 'CRUDStore' and actions are declared at 'CRUDActions'. At the store an EventEmitter is initialized, and everytime the app data is set an event is emitted to the components subscribed to have a data update. In this app the data is stored at localStorage in the browser. This makes the things much easier in order to comunicate the data updates between components.## 🎞️ Live Demo
You can test it [here](https://reviews.guilleangulo.me)## 📸 Screens
## 🎥 Video Demo
[![Watch the demo](https://github.com/GuilleAngulo/movie-reviews/blob/master/img/github-youtube.png)](https://www.youtube.com/watch?v=PAjQd3ibD4Y)