mirror of
https://github.com/Fabio286/antares.git
synced 2025-04-20 13:07:20 +02:00
253 lines
8.9 KiB
Vue
253 lines
8.9 KiB
Vue
<template>
|
|
<div class="modal active">
|
|
<a class="modal-overlay c-hand" @click="closeModal" />
|
|
<div class="modal-container">
|
|
<div class="modal-header pl-2">
|
|
<div class="modal-title h6">
|
|
<div class="d-flex">
|
|
<i class="mdi mdi-24px mdi-server mr-1" /> {{ $t('message.editConnection') }}
|
|
</div>
|
|
</div>
|
|
<a class="btn btn-clear c-hand" @click="closeModal" />
|
|
</div>
|
|
<div class="modal-body pb-0">
|
|
<div class="content">
|
|
<form class="form-horizontal">
|
|
<fieldset class="m-0" :disabled="isTesting">
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12">
|
|
<label class="form-label">{{ $t('word.connectionName') }}:</label>
|
|
</div>
|
|
<div class="col-8 col-sm-12">
|
|
<input
|
|
ref="firstInput"
|
|
v-model="localConnection.name"
|
|
class="form-input"
|
|
type="text"
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12">
|
|
<label class="form-label">{{ $t('word.client') }}:</label>
|
|
</div>
|
|
<div class="col-8 col-sm-12">
|
|
<select v-model="localConnection.client" class="form-select">
|
|
<option value="mysql">
|
|
MySQL
|
|
</option>
|
|
<option value="maria">
|
|
MariaDB
|
|
</option>
|
|
<!-- <option value="mssql">
|
|
Microsoft SQL
|
|
</option>
|
|
<option value="pg">
|
|
PostgreSQL
|
|
</option>
|
|
<option value="oracledb">
|
|
Oracle DB
|
|
</option> -->
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12">
|
|
<label class="form-label">{{ $t('word.hostName') }}/IP:</label>
|
|
</div>
|
|
<div class="col-8 col-sm-12">
|
|
<input
|
|
v-model="localConnection.host"
|
|
class="form-input"
|
|
type="text"
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12">
|
|
<label class="form-label">{{ $t('word.port') }}:</label>
|
|
</div>
|
|
<div class="col-8 col-sm-12">
|
|
<input
|
|
v-model="localConnection.port"
|
|
class="form-input"
|
|
type="number"
|
|
min="1"
|
|
max="65535"
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12">
|
|
<label class="form-label">{{ $t('word.user') }}:</label>
|
|
</div>
|
|
<div class="col-8 col-sm-12">
|
|
<input
|
|
v-model="localConnection.user"
|
|
class="form-input"
|
|
type="text"
|
|
:disabled="localConnection.ask"
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12">
|
|
<label class="form-label">{{ $t('word.password') }}:</label>
|
|
</div>
|
|
<div class="col-8 col-sm-12">
|
|
<input
|
|
v-model="localConnection.password"
|
|
class="form-input"
|
|
type="password"
|
|
:disabled="localConnection.ask"
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-4 col-sm-12" />
|
|
<div class="col-8 col-sm-12">
|
|
<label class="form-checkbox form-inline">
|
|
<input v-model="localConnection.ask" type="checkbox"><i class="form-icon" /> {{ $t('message.askCredentials') }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
<BaseToast
|
|
class="mb-2"
|
|
:message="toast.message"
|
|
:status="toast.status"
|
|
/>
|
|
</div>
|
|
<div class="modal-footer text-light">
|
|
<button
|
|
class="btn btn-gray mr-2"
|
|
:class="{'loading': isTesting}"
|
|
@click="startTest"
|
|
>
|
|
{{ $t('message.testConnection') }}
|
|
</button>
|
|
<button class="btn btn-primary mr-2" @click="saveEditConnection">
|
|
{{ $t('word.save') }}
|
|
</button>
|
|
<button class="btn btn-link" @click="closeModal">
|
|
{{ $t('word.close') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<ModalAskCredentials
|
|
v-if="isAsking"
|
|
@close-asking="closeAsking"
|
|
@credentials="continueTest"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions } from 'vuex';
|
|
import Connection from '@/ipc-api/Connection';
|
|
import ModalAskCredentials from '@/components/ModalAskCredentials';
|
|
import BaseToast from '@/components/BaseToast';
|
|
|
|
export default {
|
|
name: 'ModalEditConnection',
|
|
components: {
|
|
ModalAskCredentials,
|
|
BaseToast
|
|
},
|
|
props: {
|
|
connection: Object
|
|
},
|
|
data () {
|
|
return {
|
|
toast: {
|
|
status: '',
|
|
message: ''
|
|
},
|
|
isTesting: false,
|
|
isAsking: false,
|
|
localConnection: null
|
|
};
|
|
},
|
|
created () {
|
|
this.localConnection = Object.assign({}, this.connection);
|
|
window.addEventListener('keydown', this.onKey);
|
|
|
|
setTimeout(() => {
|
|
this.$refs.firstInput.focus();
|
|
}, 20);
|
|
},
|
|
beforeDestroy () {
|
|
window.removeEventListener('keydown', this.onKey);
|
|
},
|
|
methods: {
|
|
...mapActions({
|
|
editConnection: 'connections/editConnection'
|
|
}),
|
|
async startTest () {
|
|
this.isTesting = true;
|
|
this.toast = {
|
|
status: '',
|
|
message: ''
|
|
};
|
|
|
|
if (this.localConnection.ask)
|
|
this.isAsking = true;
|
|
else {
|
|
try {
|
|
const res = await Connection.makeTest(this.localConnection);
|
|
if (res.status === 'error')
|
|
this.toast = { status: 'error', message: res.response.message };
|
|
else
|
|
this.toast = { status: 'success', message: this.$t('message.connectionSuccessfullyMade') };
|
|
}
|
|
catch (err) {
|
|
this.toast = { status: 'error', message: err.stack };
|
|
}
|
|
|
|
this.isTesting = false;
|
|
}
|
|
},
|
|
async continueTest (credentials) { // if "Ask for credentials" is true
|
|
this.isAsking = false;
|
|
const params = Object.assign({}, this.localConnection, credentials);
|
|
try {
|
|
const res = await Connection.makeTest(params);
|
|
if (res.status === 'error')
|
|
this.toast = { status: 'error', message: res.response.message };
|
|
else
|
|
this.toast = { status: 'success', message: this.$t('message.connectionSuccessfullyMade') };
|
|
}
|
|
catch (err) {
|
|
this.toast = { status: 'error', message: err.stack };
|
|
}
|
|
|
|
this.isTesting = false;
|
|
},
|
|
saveEditConnection () {
|
|
this.editConnection(this.localConnection);
|
|
this.closeModal();
|
|
},
|
|
closeAsking () {
|
|
this.isTesting = false;
|
|
this.isAsking = false;
|
|
},
|
|
closeModal () {
|
|
this.$emit('close');
|
|
},
|
|
onKey (e) {
|
|
e.stopPropagation();
|
|
if (e.key === 'Escape')
|
|
this.closeModal();
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.modal-container {
|
|
max-width: 450px;
|
|
}
|
|
</style>
|