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.
200 lines
5.8 KiB
200 lines
5.8 KiB
3 years ago
|
<template>
|
||
3 years ago
|
<v-container v-if="db" fluid>
|
||
3 years ago
|
<v-card>
|
||
|
<v-card class="pb-2">
|
||
|
<v-toolbar flat height="50" class="toolbar-border-bottom">
|
||
3 years ago
|
<v-text-field
|
||
|
v-if="db"
|
||
|
v-model="filter"
|
||
|
dense
|
||
|
hide-details
|
||
|
class="my-2 mx-auto search-field"
|
||
|
:placeholder="`Search '${db.connection.database}' models`"
|
||
|
style="max-width:300px"
|
||
|
outlined
|
||
|
>
|
||
|
<template #prepend-inner>
|
||
|
<v-icon small>
|
||
|
search
|
||
|
</v-icon>
|
||
3 years ago
|
</template>
|
||
|
</v-text-field>
|
||
|
|
||
3 years ago
|
<v-spacer />
|
||
|
<x-btn
|
||
|
outlined
|
||
3 years ago
|
:tooltip="$t('tooltip.reloadList')"
|
||
3 years ago
|
small
|
||
|
color="primary"
|
||
|
icon="refresh"
|
||
|
@click="loadViewList()"
|
||
|
>
|
||
3 years ago
|
<!-- Reload -->
|
||
|
{{ $t('general.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="save()"
|
||
|
>
|
||
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>Table Name</th>
|
||
|
<th>Relation</th>
|
||
|
<th>Parent</th>
|
||
|
<th>Child</th>
|
||
|
<th v-for="role in roles" :key="role">
|
||
|
{{ role }}
|
||
|
</th>
|
||
|
</tr>
|
||
3 years ago
|
</thead>
|
||
|
<tbody>
|
||
3 years ago
|
<tr
|
||
|
v-for="(relation,i) in relations"
|
||
|
:key="i"
|
||
|
>
|
||
3 years ago
|
<td>{{ relation.relationType === 'hm' ? relation.rtn : relation.table_name }}</td>
|
||
3 years ago
|
<td>{{ relation.relationType === 'hm' ? 'HasMany' : 'BelongsTo' }}</td>
|
||
|
<td>{{ relation.rtn }}</td>
|
||
3 years ago
|
<td>{{ relation.table_name }}</td>
|
||
3 years ago
|
|
||
|
<td v-for="role in roles" :key="`${i}-${role}`">
|
||
|
<v-tooltip bottom>
|
||
|
<template #activator="{on}">
|
||
|
<div
|
||
|
v-on="on"
|
||
|
>
|
||
|
<v-checkbox
|
||
|
v-model="relation.disabled[role]"
|
||
|
dense
|
||
|
:true-value="false"
|
||
|
:false-value="true"
|
||
|
@change="$set(relation,'edited',true)"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<!-- <span v-if="relation.disabled[role]">Click to hide '{{ relation.relation_name }}' for Role:{{ role }} in UI dashboard</span>
|
||
3 years ago
|
<span v-else>Click to make '{{ relation.relation_name }}' visible for Role:{{
|
||
|
role
|
||
|
}} in UI dashboard</span>-->
|
||
3 years ago
|
</v-tooltip>
|
||
|
</td>
|
||
|
</tr>
|
||
3 years ago
|
</tbody>
|
||
|
</v-simple-table>
|
||
|
</div>
|
||
|
</v-card>
|
||
|
</v-card>
|
||
|
</v-container>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
3 years ago
|
import { mapGetters } from 'vuex'
|
||
3 years ago
|
|
||
|
export default {
|
||
3 years ago
|
name: 'ToggleRelationsUiAcl',
|
||
3 years ago
|
components: {},
|
||
3 years ago
|
props: ['nodes', 'db'],
|
||
3 years ago
|
data: () => ({
|
||
|
models: null,
|
||
|
updating: false,
|
||
|
dbsTab: 0,
|
||
|
filter: '',
|
||
|
relations: null
|
||
|
}),
|
||
3 years ago
|
async mounted() {
|
||
3 years ago
|
await this.loadViewList()
|
||
3 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
async loadViewList() {
|
||
3 years ago
|
this.relations = (await this.$store.dispatch('sqlMgr/ActSqlOp', [{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv']
|
||
|
}, 'xcVisibilityMetaGet', {
|
||
|
type: 'relation'
|
||
3 years ago
|
}]))
|
||
3 years ago
|
},
|
||
3 years ago
|
async save() {
|
||
3 years ago
|
try {
|
||
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [{
|
||
|
dbAlias: this.db.meta.dbAlias,
|
||
|
env: this.$store.getters['project/GtrEnv']
|
||
|
}, 'xcVisibilityMetaSet', {
|
||
|
type: 'relation',
|
||
|
disableList: this.relations.filter(t => t.edited)
|
||
3 years ago
|
}])
|
||
3 years ago
|
this.$toast.success('Updated UI ACL for tables successfully').goAway(3000)
|
||
|
} catch (e) {
|
||
|
this.$toast.error('Some error occurred').goAway(3000)
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
...mapGetters({
|
||
|
dbAliasList: 'project/GtrDbAliasList'
|
||
|
}),
|
||
3 years ago
|
edited() {
|
||
3 years ago
|
return this.relations && this.relations.length && this.relations.some(t => t.edited)
|
||
|
},
|
||
3 years ago
|
roles() {
|
||
3 years ago
|
return this.relations && this.relations.length ? Object.keys(this.relations[0].disabled) : []
|
||
3 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
::v-deep {
|
||
|
.v-tabs-bar {
|
||
|
border-bottom: solid 1px #7f828b33;
|
||
|
}
|
||
|
|
||
|
.v-tab {
|
||
|
border-right: 1px solid #7f828b33;
|
||
|
}
|
||
|
|
||
|
.search-field.v-text-field > .v-input__control, .search-field.v-text-field > .v-input__control > .v-input__slot {
|
||
|
min-height: auto;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
<!--
|
||
|
/**
|
||
|
* @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/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|