123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- import React, { Component } from "react";
- import PropTypes from "prop-types";
- import CustomInput from "components/CustomInput.jsx";
- import CustomErrors from "components/CustomMessages.jsx";
- import { connect } from "react-redux";
- import { closeOverlay2, openOverlay3, closeOverlay3 } from "actions/stationOverlay";
- import io from "io";
- @connect(state => ({
- stationId: state.station.get("id"),
- }))
- export default class EditPlaylist extends Component {
- constructor(props) {
- super(props);
- CustomInput.initialize(this);
- this.state = {
- gotPlaylist: false,
- playlist: {},
- };
- io.getSocket((socket) => {
- socket.emit('playlists.getPlaylist', this.props.playlistId, res => {
- if (res.status === 'success') {
- this.input.displayName.setValue(res.data.displayName, true);
- this.setState({
- gotPlaylist: true,
- playlist: res.data,
- });
- }
- });
- socket.on('event:playlist.addSong', data => {
- if (this.props.playlistId === data.playlistId) {
- let songs = this.state.playlist.songs;
- songs.push(data.song);
- this.setState({
- playlist: {
- ...this.state.playlist,
- songs,
- },
- });
- }
- });
- socket.on('event:playlist.updateDisplayName', data => {
- if (this.props.playlistId === data.playlistId) {
- this.setState({
- playlist: {
- ...this.state.playlist,
- displayName: data.displayName,
- },
- });
- }
- });
- socket.on('event:playlist.moveSongToBottom', data => {
- if (this.props.playlistId === data.playlistId) {
- let songs = this.state.playlist.songs;
- let songIndex;
- songs.forEach((song, index) => {
- if (song.songId === data.songId) songIndex = index;
- });
- let song = songs.splice(songIndex, 1)[0];
- songs.push(song);
- this.setState({
- playlist: {
- ...this.state.playlist,
- songs,
- },
- });
- }
- });
- socket.on('event:playlist.moveSongToTop', (data) => {
- if (this.props.playlistId === data.playlistId) {
- let songs = this.state.playlist.songs;
- let songIndex;
- songs.forEach((song, index) => {
- if (song.songId === data.songId) songIndex = index;
- });
- let song = songs.splice(songIndex, 1)[0];
- songs.unshift(song);
- this.setState({
- playlist: {
- ...this.state.playlist,
- songs,
- },
- });
- }
- });
- socket.on('event:playlist.removeSong', data => {
- if (this.props.playlistId === data.playlistId) {
- //TODO Somehow make this sync, so when 2 songs get removed at the same ms it removes both not just one
- let songs = this.state.playlist.songs;
- songs.forEach((song, index) => {
- if (song.songId === data.songId) songs.splice(index, 1);
- });
- this.setState({
- playlist: {
- ...this.state.playlist,
- songs,
- },
- });
- }
- });
- });
- console.log("edit Playlist", props);
- }
- addSongToPlaylistCallback = (songId) => {
- io.getSocket((socket) => {
- // Add song to the playlist
- socket.emit("playlists.addSongToPlaylist", songId, this.props.playlistId, res => {
- if (res.status === "success") {
- this.messages.clearAddSuccess("Successfully added song.");
- } else {
- this.messages.addError(res.message);
- }
- this.props.dispatch(closeOverlay3());
- });
- });
- };
- addSongToPlaylist = () => {
- this.props.dispatch(openOverlay3("searchYouTube", this.addSongToPlaylistCallback));
- };
- changeDisplayName = () => {
- this.messages.clearErrorSuccess();
- if (CustomInput.hasInvalidInput(this.input, ["displayName"])) {
- this.messages.clearAddError(this.props.t("general:someFieldsAreIncorrectError"));
- } else {
- io.getSocket(socket => {
- socket.emit("playlists.updateDisplayName", this.props.playlistId, this.input.displayName.getValue(), res => {
- if (res.status === "success") {
- this.messages.clearAddSuccess("Successfully changed name.");
- } else {
- this.messages.addError(res.message);
- }
- });
- });
- }
- };
- deletePlaylist = () => {
- this.messages.clearErrorSuccess();
- io.getSocket(socket => {
- socket.emit("playlists.remove", this.props.playlistId, res => {
- if (res.status === "success") {
- this.messages.clearAddSuccess("Successfully deleted playlist.");
- this.props.dispatch(closeOverlay2());
- } else {
- this.messages.addError(res.message);
- }
- });
- });
- };
- deleteSong = (songId) => {
- this.messages.clearErrorSuccess();
- io.getSocket(socket => {
- socket.emit('playlists.removeSongFromPlaylist', songId, this.props.playlistId, res => {
- if (res.status === "success") {
- this.messages.clearAddSuccess("Successfully removed song.");
- } else {
- this.messages.addError(res.message);
- }
- });
- });
- };
- promoteSong = (songId) => {
- this.messages.clearErrorSuccess();
- io.getSocket(socket => {
- socket.emit('playlists.moveSongToTop', this.props.playlistId, songId, res => {
- if (res.status === "success") {
- this.messages.clearAddSuccess("Successfully moved song up.");
- } else {
- this.messages.addError(res.message);
- }
- });
- });
- };
- demoteSong = (songId) => {
- this.messages.clearErrorSuccess();
- io.getSocket(socket => {
- socket.emit('playlists.moveSongToBottom', this.props.playlistId, songId, res => {
- if (res.status === "success") {
- this.messages.clearAddSuccess("Successfully moved song up.");
- } else {
- this.messages.addError(res.message);
- }
- });
- });
- };
- close = () => {
- this.props.dispatch(closeOverlay2());
- };
- render() {
- return (
- <div className="overlay">
- <button onClick={ this.close }>Back</button>
- <h1>Edit Playlist</h1>
- <CustomInput type="playlistDescription" name="displayName" label="Display name" placeholder="Display name" onRef={ ref => (this.input.displayName = ref) } />
- <button onClick={ this.changeDisplayName }>Change displayname</button>
- {
- (this.state.gotPlaylist)
- ? (
- <ul>
- {
- this.state.playlist.songs.map((song) => {
- return (
- <li key={ song.songId }>
- <p>{ song.title }</p>
- <span onClick={ () => { this.deleteSong(song.songId) }}>DELETE</span><br/>
- <span onClick={ () => { this.promoteSong(song.songId) }}>UP</span><br/>
- <span onClick={ () => { this.demoteSong(song.songId) }}>DOWN</span>
- </li>
- );
- })
- }
- </ul>
- )
- : null
- }
- <button onClick={ this.addSongToPlaylist }>Add song to playlist</button>
- <CustomErrors onRef={ ref => (this.messages = ref) } />
- <button onClick={ this.deletePlaylist }>Delete this playlist</button>
- </div>
- );
- }
- }
|