dank swag pop and lolz

This commit is contained in:
E
2021-03-07 21:58:36 -07:00
parent 91e26fe9fc
commit 9fe790ed9c
2 changed files with 47 additions and 27 deletions
+5 -3
View File
@@ -23,16 +23,17 @@ export const Session = (props: Props) => {
const [active, setActive] = useState(false)
const handleStartSession = async () => {
await startSession(clientId)
message.loading('Photo sequence starting! Stand by...')
await startSession(clientId)
setActive(true)
}
const handleRestartSession = async () => {
setActive(false)
message.loading('Removing all photos...')
message.loading(
'Deleting photos & restarting capture sequence! Stand by...',
)
await restartSession(clientId)
message.loading('Restarting capture sequence! Stand by...')
setActive(true)
}
@@ -42,6 +43,7 @@ export const Session = (props: Props) => {
const handleNuke = async () => {
await killSession(clientId)
message.success('Photos Deleted! Going back to dashboard')
history.push('/')
}