streamlined frontend playlist netcode, bumped appengine instance grade
This commit is contained in:
parent
d6c66efdab
commit
9f330edaba
2
app.yaml
2
app.yaml
@ -1,6 +1,8 @@
|
|||||||
runtime: python37
|
runtime: python37
|
||||||
service: spotify
|
service: spotify
|
||||||
|
|
||||||
|
instance_class: F2
|
||||||
|
|
||||||
handlers:
|
handlers:
|
||||||
- url: /static
|
- url: /static
|
||||||
static_dir: build
|
static_dir: build
|
||||||
|
@ -309,6 +309,8 @@ def run_playlist_task():
|
|||||||
|
|
||||||
return jsonify({'message': 'executed playlist', 'status': 'success'}), 200
|
return jsonify({'message': 'executed playlist', 'status': 'success'}), 200
|
||||||
|
|
||||||
|
logger.critical('no payload provided')
|
||||||
|
|
||||||
|
|
||||||
@blueprint.route('/playlist/run/user', methods=['GET'])
|
@blueprint.route('/playlist/run/user', methods=['GET'])
|
||||||
@login_or_basic_auth
|
@login_or_basic_auth
|
||||||
|
938
package-lock.json
generated
938
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -28,16 +28,16 @@
|
|||||||
"react-router-dom": "^5.2.0"
|
"react-router-dom": "^5.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.10.1",
|
"@babel/cli": "^7.10.3",
|
||||||
"@babel/core": "^7.10.2",
|
"@babel/core": "^7.10.3",
|
||||||
"@babel/preset-env": "^7.10.2",
|
"@babel/preset-env": "^7.10.3",
|
||||||
"@babel/preset-react": "^7.10.1",
|
"@babel/preset-react": "^7.10.1",
|
||||||
"babel-loader": "^8.1.0",
|
"babel-loader": "^8.1.0",
|
||||||
"clean-webpack-plugin": "^3.0.0",
|
"clean-webpack-plugin": "^3.0.0",
|
||||||
"css-loader": "^3.6.0",
|
"css-loader": "^3.6.0",
|
||||||
"style-loader": "^0.23.1",
|
"style-loader": "^0.23.1",
|
||||||
"webpack": "^4.43.0",
|
"webpack": "^4.43.0",
|
||||||
"webpack-cli": "^3.3.11",
|
"webpack-cli": "^3.3.12",
|
||||||
"webpack-merge": "^4.2.2"
|
"webpack-merge": "^4.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -76,21 +76,12 @@ export class Edit extends Component{
|
|||||||
this.handleAddPart = this.handleAddPart.bind(this);
|
this.handleAddPart = this.handleAddPart.bind(this);
|
||||||
this.handleAddReference = this.handleAddReference.bind(this);
|
this.handleAddReference = this.handleAddReference.bind(this);
|
||||||
this.handleInputChange = this.handleInputChange.bind(this);
|
this.handleInputChange = this.handleInputChange.bind(this);
|
||||||
|
this.handleCheckChange = this.handleCheckChange.bind(this);
|
||||||
this.handleRemovePart = this.handleRemovePart.bind(this);
|
this.handleRemovePart = this.handleRemovePart.bind(this);
|
||||||
this.handleRemoveReference = this.handleRemoveReference.bind(this);
|
this.handleRemoveReference = this.handleRemoveReference.bind(this);
|
||||||
|
|
||||||
this.handleRun = this.handleRun.bind(this);
|
this.handleRun = this.handleRun.bind(this);
|
||||||
|
this.makeNetworkUpdate = this.makeNetworkUpdate.bind(this);
|
||||||
this.handleShuffleChange = this.handleShuffleChange.bind(this);
|
|
||||||
|
|
||||||
this.handleIncludeLibraryTracksChange = this.handleIncludeLibraryTracksChange.bind(this);
|
|
||||||
|
|
||||||
this.handleIncludeRecommendationsChange = this.handleIncludeRecommendationsChange.bind(this);
|
|
||||||
this.handleThisMonthChange = this.handleThisMonthChange.bind(this);
|
|
||||||
this.handleLastMonthChange = this.handleLastMonthChange.bind(this);
|
|
||||||
|
|
||||||
this.handleChartLimitChange = this.handleChartLimitChange.bind(this);
|
|
||||||
this.handleChartRangeChange = this.handleChartRangeChange.bind(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount(){
|
componentDidMount(){
|
||||||
@ -143,137 +134,59 @@ export class Edit extends Component{
|
|||||||
[event.target.name]: event.target.value
|
[event.target.name]: event.target.value
|
||||||
});
|
});
|
||||||
|
|
||||||
if(event.target.name == 'day_boundary'){
|
switch(event.target.name){
|
||||||
this.handleDayBoundaryChange(event.target.value);
|
case 'day_boundary':
|
||||||
}
|
if(event.target.value == ''){
|
||||||
if(event.target.name == 'recommendation_sample'){
|
event.target.value = 0;
|
||||||
this.handleRecommendationsSampleChange(event.target.value);
|
this.setState({
|
||||||
}
|
day_boundary: 0
|
||||||
if(event.target.name == 'type'){
|
});
|
||||||
this.handleTypeChange(event.target.value);
|
}
|
||||||
}
|
this.makeNetworkUpdate({day_boundary: parseInt(event.target.value)});
|
||||||
if(event.target.name == 'chart_range'){
|
break;
|
||||||
this.handleChartRangeChange(event.target.value);
|
case 'recommendation_sample':
|
||||||
}
|
if(event.target.value == ''){
|
||||||
if(event.target.name == 'chart_limit'){
|
event.target.value = 0;
|
||||||
this.handleChartLimitChange(event.target.value);
|
this.setState({
|
||||||
|
recommendation_sample: 0
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.makeNetworkUpdate({recommendation_sample: parseInt(event.target.value)});
|
||||||
|
break;
|
||||||
|
case 'chart_limit':
|
||||||
|
this.makeNetworkUpdate({chart_limit: parseInt(event.target.value)});
|
||||||
|
break;
|
||||||
|
case 'newPlaylistName':
|
||||||
|
case 'newReferenceName':
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.makeNetworkUpdate({[event.target.name]: event.target.value});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
handleDayBoundaryChange(boundary) {
|
handleCheckChange(event){
|
||||||
if(boundary == ''){
|
|
||||||
boundary = 0;
|
|
||||||
this.setState({
|
|
||||||
day_boundary: 0
|
|
||||||
});
|
|
||||||
}
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
day_boundary: parseInt(boundary)
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Boundary Value (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleRecommendationsSampleChange(sample){
|
|
||||||
if(sample == ''){
|
|
||||||
sample = 0;
|
|
||||||
this.setState({
|
|
||||||
recommendation_sample: 0
|
|
||||||
});
|
|
||||||
}
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
recommendation_sample: parseInt(sample)
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Rec. Sample Value (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleTypeChange(sample){
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
type: sample
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Type (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleShuffleChange(event) {
|
|
||||||
this.setState({
|
this.setState({
|
||||||
shuffle: event.target.checked
|
[event.target.name]: event.target.checked
|
||||||
});
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
shuffle: event.target.checked
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Shuffle Value (${error.response.status})`);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
switch(event.target.name){
|
||||||
|
default:
|
||||||
|
this.makeNetworkUpdate({[event.target.name]: event.target.checked});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
handleThisMonthChange(event) {
|
makeNetworkUpdate(changes){
|
||||||
this.setState({
|
let payload = {
|
||||||
add_this_month: event.target.checked
|
name: this.state.name
|
||||||
});
|
}
|
||||||
axios.post('/api/playlist', {
|
for(var key in changes){
|
||||||
name: this.state.name,
|
if(changes.hasOwnProperty(key)){
|
||||||
add_this_month: event.target.checked
|
payload[key] = changes[key];
|
||||||
}).catch((error) => {
|
}
|
||||||
showMessage(`Error Updating Add This Month (${error.response.status})`);
|
}
|
||||||
});
|
axios.post('/api/playlist', payload).catch((error) => {
|
||||||
}
|
showMessage(`Error updating ${Object.keys(changes).join(", ")} (${error.response.status})`);
|
||||||
|
|
||||||
handleLastMonthChange(event) {
|
|
||||||
this.setState({
|
|
||||||
add_last_month: event.target.checked
|
|
||||||
});
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
add_last_month: event.target.checked
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Add Last Month (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleIncludeRecommendationsChange(event) {
|
|
||||||
this.setState({
|
|
||||||
include_recommendations: event.target.checked
|
|
||||||
});
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
include_recommendations: event.target.checked
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Rec. Value (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleIncludeLibraryTracksChange(event) {
|
|
||||||
this.setState({
|
|
||||||
include_library_tracks: event.target.checked
|
|
||||||
});
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
include_library_tracks: event.target.checked
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Library Tracks (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleChartRangeChange(value) {
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
chart_range: value
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Chart Range (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleChartLimitChange(value) {
|
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
|
||||||
chart_limit: parseInt(value)
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Updating Limit (${error.response.status})`);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -297,12 +210,8 @@ export class Edit extends Component{
|
|||||||
parts: parts,
|
parts: parts,
|
||||||
newPlaylistName: ''
|
newPlaylistName: ''
|
||||||
});
|
});
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
this.makeNetworkUpdate({parts: parts});
|
||||||
parts: parts
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Adding Part (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}else{
|
}else{
|
||||||
showMessage('Playlist Already Added');
|
showMessage('Playlist Already Added');
|
||||||
}
|
}
|
||||||
@ -334,12 +243,8 @@ export class Edit extends Component{
|
|||||||
playlist_references: playlist_references,
|
playlist_references: playlist_references,
|
||||||
newReferenceName: filteredPlaylists.length > 0 ? filteredPlaylists[0].name : ''
|
newReferenceName: filteredPlaylists.length > 0 ? filteredPlaylists[0].name : ''
|
||||||
});
|
});
|
||||||
axios.post('/api/playlist', {
|
|
||||||
name: this.state.name,
|
this.makeNetworkUpdate({playlist_references: playlist_references});
|
||||||
playlist_references: playlist_references
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Adding Reference (${error.response.status})`);
|
|
||||||
});
|
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
showMessage('Playlist Already Added');
|
showMessage('Playlist Already Added');
|
||||||
@ -361,12 +266,7 @@ export class Edit extends Component{
|
|||||||
parts = -1;
|
parts = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
axios.post('/api/playlist', {
|
this.makeNetworkUpdate({parts: parts});
|
||||||
name: this.state.name,
|
|
||||||
parts: parts
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Removing Part (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handleRemoveReference(id, event){
|
handleRemoveReference(id, event){
|
||||||
@ -380,12 +280,7 @@ export class Edit extends Component{
|
|||||||
playlist_references = -1;
|
playlist_references = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
axios.post('/api/playlist', {
|
this.makeNetworkUpdate({playlist_references: playlist_references});
|
||||||
name: this.state.name,
|
|
||||||
playlist_references: playlist_references
|
|
||||||
}).catch((error) => {
|
|
||||||
showMessage(`Error Removing Reference (${error.response.status})`);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handleRun(event){
|
handleRun(event){
|
||||||
@ -461,19 +356,19 @@ export class Edit extends Component{
|
|||||||
<Grid item xs={12}>
|
<Grid item xs={12}>
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
control={
|
control={
|
||||||
<Checkbox color="primary" checked={this.state.shuffle} onChange={this.handleShuffleChange} />
|
<Checkbox color="primary" name="shuffle" checked={this.state.shuffle} onChange={this.handleCheckChange} />
|
||||||
}
|
}
|
||||||
labelPlacement="bottom"
|
labelPlacement="bottom"
|
||||||
label="Shuffle"/>
|
label="Shuffle"/>
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
control={
|
control={
|
||||||
<Checkbox color="primary" checked={this.state.include_recommendations} onChange={this.handleIncludeRecommendationsChange} />
|
<Checkbox color="primary" checked={this.state.include_recommendations} name="include_recommendations" onChange={this.handleCheckChange} />
|
||||||
}
|
}
|
||||||
labelPlacement="bottom"
|
labelPlacement="bottom"
|
||||||
label="Recommendations"/>
|
label="Recommendations"/>
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
control={
|
control={
|
||||||
<Checkbox color="primary" checked={this.state.include_library_tracks} onChange={this.handleIncludeLibraryTracksChange} />
|
<Checkbox color="primary" checked={this.state.include_library_tracks} name="include_library_tracks" onChange={this.handleCheckChange} />
|
||||||
}
|
}
|
||||||
labelPlacement="bottom"
|
labelPlacement="bottom"
|
||||||
label="Library Tracks"/>
|
label="Library Tracks"/>
|
||||||
@ -533,14 +428,14 @@ export class Edit extends Component{
|
|||||||
<Grid item xs={12}>
|
<Grid item xs={12}>
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
control={
|
control={
|
||||||
<Checkbox color="primary" checked={this.state.add_this_month} onChange={this.handleThisMonthChange} />
|
<Checkbox color="primary" checked={this.state.add_this_month} name="add_this_month" onChange={this.handleCheckChange} />
|
||||||
}
|
}
|
||||||
label="This Month"
|
label="This Month"
|
||||||
labelPlacement="bottom"
|
labelPlacement="bottom"
|
||||||
/>
|
/>
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
control={
|
control={
|
||||||
<Checkbox color="primary" checked={this.state.add_last_month} onChange={this.handleLastMonthChange} />
|
<Checkbox color="primary" checked={this.state.add_last_month} name="add_last_month" onChange={this.handleCheckChange} />
|
||||||
}
|
}
|
||||||
label="Last Month"
|
label="Last Month"
|
||||||
labelPlacement="bottom"
|
labelPlacement="bottom"
|
||||||
|
Loading…
Reference in New Issue
Block a user