antares/src/renderer/components/WorkspaceTableTab.vue

238 lines
6.6 KiB
Vue
Raw Normal View History

2020-06-12 18:10:45 +02:00
<template>
<div class="workspace-query-tab column col-12 columns col-gapless">
<div class="workspace-query-runner column col-12">
<div class="workspace-query-runner-footer">
<div class="workspace-query-buttons">
<button
2020-10-07 20:42:04 +02:00
class="btn btn-link btn-sm mr-0 pr-0"
2020-06-12 18:10:45 +02:00
:class="{'loading':isQuering}"
title="F5"
@click="reloadTable"
2020-06-12 18:10:45 +02:00
>
<span>{{ $t('word.refresh') }}</span>
<i class="mdi mdi-24px mdi-refresh ml-1" />
2020-06-12 18:10:45 +02:00
</button>
<button
class="btn btn-link btn-sm"
@click="showAddModal"
>
<span>{{ $t('word.add') }}</span>
<i class="mdi mdi-24px mdi-playlist-plus ml-1" />
</button>
2020-06-12 18:10:45 +02:00
</div>
<div class="workspace-query-info">
2020-09-14 12:49:09 +02:00
<div v-if="results.length && results[0].rows">
{{ $t('word.results') }}: <b>{{ results[0].rows.length }}</b>
2020-06-12 18:10:45 +02:00
</div>
<div v-if="workspace.breadcrumbs.database">
{{ $t('word.schema') }}: <b>{{ workspace.breadcrumbs.database }}</b>
</div>
</div>
</div>
</div>
<div class="workspace-query-results column col-12">
2020-06-16 18:01:22 +02:00
<WorkspaceQueryTable
v-if="results"
2020-06-28 15:31:16 +02:00
ref="queryTable"
:results="results"
:tab-uid="tabUid"
:conn-uid="connection.uid"
mode="table"
@update-field="updateField"
@delete-selected="deleteSelected"
2020-06-16 18:01:22 +02:00
/>
2020-06-12 18:10:45 +02:00
</div>
2020-08-12 18:12:30 +02:00
<ModalNewTableRow
v-if="isAddModal"
:tab-uid="tabUid"
2020-08-12 18:12:30 +02:00
@hide="hideAddModal"
@reload="reloadTable"
/>
2020-06-12 18:10:45 +02:00
</div>
</template>
<script>
2020-07-24 13:26:56 +02:00
import Tables from '@/ipc-api/Tables';
2020-06-12 18:10:45 +02:00
import WorkspaceQueryTable from '@/components/WorkspaceQueryTable';
2020-08-12 18:12:30 +02:00
import ModalNewTableRow from '@/components/ModalNewTableRow';
2020-06-12 18:10:45 +02:00
import { mapGetters, mapActions } from 'vuex';
2020-07-23 19:10:14 +02:00
import tableTabs from '@/mixins/tableTabs';
2020-06-12 18:10:45 +02:00
export default {
2020-06-13 18:14:32 +02:00
name: 'WorkspaceTableTab',
2020-06-12 18:10:45 +02:00
components: {
2020-08-12 18:12:30 +02:00
WorkspaceQueryTable,
ModalNewTableRow
2020-06-12 18:10:45 +02:00
},
2020-07-23 19:10:14 +02:00
mixins: [tableTabs],
2020-06-12 18:10:45 +02:00
props: {
connection: Object,
table: String
},
data () {
return {
2020-08-19 18:20:57 +02:00
tabUid: 'data',
2020-06-12 18:10:45 +02:00
isQuering: false,
results: [],
2020-06-16 18:01:22 +02:00
fields: [],
keyUsage: [],
lastTable: null,
isAddModal: false
2020-06-12 18:10:45 +02:00
};
},
computed: {
...mapGetters({
getWorkspace: 'workspaces/getWorkspace'
}),
workspace () {
return this.getWorkspace(this.connection.uid);
},
2020-06-13 18:14:32 +02:00
isSelected () {
2020-08-19 18:20:57 +02:00
return this.workspace.selected_tab === 'data';
2020-06-12 18:10:45 +02:00
}
},
watch: {
2020-07-24 13:26:56 +02:00
table () {
2020-06-13 18:14:32 +02:00
if (this.isSelected) {
2020-06-15 18:23:51 +02:00
this.getTableData();
2020-06-13 18:14:32 +02:00
this.lastTable = this.table;
}
},
2020-07-24 13:26:56 +02:00
isSelected (val) {
2020-06-13 18:14:32 +02:00
if (val && this.lastTable !== this.table) {
2020-06-15 18:23:51 +02:00
this.getTableData();
2020-06-13 18:14:32 +02:00
this.lastTable = this.table;
}
2020-06-12 18:10:45 +02:00
}
},
created () {
2020-06-15 18:23:51 +02:00
this.getTableData();
window.addEventListener('keydown', this.onKey);
},
beforeDestroy () {
window.removeEventListener('keydown', this.onKey);
2020-06-12 18:10:45 +02:00
},
methods: {
...mapActions({
addNotification: 'notifications/addNotification',
setTabFields: 'workspaces/setTabFields',
setTabKeyUsage: 'workspaces/setTabKeyUsage'
2020-06-12 18:10:45 +02:00
}),
2020-06-15 18:23:51 +02:00
async getTableData () {
2020-06-12 18:10:45 +02:00
if (!this.table) return;
this.isQuering = true;
const fieldsArr = [];
const keysArr = [];
2020-10-07 20:42:04 +02:00
// if table changes clear cached values
if (this.lastTable !== this.table) {
this.results = [];
this.setTabFields({ cUid: this.connection.uid, tUid: this.tabUid, fields: [] });
}
2020-06-12 18:10:45 +02:00
const params = {
uid: this.connection.uid,
schema: this.schema,
2020-06-15 18:23:51 +02:00
table: this.workspace.breadcrumbs.table
2020-06-12 18:10:45 +02:00
};
try { // Columns data
2020-07-24 13:26:56 +02:00
const { status, response } = await Tables.getTableColumns(params);
if (status === 'success') {
this.fields = response;// Needed to add new rows
fieldsArr.push(response);
}
2020-06-15 18:23:51 +02:00
else
this.addNotification({ status: 'error', message: response });
}
catch (err) {
this.addNotification({ status: 'error', message: err.stack });
}
2020-10-07 20:42:04 +02:00
try { // Key usage (foreign keys)
const { status, response } = await Tables.getKeyUsage(params);
2020-06-16 18:01:22 +02:00
2020-10-07 20:42:04 +02:00
if (status === 'success') {
this.keyUsage = response;// Needed to add new rows
keysArr.push(response);
}
2020-06-12 18:10:45 +02:00
else
this.addNotification({ status: 'error', message: response });
}
catch (err) {
this.addNotification({ status: 'error', message: err.stack });
}
2020-10-07 20:42:04 +02:00
try { // Table data
const { status, response } = await Tables.getTableData(params);
2020-10-07 20:42:04 +02:00
if (status === 'success')
this.results = [response];
else
this.addNotification({ status: 'error', message: response });
2020-06-12 18:10:45 +02:00
}
catch (err) {
this.addNotification({ status: 'error', message: err.stack });
}
this.setTabFields({ cUid: this.connection.uid, tUid: this.tabUid, fields: fieldsArr });
this.setTabKeyUsage({ cUid: this.connection.uid, tUid: this.tabUid, keyUsage: keysArr });
2020-10-07 20:42:04 +02:00
2020-06-12 18:10:45 +02:00
this.isQuering = false;
},
getTable () {
return this.table;
},
reloadTable () {
2020-10-07 20:42:04 +02:00
this.getTableData();
},
showAddModal () {
this.isAddModal = true;
},
hideAddModal () {
this.isAddModal = false;
},
onKey (e) {
e.stopPropagation();
if (e.key === 'F5')
this.reloadTable();
}
2020-06-12 18:10:45 +02:00
}
};
</script>
<style lang="scss">
2020-07-31 18:16:28 +02:00
.workspace-tabs {
align-content: baseline;
2020-06-12 18:10:45 +02:00
2020-07-31 18:16:28 +02:00
.workspace-query-runner {
.workspace-query-runner-footer {
display: flex;
justify-content: space-between;
padding: 0.3rem 0.6rem 0.4rem;
align-items: center;
2020-06-12 18:10:45 +02:00
2020-07-31 18:16:28 +02:00
.workspace-query-buttons {
display: flex;
2020-06-12 18:10:45 +02:00
2020-07-31 18:16:28 +02:00
.btn {
display: flex;
align-self: center;
color: $body-font-color;
margin-right: 0.4rem;
}
}
2020-06-12 18:10:45 +02:00
2020-07-31 18:16:28 +02:00
.workspace-query-info {
display: flex;
2020-06-12 18:10:45 +02:00
2020-07-31 18:16:28 +02:00
> div + div {
padding-left: 0.6rem;
}
2020-06-12 18:10:45 +02:00
}
2020-07-31 18:16:28 +02:00
}
}
2020-06-12 18:10:45 +02:00
}
</style>