mirror of https://github.com/nocodb/nocodb
Pranav C
3 years ago
12 changed files with 250 additions and 27 deletions
@ -0,0 +1,70 @@
|
||||
<template> |
||||
<div class="px-2"> |
||||
<v-chip x-small> |
||||
Clicks : {{ clickCount }} |
||||
</v-chip> |
||||
<v-chip x-small> |
||||
Keystrokes : {{ keystrokeCount }} |
||||
</v-chip> |
||||
<v-chip x-small> |
||||
{{ (timer/ 1000).toFixed(1) }} |
||||
</v-chip> |
||||
<v-icon v-if="!pause" small @click="pause = true"> |
||||
mdi-pause-circle-outline |
||||
</v-icon> |
||||
<v-icon v-else small @click="pause = false"> |
||||
mdi-play-circle-outline |
||||
</v-icon> |
||||
<v-icon small @click="reset"> |
||||
mdi-close-circle-outline |
||||
</v-icon> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'BetterUX', |
||||
data() { |
||||
return { |
||||
pause: false, |
||||
clickCount: 0, |
||||
keystrokeCount: 0, |
||||
timer: 0, |
||||
interval: null |
||||
} |
||||
}, |
||||
created() { |
||||
this.interval = setInterval(() => { if (!this.pause) { this.timer += 100 } }, 100) |
||||
document.addEventListener('click', this.onClick, true) |
||||
document.addEventListener('contextmenu', this.onClick, true) |
||||
document.addEventListener('keypress', this.onKeypress, true) |
||||
}, |
||||
beforeDestroy() { |
||||
clearInterval(this.interval) |
||||
document.removeEventListener('click', this.onClick, true) |
||||
document.removeEventListener('contextmenu', this.onClick, true) |
||||
document.removeEventListener('keypress', this.onKeypress, true) |
||||
}, |
||||
methods: { |
||||
reset() { |
||||
this.clickCount = 0 |
||||
this.keystrokeCount = 0 |
||||
this.timer = 0 |
||||
}, |
||||
onClick() { |
||||
if (!this.pause) { |
||||
this.clickCount++ |
||||
} |
||||
}, |
||||
onKeypress() { |
||||
if (!this.pause) { |
||||
this.keystrokeCount++ |
||||
} |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,113 @@
|
||||
import { NcBuilderUpgraderCtx } from '../BaseApiBuilder'; |
||||
|
||||
export default async function(ctx: NcBuilderUpgraderCtx) { |
||||
try { |
||||
const relations = await ctx.xcMeta.metaList( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_relations' |
||||
); |
||||
|
||||
const duplicates = []; |
||||
|
||||
for (const relation of relations) { |
||||
if (relation.type !== 'real' || duplicates.includes(relation)) continue; |
||||
const duplicateRelIndex = relations.findIndex( |
||||
rel => |
||||
rel !== relation && |
||||
rel.tn === relation.tn && |
||||
rel.rtn === relation.rtn && |
||||
rel.cn === relation.cn && |
||||
rel.rcn === relation.rcn && |
||||
rel.type === 'real' |
||||
); |
||||
|
||||
if (duplicateRelIndex > -1) duplicates.push(relations[duplicateRelIndex]); |
||||
} |
||||
|
||||
// delete relation
|
||||
for (const dupRelation of duplicates) { |
||||
await ctx.xcMeta.metaDelete( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_relations', |
||||
dupRelation.id |
||||
); |
||||
{ |
||||
const tnModel = await ctx.xcMeta.metaGet( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
type: 'table', |
||||
title: dupRelation.tn |
||||
} |
||||
); |
||||
|
||||
const meta = JSON.parse(tnModel.meta); |
||||
|
||||
const duplicateBts = meta.belongsTo.filter( |
||||
bt => |
||||
bt.tn === dupRelation.tn && |
||||
bt.rtn === dupRelation.rtn && |
||||
bt.cn === dupRelation.cn && |
||||
bt.rcn === dupRelation.rcn && |
||||
bt.type === 'real' |
||||
); |
||||
|
||||
if (duplicateBts?.length > 1) { |
||||
meta.belongsTo.splice(meta.belongsTo.indexOf(duplicateBts[1]), 1); |
||||
} |
||||
|
||||
await ctx.xcMeta.metaUpdate( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ meta: JSON.stringify(meta) }, |
||||
{ |
||||
type: 'table', |
||||
title: dupRelation.tn |
||||
} |
||||
); |
||||
} |
||||
{ |
||||
const rtnModel = await ctx.xcMeta.metaGet( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
type: 'table', |
||||
title: dupRelation.rtn |
||||
} |
||||
); |
||||
|
||||
const meta = JSON.parse(rtnModel.meta); |
||||
|
||||
const duplicateHms = meta.hasMany.filter( |
||||
bt => |
||||
bt.tn === dupRelation.tn && |
||||
bt.rtn === dupRelation.rtn && |
||||
bt.cn === dupRelation.cn && |
||||
bt.rcn === dupRelation.rcn && |
||||
bt.type === 'real' |
||||
); |
||||
|
||||
if (duplicateHms?.length > 1) { |
||||
meta.hasMany.splice(meta.hasMany.indexOf(duplicateHms[1]), 1); |
||||
} |
||||
await ctx.xcMeta.metaUpdate( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ meta: JSON.stringify(meta) }, |
||||
{ |
||||
type: 'table', |
||||
title: dupRelation.rtn |
||||
} |
||||
); |
||||
} |
||||
} |
||||
} catch (e) { |
||||
console.log(e); |
||||
} |
||||
} |
Loading…
Reference in new issue