This project is created as a part of React learning at Szkola Reacta. It is a simple video platform, which allows you to play your favorite movies, before saved in local database.
You can view this app here.
Requirements:
- Node.js (13.8.0 recommended) - https://nodejs.org/en/download/
- Git
git clone https://github.com/moose96/FavidPad.git
cd FavidPad
npm install
npm start
The app shows videos, with given title, and description by custom player. For convenience, it should let users give an url from web url input, like: https://youtube.com/watch?v=somevideo, and convert it into right video url, for example: https://youtube.com/embed/somevideo.
/
It is a home page in which there are list of videos, presented by carousel view, or list view in dependency of screen orientation. There are also links to other urls.
/video/:id
This page shows video with given id and list with other movies. Embedded player allows user to watch movies.
/video/create
/video/:id/update
Those pages presents the same form, which allows to add new movie, or update existing one.
Below header there is the toolbar with controls changing some settings. At this moment there is available only one button with speaker icon. This button toggles the sfx player which allows play sound effects while some browser events are triggered. Below the toolbar there is the carousel view, which shows all movies. You could scroll videos by clicking on the video which you want to watch. Then you will able to go to video watching page by clicking centered video again. Also you can scroll movies by scroll wheel or by dragging on the screen by your finger. Each video in carousel view has two buttons marked by pencil and cross icon. The former one bring you into video edit form, and the latter one allows you to delete that movie. When you would like to delete video, first you are supposed to confirm that action. Below the carousel view there is a second toolbar. Inside it there are pagination controls and number input which controls number of elements on page. Below the second toolbar there is a button which move you to form which allow add you a new video. At the bottom there are footer with link to my GitHub account, and to about page.
The page is divided into two sections: the left contains player which allows you to watch video and the right contains information about video and list with other movies.
The form contains three fields: title, url, and description. All of them are required. Start typing information from url. When you blur that input application will get the thumbnail then you will know if it is movie which you want to add.
When you will turn your screen into portrait orientation, the application will look slightly different. Carousel view on the home page will be replaced by list view. That view has the same functionality like the carousel view. On the header there will appear two buttons, which allow you to go back and forward through history.
At this moment sound effect player plays sound when user let the mouse enter on video in Carousel View and when the user let the mouse enter on Add button.
Below there is the list which describes how I want to develop my application.
- Improve the layout, especially in portrait mode.
- Add tutorial guide, which will be showing how use that application.
- Add possibility to changing colors.
- Add internalization