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.
181 lines
6.2 KiB
181 lines
6.2 KiB
<template> |
|
<div class="d-flex align-center"> |
|
|
|
<v-tooltip bottom> |
|
<template #activator="{on}"> |
|
<v-icon v-if="column.hm" color="warning" x-small class="mr-1" v-on="on">mdi-table-arrow-right</v-icon> |
|
<v-icon v-else-if="column.bt" color="info" x-small class="mr-1" v-on="on">mdi-table-arrow-left</v-icon> |
|
<v-icon v-else-if="column.mm" color="pink" x-small class="mr-1" v-on="on">mdi-table-network</v-icon> |
|
|
|
<span v-on="on" class="name flex-grow-1" :title="column._cn">{{ column._cn }}</span> |
|
|
|
<span v-if="column.rqd" v-on="on" class="error--text text--lighten-1"> *</span> |
|
</template> |
|
<span class="caption" v-html="tooltipMsg"></span> |
|
</v-tooltip> |
|
<v-spacer> |
|
</v-spacer> |
|
|
|
<v-menu offset-y open-on-hover left> |
|
<template v-slot:activator="{on}"> |
|
<v-icon v-if="!isForm" v-on="on" small>mdi-menu-down</v-icon> |
|
</template> |
|
<v-list dense> |
|
<v-list-item dense @click="editColumnMenu = true"> |
|
<x-icon small class="mr-1" color="primary">mdi-pencil</x-icon> |
|
<span class="caption">Edit</span> |
|
</v-list-item> |
|
<!-- <v-list-item dense @click="setAsPrimaryValue"> |
|
<x-icon small class="mr-1" color="primary">mdi-key-star</x-icon> |
|
<v-tooltip bottom> |
|
<template v-slot:activator="{on}"> |
|
<span class="caption" v-on="on">Set as Primary value</span> |
|
</template> |
|
<span class="caption font-weight-bold">Primary value will be shown in place of primary key</span> |
|
</v-tooltip> |
|
</v-list-item> --> |
|
<v-list-item @click="columnDeleteDialog = true"> |
|
<x-icon small class="mr-1" color="error">mdi-delete-outline</x-icon> |
|
<span class="caption">Delete</span> |
|
</v-list-item> |
|
</v-list> |
|
</v-menu> |
|
|
|
<v-dialog v-model="columnDeleteDialog" max-width="500" |
|
persistent> |
|
<v-card> |
|
<v-card-title class="grey darken-2 subheading white--text">Confirm</v-card-title> |
|
<v-divider></v-divider> |
|
<v-card-text class="mt-4 title">Do you want to delete <span class="font-weight-bold">'{{ |
|
column.cn |
|
}}'</span> column ? |
|
</v-card-text> |
|
<v-divider></v-divider> |
|
<v-card-actions class="d-flex pa-4"> |
|
<v-spacer></v-spacer> |
|
<v-btn small @click="columnDeleteDialog = false">Cancel</v-btn> |
|
<v-btn small color="error" @click="deleteColumn">Confirm</v-btn> |
|
</v-card-actions> |
|
</v-card> |
|
</v-dialog> |
|
|
|
|
|
<v-menu offset-y v-model="editColumnMenu" content-class="elevation-0" left> |
|
<template v-slot:activator="{on}"> |
|
<span v-on="on"></span> |
|
</template> |
|
<edit-virtual-column |
|
v-if="editColumnMenu" |
|
v-model="editColumnMenu" |
|
:nodes="nodes" |
|
:edit-column="true" |
|
:column="column" |
|
:meta="meta" |
|
v-on="$listeners" |
|
></edit-virtual-column> |
|
</v-menu> |
|
</div> |
|
</template> |
|
<script> |
|
import EditVirtualColumn from "@/components/project/spreadsheet/components/editVirtualColumn"; |
|
|
|
export default { |
|
components: {EditVirtualColumn}, |
|
props: ['column', 'nodes', 'meta', 'isForm'], |
|
name: "virtualHeaderCell", |
|
data: () => ({ |
|
columnDeleteDialog: false, |
|
editColumnMenu: false |
|
}), |
|
computed: { |
|
type() { |
|
if (this.column.bt) return 'bt' |
|
if (this.column.hm) return 'hm' |
|
if (this.column.mm) return 'mm' |
|
}, |
|
childColumn() { |
|
if (this.column.bt) return this.column.bt.cn |
|
if (this.column.hm) return this.column.hm.cn |
|
if (this.column.mm) return this.column.mm.rcn |
|
}, |
|
childTable() { |
|
if (this.column.bt) return this.column.bt.tn |
|
if (this.column.hm) return this.column.hm.tn |
|
if (this.column.mm) return this.column.mm.rtn |
|
}, |
|
parentTable() { |
|
if (this.column.bt) return this.column.bt.rtn |
|
if (this.column.hm) return this.column.hm.rtn |
|
if (this.column.mm) return this.column.mm.tn |
|
}, |
|
parentColumn() { |
|
if (this.column.bt) return this.column.bt.rcn |
|
if (this.column.hm) return this.column.hm.rcn |
|
if (this.column.mm) return this.column.mm.cn |
|
}, |
|
tooltipMsg() { |
|
if (!this.column) return ''; |
|
if (this.column.hm) { |
|
return `'${this.column.hm._rtn}' has many '${this.column.hm._tn}'` |
|
} else if (this.column.mm) { |
|
return `'${this.column.mm._tn}' & '${this.column.mm._rtn}' have <br>many to many relation` |
|
} else if (this.column.bt) { |
|
return `'${this.column.bt._tn}' belongs to '${this.column.bt._rtn}'` |
|
} |
|
} |
|
}, methods: { |
|
async deleteColumn() { |
|
try { |
|
const column = {...this.column, cno: this.column.cn}; |
|
await this.$store.dispatch('sqlMgr/ActSqlOpPlus', [{ |
|
env: this.nodes.env, |
|
dbAlias: this.nodes.dbAlias |
|
}, "xcRelationColumnDelete", { |
|
type: this.type, |
|
childColumn: this.childColumn, |
|
childTable: this.childTable, |
|
parentTable: this.parentTable, |
|
parentColumn: this.parentColumn, |
|
assocTable: this.column.mm && this.column.mm.vtn |
|
}]); |
|
this.$emit('saved'); |
|
this.columnDeleteDialog = false; |
|
} catch (e) { |
|
console.log(e) |
|
} |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
.name { |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
white-space: nowrap; |
|
} |
|
</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/>. |
|
* |
|
*/ |
|
-->
|
|
|