55 lines
1.5 KiB
Vue
55 lines
1.5 KiB
Vue
<template>
|
|
<modal-inner aria-label="Insert image">
|
|
<div class="modal__content">
|
|
<div class="modal__image">
|
|
<icon-provider provider-id="couchdb"></icon-provider>
|
|
</div>
|
|
<p>Please provide your credentials to login to <b>CouchDB</b>.</p>
|
|
<form-entry label="Name" error="name">
|
|
<input slot="field" class="textfield" type="text" v-model.trim="name" @keyup.enter="resolve()">
|
|
</form-entry>
|
|
<form-entry label="Password" error="password">
|
|
<input slot="field" class="textfield" type="password" v-model.trim="password" @keyup.enter="resolve()">
|
|
</form-entry>
|
|
</div>
|
|
<div class="modal__button-bar">
|
|
<button class="button" @click="config.reject()">Cancel</button>
|
|
<button class="button" @click="resolve()">Ok</button>
|
|
</div>
|
|
</modal-inner>
|
|
</template>
|
|
|
|
<script>
|
|
import modalTemplate from '../common/modalTemplate';
|
|
|
|
export default modalTemplate({
|
|
data: () => ({
|
|
name: '',
|
|
password: '',
|
|
}),
|
|
created() {
|
|
this.name = this.config.token.name;
|
|
this.password = this.config.token.password;
|
|
},
|
|
methods: {
|
|
resolve() {
|
|
if (!this.name) {
|
|
this.setError('name');
|
|
}
|
|
if (!this.password) {
|
|
this.setError('password');
|
|
}
|
|
if (this.name && this.password) {
|
|
const token = {
|
|
...this.config.token,
|
|
name: this.name,
|
|
password: this.password,
|
|
};
|
|
this.$store.dispatch('data/setCouchdbToken', token);
|
|
this.config.resolve();
|
|
}
|
|
},
|
|
},
|
|
});
|
|
</script>
|