Support form submit events

This commit is contained in:
Boris Kubiak 2018-02-18 13:26:55 +01:00
parent 3d3118d9c5
commit 2acabd66de
2 changed files with 23 additions and 14 deletions

View file

@ -1,6 +1,6 @@
<template> <template>
<div class="panel"> <div class="panel">
<form :class="{error: inputError}"> <form :class="{error: inputError}" v-on:submit.prevent="startGen">
<div class="error-text">Numbers and letters from A to F only</div> <div class="error-text">Numbers and letters from A to F only</div>
<input type="text" class="text-input-large" placeholder="Prefix" v-model="prefix" :disabled="running"> <input type="text" class="text-input-large" placeholder="Prefix" v-model="prefix" :disabled="running">
<div class="check"> <div class="check">
@ -54,7 +54,9 @@
}, },
methods: { methods: {
startGen: function () { startGen: function () {
this.$emit('start') if(!this.running && !this.inputError && !this.error){
this.$emit('start')
}
}, },
stopGen: function () { stopGen: function () {
this.$emit('stop') this.$emit('stop')

View file

@ -1,13 +1,18 @@
<template> <template>
<div class="remodal" data-remodal-id="modal" data-remodal-options="hashTracking: false"> <div class="remodal" data-remodal-id="modal" data-remodal-options="hashTracking: false">
<button data-remodal-action="close" class="remodal-close"></button> <button data-remodal-action="close" class="remodal-close"></button>
<h3 class="title">Download encrypted keystore file (UTC / JSON)</h3> <h3 class="title">Create encrypted keystore file (UTC / JSON)</h3>
<div> <form v-on:submit.prevent="save">
<input type="password" class="text-input-large" v-model="password" placeholder="Password"> <div>
</div> <input type="password" autocomplete="new-password" class="text-input-large" v-model="password"
<div> placeholder="Password">
<button class="button-large" @click="save" :disabled="!password || !privateKey">Save</button> </div>
</div> <div>
<button type="button" class="button-large" @click="save" :disabled="!password || !privateKey">
Download
</button>
</div>
</form>
</div> </div>
</template> </template>
@ -33,11 +38,13 @@
}, },
methods: { methods: {
save() { save() {
const rb = randomBytes(48); if (this.password) {
window.keythereum.dump(this.password, this.privateKey, rb.slice(0, 32), rb.slice(32), {}, (obj) => { const rb = randomBytes(48);
const fileName = "UTC--" + new Date().toISOString().replace(/:/g, '-') + "--" + obj.address; window.keythereum.dump(this.password, this.privateKey, rb.slice(0, 32), rb.slice(32), {}, (obj) => {
download(JSON.stringify(obj), fileName, "application/json"); const fileName = "UTC--" + new Date().toISOString().replace(/:/g, '-') + "--" + obj.address;
}); download(JSON.stringify(obj), fileName, "application/json");
});
}
}, },
} }
} }