import './App.css'; import * as action from './actions' import * as reducer from './reducers' import * as Logcomp from './components/Login' import * as Sidebar from './components/Sidebar' import * as Page from './components/Page' import thunk from 'redux-thunk'; import { useEffect, useState } from 'react'; import { createStore, combineReducers, applyMiddleware } from 'redux'; import { Provider, connect } from 'react-redux'; import { Link, Route, Router, Switch } from 'react-router-dom'; import createHistory from 'history/createBrowserHistory' export function jwtDecode(token) { try { let decoded = token.split('.') decoded = decoded[1] decoded = atob(decoded) decoded = JSON.parse(decoded) return decoded } catch (e) { return; } } export const getGQL = url => (query, variables = {}) => fetch(url, { method: 'POST', headers: { "Content-Type": "application/json", ...(localStorage.authToken ? { "Authorization": "Bearer " + localStorage.authToken } : {}) }, body: JSON.stringify({ query, variables }) }) .then(res => res.json()) .then(data => { if (data.errors && !data.data) throw new Error(JSON.stringify(data.errors)) return data.data[Object.keys(data.data)[0]] }) export const history = createHistory() const backendURL = "http://player.asmer.fs.a-level.com.ua" export const gql = getGQL(backendURL + '/graphql') const store = createStore( combineReducers( { promise: reducer.promiseReducer, auth: reducer.authReducer, //local: localStoreReducer(promiseReducer, 'locale') } ), applyMiddleware(thunk) ) store.subscribe(() => console.log(store.getState())) //works only once on start of page if(store.getState().auth?.token) { history.push('/player') store.dispatch(action.actionGetUserData()) store.dispatch(action.actionGetUserPlaylists()) } else { history.push('/login') } const ProfileWindow = ({user, onLogout}) => { let [userInfo, setUserInfo] = useState(user.payload) useEffect(()=> { setUserInfo(user.payload) },[user, userInfo]) return(
{ onLogout(); history.push('/login') }} >log-out[X]

{userInfo?.login || 'user'}

avatar change avavtar
My tracks
) } const ProfileWindowConnect = connect(state => ({ user: state.promise.userData || {} }),{ onLogout: action.actionAuthLogout })(ProfileWindow) const Player = () => <>
Player
<>

Welcome to online Player!

  • To create playlist: click "NEW PLAYLIST"
  • To upload track: drag and drop it to playlist area
  • To see list of all your tracks: click "My tracks"
// const PlayerConnect = connect( // state => ({ user: state.promise.userData || {} }),{ onLogout: action.actionAuthLogout} // )(Player) function App() { return (
); } export default App;