mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
365 lines
12 KiB
365 lines
12 KiB
3 years ago
|
<template>
|
||
3 years ago
|
<v-container v-if="db" fluid>
|
||
3 years ago
|
<v-card>
|
||
|
<v-row>
|
||
3 years ago
|
<!-- <v-col cols="12">-->
|
||
3 years ago
|
<!-- <h4 class="text-center my-2 grey--text text--darken-2 title"> Metadata Management-->
|
||
|
<!-- </h4></v-col>-->
|
||
|
<v-col cols="8">
|
||
|
<v-card class="pb-2">
|
||
|
<v-toolbar flat height="50" class="toolbar-border-bottom">
|
||
3 years ago
|
<v-text-field
|
||
|
v-if="dbAliasList && db"
|
||
|
v-model="filter"
|
||
|
dense
|
||
|
hide-details
|
||
|
class="my-2 mx-auto"
|
||
|
:placeholder="`Search '${db.connection.database}' models`"
|
||
|
prepend-inner-icon="search"
|
||
2 years ago
|
style="max-width: 500px"
|
||
3 years ago
|
outlined
|
||
|
/>
|
||
3 years ago
|
|
||
3 years ago
|
<v-spacer />
|
||
|
<x-btn
|
||
|
outlined
|
||
3 years ago
|
:tooltip="$t('tooltip.reloadList')"
|
||
3 years ago
|
small
|
||
|
color="primary"
|
||
|
icon="refresh"
|
||
2 years ago
|
@click="
|
||
|
loadModels();
|
||
|
loadTableList();
|
||
|
"
|
||
3 years ago
|
>
|
||
|
Reload
|
||
3 years ago
|
</x-btn>
|
||
3 years ago
|
<x-btn
|
||
|
outlined
|
||
|
:loading="updating"
|
||
|
:disabled="updating || !edited"
|
||
3 years ago
|
:tooltip="$t('tooltip.saveChanges')"
|
||
3 years ago
|
small
|
||
|
color="primary"
|
||
|
icon="save"
|
||
|
@click="saveModels()"
|
||
|
>
|
||
3 years ago
|
<!-- Save -->
|
||
|
{{ $t('general.save') }}
|
||
3 years ago
|
</x-btn>
|
||
|
</v-toolbar>
|
||
|
|
||
|
<div class="d-flex d-100 justify-center">
|
||
3 years ago
|
<v-simple-table dense style="min-width: 400px">
|
||
3 years ago
|
<thead>
|
||
3 years ago
|
<tr>
|
||
|
<th>
|
||
2 years ago
|
Models
|
||
|
<span v-show="!isNewOrDeletedModelFound" class="caption ml-1">({{ enableCountText }})</span>
|
||
3 years ago
|
</th>
|
||
|
<th>APIs</th>
|
||
|
<th>Actions</th>
|
||
|
<th>Comment</th>
|
||
|
</tr>
|
||
3 years ago
|
</thead>
|
||
|
<tbody>
|
||
2 years ago
|
<template v-for="model in comparedModelList">
|
||
|
<tr v-if="model.title.toLowerCase().indexOf(filter.toLowerCase()) > -1" :key="model.title">
|
||
3 years ago
|
<td>{{ model.title }}</td>
|
||
|
<td>
|
||
|
<v-checkbox
|
||
|
v-model="model.enabled"
|
||
|
dense
|
||
|
:disabled="model.new || model.deleted"
|
||
|
@change="edited = true"
|
||
|
/>
|
||
|
</td>
|
||
|
<td>
|
||
|
<template v-if="model.new">
|
||
|
<!-- <x-icon small color="success success" tooltip="Add and sync meta information"-->
|
||
|
<!-- @click="addTableMeta([model.title])">mdi-plus-circle-outline-->
|
||
|
<!-- </x-icon>-->
|
||
|
</template>
|
||
|
<template v-else-if="model.deleted">
|
||
|
<!-- <x-icon small v-else-if="model.deleted" color="error error" tooltip="Delete meta information"-->
|
||
|
<!-- @click="deleteTableMeta([model.title])">mdi-delete-outline-->
|
||
|
<!-- </x-icon>-->
|
||
|
</template>
|
||
|
<x-icon
|
||
|
v-else
|
||
|
small
|
||
|
color="primary"
|
||
|
tooltip="Recreate metadata"
|
||
|
@click="recreateTableMeta(model.title)"
|
||
|
>
|
||
|
mdi-reload
|
||
|
</x-icon>
|
||
|
</td>
|
||
3 years ago
|
|
||
3 years ago
|
<td>
|
||
2 years ago
|
<span v-if="model.new" class="caption success--text"
|
||
|
>New table found in DB. Yet to be synced.</span
|
||
|
>
|
||
|
<span v-else-if="model.deleted" class="caption error--text"
|
||
|
>This table doesn't exist in DB. Yet to be synced.</span
|
||
|
>
|
||
3 years ago
|
<!-- <span v-else class="caption grey--text">Recreate metadata.</span>-->
|
||
|
</td>
|
||
|
</tr>
|
||
|
</template>
|
||
3 years ago
|
</tbody>
|
||
|
</v-simple-table>
|
||
|
</div>
|
||
|
</v-card>
|
||
|
</v-col>
|
||
2 years ago
|
<v-col cols="4" style="padding-top: 100px">
|
||
3 years ago
|
<div class="d-flex">
|
||
3 years ago
|
<v-spacer />
|
||
3 years ago
|
|
||
|
<v-tooltip bottom>
|
||
2 years ago
|
<template #activator="{ on }">
|
||
3 years ago
|
<v-alert
|
||
|
v-if="isNewOrDeletedModelFound"
|
||
|
dense
|
||
|
border="left"
|
||
|
colored-border
|
||
|
elevation="2"
|
||
|
color="warning"
|
||
|
type="warning"
|
||
|
v-on="on"
|
||
|
>
|
||
2 years ago
|
Functions metadata <br />is out of sync
|
||
3 years ago
|
</v-alert>
|
||
2 years ago
|
<v-alert v-else dense outlined type="success" v-on="on"> Function metadata is in sync </v-alert>
|
||
3 years ago
|
</template>
|
||
|
<template v-if="!isNewOrDeletedModelFound">
|
||
2 years ago
|
Metadata for API creation & management is in sync with '{{ db.connection.database }}' Database.
|
||
3 years ago
|
</template>
|
||
|
<template v-else>
|
||
2 years ago
|
Metadata for API creation & management isn't sync with '{{ db.connection.database }}' Database.
|
||
3 years ago
|
</template>
|
||
|
</v-tooltip>
|
||
3 years ago
|
<v-spacer />
|
||
3 years ago
|
</div>
|
||
3 years ago
|
<div v-if="isNewOrDeletedModelFound" class="d-flex justify-center">
|
||
2 years ago
|
<x-btn x-large btn.class="mx-auto primary" tooltip="Sync metadata" @click="syncMetadata">
|
||
|
<v-icon color="white" class="mr-2 mt-n1"> mdi-database-sync </v-icon>
|
||
3 years ago
|
Sync Now
|
||
|
</x-btn>
|
||
|
</div>
|
||
|
</v-col>
|
||
|
</v-row>
|
||
|
</v-card>
|
||
|
</v-container>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
2 years ago
|
import { mapGetters } from 'vuex';
|
||
|
import { isMetaTable } from '@/helpers/xutils';
|
||
3 years ago
|
|
||
|
export default {
|
||
3 years ago
|
name: 'DisableOrEnableFunctions',
|
||
|
props: ['nodes', 'db'],
|
||
3 years ago
|
data: () => ({
|
||
|
edited: false,
|
||
|
models: null,
|
||
|
updating: false,
|
||
|
dbsTab: 0,
|
||
|
filter: '',
|
||
2 years ago
|
functions: null,
|
||
3 years ago
|
}),
|
||
3 years ago
|
async mounted() {
|
||
2 years ago
|
await this.loadModels();
|
||
|
await this.loadTableList();
|
||
3 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
async addTableMeta(tables) {
|
||
3 years ago
|
try {
|
||
2 years ago
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [
|
||
|
{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv'],
|
||
|
},
|
||
|
'functionMetaCreate',
|
||
|
{
|
||
|
tableNames: tables, // this.comparedModelList.filter(t => t.new).map(t=>t.title)
|
||
|
},
|
||
|
]);
|
||
|
setTimeout(async () => {
|
||
|
await this.loadModels();
|
||
|
this.$toast.success('Table metadata added successfully').goAway(3000);
|
||
|
}, 1000);
|
||
3 years ago
|
} catch (e) {
|
||
2 years ago
|
this.$toast.error('Some error occurred').goAway(5000);
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
async deleteTableMeta(tables) {
|
||
3 years ago
|
try {
|
||
2 years ago
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [
|
||
|
{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv'],
|
||
|
},
|
||
|
'functioneMetaDelete',
|
||
|
{
|
||
|
tableNames: tables,
|
||
|
},
|
||
|
]);
|
||
|
setTimeout(async () => {
|
||
|
await this.loadModels();
|
||
|
this.$toast.success('Table metadata deleted successfully').goAway(3000);
|
||
|
}, 1000);
|
||
3 years ago
|
} catch (e) {
|
||
2 years ago
|
this.$toast.error('Some error occurred').goAway(5000);
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
async syncMetadata() {
|
||
2 years ago
|
const addTables = this.comparedModelList.filter(t => t.new).map(t => t.title);
|
||
|
const deleteTables = this.comparedModelList.filter(t => t.deleted).map(t => t.title);
|
||
3 years ago
|
if (addTables.length) {
|
||
2 years ago
|
await this.addTableMeta(addTables);
|
||
3 years ago
|
}
|
||
|
if (deleteTables.length) {
|
||
2 years ago
|
await this.deleteTableMeta(deleteTables);
|
||
3 years ago
|
}
|
||
|
},
|
||
|
|
||
3 years ago
|
async recreateTableMeta(table) {
|
||
3 years ago
|
try {
|
||
2 years ago
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [
|
||
|
{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv'],
|
||
|
},
|
||
|
'functionMetaRecreate',
|
||
|
{
|
||
|
tn: table,
|
||
|
},
|
||
|
]);
|
||
|
setTimeout(async () => {
|
||
|
await this.loadModels();
|
||
|
this.$toast.success('Table metadata recreated successfully').goAway(3000);
|
||
|
}, 1000);
|
||
3 years ago
|
} catch (e) {
|
||
2 years ago
|
this.$toast.error('Some error occurred').goAway(5000);
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
async loadModels() {
|
||
3 years ago
|
if (this.dbAliasList[this.dbsTab]) {
|
||
2 years ago
|
this.models = await this.$store.dispatch('sqlMgr/ActSqlOp', [
|
||
|
{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv'],
|
||
|
},
|
||
|
'xcFunctionModelsList',
|
||
|
]);
|
||
|
this.edited = false;
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
async loadTableList() {
|
||
2 years ago
|
this.functions = (
|
||
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [
|
||
|
{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv'],
|
||
|
},
|
||
|
'functionList',
|
||
|
])
|
||
|
).data.list;
|
||
3 years ago
|
},
|
||
|
|
||
3 years ago
|
async saveModels() {
|
||
2 years ago
|
this.updating = true;
|
||
3 years ago
|
try {
|
||
2 years ago
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [
|
||
|
{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv'],
|
||
|
},
|
||
|
'xcFunctionModelsEnable',
|
||
|
this.models.filter(m => m.enabled).map(m => m.title),
|
||
|
]);
|
||
|
this.$toast.success('Models changes are updated successfully').goAway(3000);
|
||
3 years ago
|
} catch (e) {
|
||
2 years ago
|
this.$toast.error('Some error occurred').goAway(3000);
|
||
|
console.log(e.message);
|
||
3 years ago
|
}
|
||
2 years ago
|
this.updating = false;
|
||
|
this.edited = false;
|
||
|
},
|
||
3 years ago
|
},
|
||
|
computed: {
|
||
|
...mapGetters({
|
||
2 years ago
|
dbAliasList: 'project/GtrDbAliasList',
|
||
3 years ago
|
}),
|
||
3 years ago
|
enableCountText() {
|
||
2 years ago
|
return this.models ? `${this.models.filter(m => m.enabled).length}/${this.models.length} enabled` : '';
|
||
3 years ago
|
},
|
||
|
|
||
3 years ago
|
isNewOrDeletedModelFound() {
|
||
2 years ago
|
return this.comparedModelList.some(m => m.new || m.deleted);
|
||
3 years ago
|
},
|
||
3 years ago
|
comparedModelList() {
|
||
2 years ago
|
const res = [];
|
||
|
const getPriority = item => {
|
||
|
if (item.new) {
|
||
|
return 2;
|
||
|
}
|
||
|
if (item.deleted) {
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
};
|
||
3 years ago
|
if (this.functions && this.models) {
|
||
2 years ago
|
const tables = this.functions.filter(t => !isMetaTable(t.function_name)).map(t => t.function_name);
|
||
|
res.push(
|
||
|
...this.models.map(m => {
|
||
|
const i = tables.indexOf(m.title);
|
||
|
if (i === -1) {
|
||
|
m.deleted = true;
|
||
|
} else {
|
||
|
tables.splice(i, 1);
|
||
|
}
|
||
|
return m;
|
||
|
})
|
||
|
);
|
||
|
res.push(
|
||
|
...tables.map(t => ({
|
||
|
title: t,
|
||
|
new: true,
|
||
|
}))
|
||
|
);
|
||
3 years ago
|
}
|
||
2 years ago
|
res.sort((a, b) => getPriority(b) - getPriority(a));
|
||
|
return res;
|
||
|
},
|
||
|
},
|
||
|
};
|
||
3 years ago
|
</script>
|
||
|
|
||
2 years ago
|
<style scoped></style>
|
||
3 years ago
|
<!--
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||
|
*
|
||
|
* @author Naveen MR <oof1lab@gmail.com>
|
||
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
||
|
*
|
||
|
* @license GNU AGPL version 3 or any later version
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|