多维表格
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.
 
 
 
 
 
 

255 lines
6.5 KiB

<template>
<div>
<v-container fluid class="wrapper mb-3">
<v-row>
<v-col>
<v-radio-group row hide-details dense v-model="type" class="pt-0 mt-0">
<v-radio value="hm" label="Has Many"></v-radio>
<v-radio disabled value="mm" label="Many To Many"></v-radio>
<v-radio disabled value="oo" label="One To One"></v-radio>
</v-radio-group>
</v-col>
</v-row>
</v-container>
<v-container fluid class="wrapper">
<v-row>
<v-col cols="6">
<v-autocomplete
outlined
class="caption"
hide-details
:loading="isRefTablesLoading"
label="Child Table"
:full-width="false"
v-model="relation.childTable"
:items="refTables"
item-text="_tn"
item-value="tn"
required
dense
></v-autocomplete>
</v-col
>
<v-col cols="6">
<v-text-field
outlined
class="caption"
hide-details
label="Child Column"
:full-width="false"
v-model="relation.childColumn"
required
dense
ref="childColumnRef"
@change="onColumnSelect"
></v-text-field>
</v-col
>
</v-row>
<v-row>
<v-col cols="6">
<v-autocomplete
outlined
class="caption"
hide-details
label="On Update"
:full-width="false"
v-model="relation.onUpdate"
:items="onUpdateDeleteOptions"
required
dense
:disabled="relation.type !== 'real'"
></v-autocomplete>
</v-col>
<v-col cols="6">
<v-autocomplete
outlined
class="caption"
hide-details
label="On Delete"
:full-width="false"
v-model="relation.onDelete"
:items="onUpdateDeleteOptions"
required
dense
:disabled="relation.type !== 'real'"
></v-autocomplete>
</v-col>
</v-row>
<v-row>
<v-col>
<v-checkbox
false-value="real"
true-value="virtual"
label="Virtual Relation"
:full-width="false"
v-model="relation.type"
required
class="mt-0"
dense
></v-checkbox>
</v-col>
</v-row>
</v-container>
</div>
</template>
<script>
export default {
name: "linked-to-another-options",
props: ['nodes', 'column', 'meta'],
data: () => ({
type: 'hm',
refTables: [],
refColumns: [],
relation: {},
isRefTablesLoading: false,
isRefColumnsLoading: false,
onUpdateDeleteOptions: [
"NO ACTION",
"CASCADE",
"RESTRICT",
"SET NULL",
"SET DEFAULT"
],
}),
async created() {
await this.loadTablesList();
this.relation = {
childColumn: `${this.meta.tn}_id`,
childTable: this.nodes.tn,
parentTable: this.column.rtn || "",
parentColumn: this.column.rcn || "",
onDelete: "CASCADE",
onUpdate: "CASCADE",
updateRelation: this.column.rtn ? true : false,
type: 'real'
}
},
methods: {
async loadColumnList() {
this.isRefColumnsLoading = true;
const result = await this.$store.dispatch('sqlMgr/ActSqlOp', [{
env: this.nodes.env,
dbAlias: this.nodes.dbAlias
}, 'columnList', {tn: this.meta.tn}])
const columns = result.data.list;
this.refColumns = JSON.parse(JSON.stringify(columns));
if (this.relation.updateRelation && !this.relationColumnChanged) {
//only first time when editing add defaault value to this field
this.relation.parentColumn = this.column.rcn;
this.relationColumnChanged = true;
} else {
//find pk column and assign to parentColumn
const pkKeyColumns = this.refColumns.filter(el => el.pk);
this.relation.parentColumn = (pkKeyColumns[0] || {}).cn || "";
}
this.onColumnSelect();
this.isRefColumnsLoading = false;
},
async loadTablesList() {
this.isRefTablesLoading = true;
const result = await this.$store.dispatch('sqlMgr/ActSqlOp', [{
env: this.nodes.env,
dbAlias: this.nodes.dbAlias
}, 'tableList']);
this.refTables = result.data.list.map(({tn, _tn}) => ({tn, _tn}))
this.isRefTablesLoading = false;
},
async saveRelation() {
try {
const parentPK = this.meta.columns.find(c => c.pk);
const childTableData = await this.$store.dispatch('sqlMgr/ActSqlOp', [{
env: this.nodes.env,
dbAlias: this.nodes.dbAlias
}, 'tableXcModelGet', {
tn: this.relation.childTable
}]);
const childMeta = JSON.parse(childTableData.meta)
const newChildColumn = {};
Object.assign(newChildColumn, {
cn: this.relation.childColumn,
_cn: this.relation.childColumn,
rqd: false,
pk: false,
ai: false,
cdf: null,
dt: parentPK.dt,
dtxp: parentPK.dtxp,
dtxs: parentPK.dtxs,
un: parentPK.un,
altered: 1
});
const columns = [...childMeta.columns, newChildColumn];
let result = await this.$store.dispatch('sqlMgr/ActSqlOpPlus', [{
env: this.nodes.env,
dbAlias: this.nodes.dbAlias
}, "tableUpdate", {
tn: childMeta.tn,
_tn: childMeta._tn,
originalColumns: childMeta.columns,
columns
}]);
await this.$store.dispatch('sqlMgr/ActSqlOpPlus', [
{
env: this.nodes.env,
dbAlias: this.nodes.dbAlias
},
this.relation.type === 'real' ? "relationCreate" : 'xcVirtualRelationCreate',
{
...this.relation,
parentTable: this.meta.tn,
parentColumn: parentPK.cn,
updateRelation: this.column.rtn ? true : false,
type: 'real'
}
]);
} catch (e) {
console.log(e.message)
}
},
onColumnSelect() {
const col = this.refColumns.find(c => this.relation.parentColumn === c.cn);
this.$emit('onColumnSelect', col)
}
},
}
</script>
<style scoped>
.wrapper {
border: solid 2px #7f828b33;
border-radius: 4px;
}
/deep/ .v-input__append-inner {
margin-top: 4px !important;
}
</style>