init makeContribution

This commit is contained in:
Danil Kovtonyuk 2020-01-29 23:48:42 +10:00
parent 56d1231a07
commit 44dbc3abbe
1 changed files with 63 additions and 1 deletions

View File

@ -2,8 +2,70 @@
<div class="has-text-centered">
<div class="title is-size-1">Hello, Anonymous</div>
<div class="buttons is-centered">
<b-button type="is-primary" outlined>Make the contribution</b-button>
<b-button :disable="isContributeBtnDisabled" type="is-primary" outlined
>Make the contribution</b-button
>
<b-button type="is-primary" outlined>Sign In</b-button>
</div>
</div>
</template>
<script>
/* eslint-disable no-console */
import init, { contribute } from '@/lib/phase2/phase2.js'
const initPromise = init()
const timeout = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
export default {
data() {
return {
isContributeBtnDisabled: false,
status: ''
}
},
methods: {
async makeContribution({ retry = 0 } = {}) {
try {
this.isContributeBtnDisabled = true
await initPromise
this.status = 'Downloading last contribution'
let data = await fetch('challenge')
data = new Uint8Array(await data.arrayBuffer())
this.status = 'Generating random contribution'
await timeout(100) // allow UI to update before freezing in wasm
console.log('Source params', data)
const result = contribute(data)
console.log('Updated params', result)
this.status = 'Uploading and verifying your contribution'
const formData = new FormData()
formData.append('response', new Blob([result], { type: 'application/octet-stream' }))
formData.append('name', 'William') // TODO put real name here
formData.append('company', 'Microsoft')
const resp = await fetch('response', {
method: 'POST',
body: formData
})
if (resp.ok) {
this.status = 'Your contribution is verified and recorded. THX BYE.'
} else if (resp.status === 422) {
if (retry < 3) {
console.log(`Looks like someone else uploaded contribution ahead of us, retrying`)
await this.makeContribution({ retry: retry++ })
} else {
this.status = `Failed to upload your contribution after ${retry} attempts`
}
} else {
this.status = 'Error uploading your contribution'
}
} finally {
this.isContributeBtnDisabled = false
}
}
}
}
</script>