trusted-setup-server/pages/make-contribution.vue

210 lines
6.2 KiB
Vue
Raw Normal View History

<template>
<div class="ceremony">
<h1 class="title is-size-1 is-size-2-mobile is-spaced">
Hello, <span>@{{ userHandle }}</span>
</h1>
2020-02-05 11:53:45 +01:00
<h2 class="subtitle">
What way do you want to contribute to the Tornado.cash Trusted Setup Ceremony?
</h2>
<fieldset :disabled="status.type === 'is-success'">
<div class="columns is-centered">
<div class="column is-one-third">
<button
:class="{ 'is-hovered': contributionType === 'anonymous' }"
@click="onAnonymousHandler"
class="box box-anonymous"
>
<div class="title is-5">Anonymously</div>
<Cloak />
</button>
</div>
<div class="column is-one-third">
<div :class="{ 'is-hovered': isLoggedIn }" class="box">
<div class="title is-5">Using a social account</div>
<Form />
</div>
</div>
</div>
</fieldset>
2020-02-06 12:58:35 +01:00
<div v-show="status.type === 'is-danger' || status.type === 'is-success'" class="status">
<div :class="status.type" class="status-message">{{ status.msg }}</div>
</div>
<div class="buttons is-centered">
<b-button
2020-02-05 11:53:45 +01:00
v-if="!isContributeBtnSnown"
@click="makeContribution"
2020-02-05 11:53:45 +01:00
:disabled="isContributeBtnDisabled"
type="is-primary"
outlined
>
Make the contribution
</b-button>
<b-button
2020-02-05 11:53:45 +01:00
v-if="status.type === 'is-success'"
@click="makeTweet"
type="is-primary"
tag="a"
target="_blank"
outlined
>
Tweet about your contribution
</b-button>
</div>
2020-02-05 11:53:45 +01:00
<p class="p">
If you dont trust binaries, we encorage you to follow this <a href="">instruction</a> to
contribute by compiling from source code. It is very easy!
</p>
2020-02-06 12:58:35 +01:00
<b-loading :active.sync="loading">
<div class="loading-container">
<div class="loading-tornado"></div>
<div :class="status.type" class="loading-message">{{ status.msg }}...</div>
</div>
</b-loading>
</div>
</template>
<script>
/* eslint-disable no-console */
import { mapGetters, mapActions } from 'vuex'
import Cloak from '@/components/Cloak'
import Form from '@/components/Form'
const timeout = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
export default {
components: {
Cloak,
Form
},
data() {
return {
2020-02-05 11:53:45 +01:00
isContributeBtnSnown: false,
status: {
type: '',
msg: ''
},
2020-02-06 12:58:35 +01:00
loading: false
}
},
computed: {
...mapGetters('user', ['isLoggedIn', 'hasErrorName']),
userName: {
get() {
return this.$store.state.user.name
},
set(value) {
this.$store.commit('user/SET_NAME', value)
}
},
userHandle: {
get() {
return this.$store.state.user.handle
},
set(value) {
this.$store.commit('user/SET_HANDLE', value)
}
},
userCompany: {
get() {
return this.$store.state.user.company
},
set(value) {
this.$store.commit('user/SET_COMPANY', value)
}
},
contributionType: {
get() {
return this.$store.state.user.contributionType
},
set(value) {
this.$store.commit('user/SET_CONTRIBUTION_TYPE', value)
}
2020-02-05 11:53:45 +01:00
},
isContributeBtnDisabled() {
return (
!this.contributionType ||
(!this.isLoggedIn && this.contributionType !== 'anonymous') ||
this.hasErrorName.invalid
)
}
},
async mounted() {
2020-02-07 10:21:53 +01:00
this.loading = true
2020-02-07 16:21:34 +01:00
this.status.msg = 'Loading'
2020-02-07 10:21:53 +01:00
this.status.type = ''
2020-02-06 17:16:38 +01:00
await this.getUserData()
2020-02-08 16:36:03 +01:00
setTimeout(() => {
this.loading = false
}, 800)
},
methods: {
2020-02-06 17:16:38 +01:00
...mapActions('user', ['makeTweet', 'logOut', 'getUserData']),
async makeContribution({ retry = 0 } = {}) {
try {
2020-02-05 11:53:45 +01:00
this.isContributeBtnSnown = true
2020-02-06 12:58:35 +01:00
this.loading = true
this.status.msg = 'Downloading last contribution'
this.status.type = ''
let data = await fetch('api/challenge')
data = new Uint8Array(await data.arrayBuffer())
this.status.msg = 'Generating random contribution'
await timeout(100) // allow UI to update before freezing in wasm
console.log('Source params', data)
const contribute = await this.$contribute()
const result = contribute(data)
console.log('Updated params', result)
this.status.msg = 'Uploading and verifying your contribution'
console.log('this.user.name', this.userName, this.userHandle, this.userCompany)
const formData = new FormData()
formData.append('response', new Blob([result], { type: 'application/octet-stream' }))
2020-02-05 11:53:45 +01:00
if (this.contributionType !== 'anonymous') {
formData.append('name', this.userName)
formData.append('company', this.userCompany)
2020-02-05 11:53:45 +01:00
}
const resp = await fetch('api/response', {
method: 'POST',
body: formData
})
if (resp.ok) {
2020-02-05 20:44:44 +01:00
this.status.msg = 'Your contribution is verified and recorded. Thank you.'
this.status.type = 'is-success'
2020-02-05 16:02:34 +01:00
const responseData = await resp.json()
this.$store.commit('user/SET_CONTRIBUTION_INDEX', responseData.contributionIndex)
2020-02-08 19:47:21 +01:00
console.log(
`${window.location.origin}/authorize-contribution?token=${responseData.token}`
)
} 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.msg = `Failed to upload your contribution after ${retry} attempts`
this.status.type = 'is-danger'
2020-02-05 11:53:45 +01:00
this.isContributeBtnSnown = false
}
} else {
this.status.msg = 'Error uploading your contribution'
this.status.type = 'is-danger'
2020-02-05 11:53:45 +01:00
this.isContributeBtnSnown = false
}
} catch (e) {
console.error(e.message)
this.status.msg = e.message
this.status.type = 'is-danger'
2020-02-05 11:53:45 +01:00
this.isContributeBtnSnown = false
2020-02-06 12:58:35 +01:00
} finally {
this.loading = false
}
},
2020-02-05 11:53:45 +01:00
onAnonymousHandler() {
this.logOut()
2020-02-05 11:53:45 +01:00
this.contributionType = 'anonymous'
}
}
}
</script>