mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-15 04:38:00 +00:00
Cleanup UI
This commit is contained in:
@@ -9,16 +9,16 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<v-dialog
|
<v-dialog
|
||||||
v-model="addUserDialog"
|
v-model="registerUserDialog"
|
||||||
max-width="600px"
|
max-width="600px"
|
||||||
>
|
>
|
||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn
|
<v-btn
|
||||||
v-bind="attrs"
|
v-bind="attrs"
|
||||||
v-on="on"
|
v-on="on"
|
||||||
@click="addUserDialog = true"
|
@click="registerUserDialog = true"
|
||||||
>
|
>
|
||||||
Add User
|
Register User
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</template>
|
</template>
|
||||||
<v-form
|
<v-form
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
>
|
>
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
<span class="text-h5">Add User</span>
|
<span class="text-h5">Register User</span>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-container>
|
<v-container>
|
||||||
@@ -67,14 +67,14 @@
|
|||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-btn
|
<v-btn
|
||||||
text
|
text
|
||||||
@click="addUserDialog = false"
|
@click="registerUserDialog = false"
|
||||||
>
|
>
|
||||||
Close
|
Close
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn
|
<v-btn
|
||||||
text
|
text
|
||||||
:disabled="!isUserValid"
|
:disabled="!isUserValid"
|
||||||
@click="addUser"
|
@click="registerUser"
|
||||||
>
|
>
|
||||||
Register
|
Register
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
<h2 class="headline font-weight-bold mb-10">
|
<h2 class="display-1 font-weight-bold mb-10">
|
||||||
Playback
|
Playback
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@@ -48,36 +48,37 @@
|
|||||||
return-object
|
return-object
|
||||||
label="Profiles"
|
label="Profiles"
|
||||||
class="mx-3 mb-5"
|
class="mx-3 mb-5"
|
||||||
|
:disabled="playDisabled"
|
||||||
@change="loadProfile"
|
@change="loadProfile"
|
||||||
/>
|
/>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<v-btn
|
<v-btn
|
||||||
class="mx-3"
|
class="mx-3 my-3"
|
||||||
:disabled="profileItems.length < 2"
|
:disabled="profileItems.length < 2 || playDisabled"
|
||||||
@click="deleteProfile"
|
@click="deleteProfile"
|
||||||
>
|
>
|
||||||
Delete Profile
|
Delete Profile
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
|
||||||
<v-btn
|
<v-btn
|
||||||
class="mx-3"
|
class="mx-3 my-3"
|
||||||
@click="updateProfile"
|
@click="updateProfile"
|
||||||
>
|
>
|
||||||
Save Profile
|
Save Profile
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
|
||||||
<v-snackbar
|
<v-snackbar
|
||||||
v-model="updateProfileSnackbar"
|
v-model="infoSnackbar"
|
||||||
timeout="3000"
|
timeout="3000"
|
||||||
>
|
>
|
||||||
{{ updateProfileText }}
|
{{ infoSnackbarText }}
|
||||||
|
|
||||||
<template v-slot:action="{ attrs }">
|
<template v-slot:action="{ attrs }">
|
||||||
<v-btn
|
<v-btn
|
||||||
text
|
text
|
||||||
v-bind="attrs"
|
v-bind="attrs"
|
||||||
@click="updateProfileSnackbar = false"
|
@click="infoSnackbar = false"
|
||||||
>
|
>
|
||||||
Close
|
Close
|
||||||
</v-btn>
|
</v-btn>
|
||||||
@@ -91,7 +92,8 @@
|
|||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn
|
<v-btn
|
||||||
v-bind="attrs"
|
v-bind="attrs"
|
||||||
class="mx-3"
|
class="mx-3 my-3"
|
||||||
|
:disabled="playDisabled"
|
||||||
v-on="on"
|
v-on="on"
|
||||||
@click="profileName = ''"
|
@click="profileName = ''"
|
||||||
>
|
>
|
||||||
@@ -198,7 +200,7 @@
|
|||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
<h2 class="headline font-weight-bold mb-5">
|
<h2 class="display-1 font-weight-bold mb-5">
|
||||||
Noise Settings
|
Noise Settings
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@@ -384,7 +386,7 @@
|
|||||||
v-if="canUpload"
|
v-if="canUpload"
|
||||||
cols="12"
|
cols="12"
|
||||||
>
|
>
|
||||||
<h2 class="headline font-weight-bold mb-5">
|
<h2 class="display-1 font-weight-bold mb-5">
|
||||||
Samples
|
Samples
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@@ -433,7 +435,8 @@
|
|||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn
|
<v-btn
|
||||||
v-bind="attrs"
|
v-bind="attrs"
|
||||||
class="mx-3 mb-5"
|
class="mx-3 my-3 mb-5"
|
||||||
|
:disabled="playDisabled"
|
||||||
v-on="on"
|
v-on="on"
|
||||||
>
|
>
|
||||||
Add Sample
|
Add Sample
|
||||||
@@ -492,7 +495,7 @@
|
|||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn
|
<v-btn
|
||||||
v-bind="attrs"
|
v-bind="attrs"
|
||||||
class="mx-3 mb-5"
|
class="mx-3 my-3 mb-5"
|
||||||
v-on="on"
|
v-on="on"
|
||||||
>
|
>
|
||||||
Upload Sample
|
Upload Sample
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ export default {
|
|||||||
users: [],
|
users: [],
|
||||||
snackbar: false,
|
snackbar: false,
|
||||||
updateText: '',
|
updateText: '',
|
||||||
addUserDialog: false,
|
registerUserDialog: false,
|
||||||
isUserValid: false,
|
isUserValid: false,
|
||||||
name: '',
|
name: '',
|
||||||
username: '',
|
username: '',
|
||||||
@@ -83,7 +83,7 @@ export default {
|
|||||||
console.error(error.response)
|
console.error(error.response)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
addUser () {
|
registerUser () {
|
||||||
this.$http.post('/users', {
|
this.$http.post('/users', {
|
||||||
name: this.name,
|
name: this.name,
|
||||||
username: this.username,
|
username: this.username,
|
||||||
@@ -94,7 +94,7 @@ export default {
|
|||||||
})
|
})
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (response.status === 200) {
|
if (response.status === 200) {
|
||||||
this.addUserDialog = false
|
this.registerUserDialog = false
|
||||||
this.updateText = 'User Registered'
|
this.updateText = 'User Registered'
|
||||||
this.snackbar = true
|
this.snackbar = true
|
||||||
this.getUsers()
|
this.getUsers()
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ export default {
|
|||||||
profileDialog: false,
|
profileDialog: false,
|
||||||
profileName: '',
|
profileName: '',
|
||||||
isProfileValid: false,
|
isProfileValid: false,
|
||||||
updateProfileSnackbar: false,
|
infoSnackbar: false,
|
||||||
updateProfileText: '',
|
infoSnackbarText: '',
|
||||||
playDisabled: false,
|
playDisabled: false,
|
||||||
isTimerEnabled: false,
|
isTimerEnabled: false,
|
||||||
hours: 0,
|
hours: 0,
|
||||||
@@ -85,7 +85,6 @@ export default {
|
|||||||
this.playDisabled = true
|
this.playDisabled = true
|
||||||
Transport.cancel()
|
Transport.cancel()
|
||||||
|
|
||||||
// TODO: This conditional logic can be improved
|
|
||||||
if (!this.isFilterEnabled && !this.isTremoloEnabled) {
|
if (!this.isFilterEnabled && !this.isTremoloEnabled) {
|
||||||
this.noise = new Noise({ volume: this.volume, type: this.noiseColor }).toDestination()
|
this.noise = new Noise({ volume: this.volume, type: this.noiseColor }).toDestination()
|
||||||
} else if (!this.isFilterEnabled && this.isTremoloEnabled) {
|
} else if (!this.isFilterEnabled && this.isTremoloEnabled) {
|
||||||
@@ -94,6 +93,12 @@ export default {
|
|||||||
} else if (this.isFilterEnabled && !this.isTremoloEnabled) {
|
} else if (this.isFilterEnabled && !this.isTremoloEnabled) {
|
||||||
this.filter = new Filter(this.filterCutoff, this.filterType).toDestination()
|
this.filter = new Filter(this.filterCutoff, this.filterType).toDestination()
|
||||||
this.noise = new Noise({ volume: this.volume, type: this.noiseColor }).connect(this.filter)
|
this.noise = new Noise({ volume: this.volume, type: this.noiseColor }).connect(this.filter)
|
||||||
|
} else if (this.isFilterEnabled && this.isLFOFilterCutoffEnabled && this.isTremoloEnabled) {
|
||||||
|
this.tremolo = new Tremolo({ frequency: this.tremoloFrequency, depth: this.tremoloDepth }).toDestination().start()
|
||||||
|
this.filter = new Filter(this.filterCutoff, this.filterType).connect(this.tremolo)
|
||||||
|
this.noise.connect(this.filter)
|
||||||
|
this.lfo = new LFO({ frequency: this.lfoFilterCutoffFrequency, min: this.lfoFilterCutoffRange[0], max: this.lfoFilterCutoffRange[1] })
|
||||||
|
this.lfo.connect(this.filter.frequency).start()
|
||||||
} else {
|
} else {
|
||||||
this.tremolo = new Tremolo({ frequency: this.tremoloFrequency, depth: this.tremoloDepth }).toDestination().start()
|
this.tremolo = new Tremolo({ frequency: this.tremoloFrequency, depth: this.tremoloDepth }).toDestination().start()
|
||||||
this.filter = new Filter(this.filterCutoff, this.filterType).connect(this.tremolo)
|
this.filter = new Filter(this.filterCutoff, this.filterType).connect(this.tremolo)
|
||||||
@@ -167,7 +172,6 @@ export default {
|
|||||||
updateAudioChain () {
|
updateAudioChain () {
|
||||||
this.noise.disconnect()
|
this.noise.disconnect()
|
||||||
|
|
||||||
// TODO: This conditional logic can be improved
|
|
||||||
if (!this.isFilterEnabled && !this.isTremoloEnabled) {
|
if (!this.isFilterEnabled && !this.isTremoloEnabled) {
|
||||||
this.noise.toDestination()
|
this.noise.toDestination()
|
||||||
} else if (!this.isFilterEnabled && this.isTremoloEnabled) {
|
} else if (!this.isFilterEnabled && this.isTremoloEnabled) {
|
||||||
@@ -183,6 +187,12 @@ export default {
|
|||||||
this.noise.connect(this.filter)
|
this.noise.connect(this.filter)
|
||||||
this.lfo = new LFO({ frequency: this.lfoFilterCutoffFrequency, min: this.lfoFilterCutoffRange[0], max: this.lfoFilterCutoffRange[1] })
|
this.lfo = new LFO({ frequency: this.lfoFilterCutoffFrequency, min: this.lfoFilterCutoffRange[0], max: this.lfoFilterCutoffRange[1] })
|
||||||
this.lfo.connect(this.filter.frequency).start()
|
this.lfo.connect(this.filter.frequency).start()
|
||||||
|
} else if (this.isFilterEnabled && this.isLFOFilterCutoffEnabled && this.isTremoloEnabled) {
|
||||||
|
this.tremolo = new Tremolo({ frequency: this.tremoloFrequency, depth: this.tremoloDepth }).toDestination().start()
|
||||||
|
this.filter = new Filter(this.filterCutoff, this.filterType).connect(this.tremolo)
|
||||||
|
this.noise.connect(this.filter)
|
||||||
|
this.lfo = new LFO({ frequency: this.lfoFilterCutoffFrequency, min: this.lfoFilterCutoffRange[0], max: this.lfoFilterCutoffRange[1] })
|
||||||
|
this.lfo.connect(this.filter.frequency).start()
|
||||||
} else {
|
} else {
|
||||||
this.tremolo = new Tremolo({ frequency: this.tremoloFrequency, depth: this.tremoloDepth }).toDestination().start()
|
this.tremolo = new Tremolo({ frequency: this.tremoloFrequency, depth: this.tremoloDepth }).toDestination().start()
|
||||||
this.filter = new Filter(this.filterCutoff, this.filterType).connect(this.tremolo)
|
this.filter = new Filter(this.filterCutoff, this.filterType).connect(this.tremolo)
|
||||||
@@ -197,7 +207,8 @@ export default {
|
|||||||
this.addDefaultProfile()
|
this.addDefaultProfile()
|
||||||
} else {
|
} else {
|
||||||
this.profileItems = response.data.profiles
|
this.profileItems = response.data.profiles
|
||||||
this.selectedProfile = this.profileItems[profileId]
|
this.selectedProfile = this.profileItems.find(p => p.id === profileId + 1)
|
||||||
|
this.loadProfile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -239,7 +250,6 @@ export default {
|
|||||||
}).then(response => {
|
}).then(response => {
|
||||||
if (response.status === 200) {
|
if (response.status === 200) {
|
||||||
this.profileDialog = false
|
this.profileDialog = false
|
||||||
console.log('repsonse.data.id: ', response.data.id)
|
|
||||||
this.populateProfileItems(response.data.id - 1)
|
this.populateProfileItems(response.data.id - 1)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -266,15 +276,15 @@ export default {
|
|||||||
samples: this.loadedSamples
|
samples: this.loadedSamples
|
||||||
}).then(response => {
|
}).then(response => {
|
||||||
if (response.status === 200) {
|
if (response.status === 200) {
|
||||||
this.updateProfileText = 'Profile saved'
|
this.infoSnackbarText = 'Profile Saved'
|
||||||
|
this.infoSnackbar = true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(error.response)
|
console.error(error.response)
|
||||||
this.updateProfileText = 'Error saving profile'
|
this.errorSnackbarText = 'Error Saving Profile'
|
||||||
|
this.errorSnackbar = true
|
||||||
})
|
})
|
||||||
|
|
||||||
this.updateProfileSnackbar = true
|
|
||||||
},
|
},
|
||||||
loadProfile () {
|
loadProfile () {
|
||||||
this.$http.get('/profiles/'.concat(this.selectedProfile.id))
|
this.$http.get('/profiles/'.concat(this.selectedProfile.id))
|
||||||
|
|||||||
Reference in New Issue
Block a user