platypush/platypush/backend/http/webapp
Fabio Manganiello afee6c5c85
continuous-integration/drone/push Build is passing Details
[music UI] Implemented infinite scroll for playlist view.
Instead of loading all the tracks in the DOM (very inefficient and slow
on slow devices and/or with big playlists), we should keep a window of
100 items in the screen and roll it over the playlists as the status
change or the user scrolls.
2024-01-05 02:19:38 +01:00
..
dist [Automatic] Updated UI files 2024-01-01 13:24:56 +00:00
public [UI] (Re)-added required `logo-256x256.png` image. 2023-11-12 15:52:07 +01:00
src [music UI] Implemented infinite scroll for playlist view. 2024-01-05 02:19:38 +01:00
.eslintrc.js Updated Vue dependencies for the webapp 2022-03-28 01:19:21 +02:00
.gitignore The webapp dist/ folder should actually be under the webapp dir 2021-02-20 23:26:25 +01:00
README.md New media panel [WIP] 2021-01-14 00:15:35 +01:00
babel.config.js New Vue.js template for dashbord WIP 2020-11-21 01:12:08 +01:00
jsconfig.json Updated Vue dependencies for the webapp 2022-03-28 01:19:21 +02:00
package-lock.json Added `CronEditor` component. 2023-12-11 00:25:24 +01:00
package.json Added `CronEditor` component. 2023-12-11 00:25:24 +01:00
vue.config.js [UI] Proxy `/media/*` requests to upstream when Vue is in debug mode. 2023-11-12 15:55:03 +01:00

README.md

Platypush web app

The UI for Platypush is built with Vue 3. The production-ready files are distributed with the package under platypush/backend/http/dist. If you want to change/debug/redistribute some parts of the UI you'll need npm installed. The directory of this file is the root of the web app project and all the following commands should be typed from here.

Project setup

npm install

Compilation and hot-reload for development

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.