mirror of https://github.com/Fabio286/antares.git
feat: approximate totals in table tata tab
This commit is contained in:
parent
e954f04828
commit
e95d29c7c3
|
@ -17,7 +17,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="workspace-query-info">
|
<div class="workspace-query-info">
|
||||||
<div v-if="resultsCount">
|
<div v-if="resultsCount">
|
||||||
{{ $t('word.results') }}: <b>{{ resultsCount }}</b>
|
{{ $t('word.results') }}: <b>{{ resultsCount.toLocaleString() }}</b>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="affectedCount">
|
<div v-if="affectedCount">
|
||||||
{{ $t('message.affectedRows') }}: <b>{{ affectedCount }}</b>
|
{{ $t('message.affectedRows') }}: <b>{{ affectedCount }}</b>
|
||||||
|
|
|
@ -42,7 +42,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="workspace-query-info">
|
<div class="workspace-query-info">
|
||||||
<div v-if="results.length && results[0].rows">
|
<div v-if="results.length && results[0].rows">
|
||||||
{{ $t('word.results') }}: <b>{{ results[0].rows.length }}</b>
|
{{ $t('word.results') }}: <b>{{ results[0].rows.length.toLocaleString() }}</b>
|
||||||
|
</div>
|
||||||
|
<div v-if="results.length && results[0].rows && results[0].rows.length < tableInfo.rows">
|
||||||
|
{{ $t('word.total') }}: <b>{{ tableInfo.rows.toLocaleString() }}</b> <small>({{ $t('word.approximately') }})</small>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="workspace.breadcrumbs.database">
|
<div v-if="workspace.breadcrumbs.database">
|
||||||
{{ $t('word.schema') }}: <b>{{ workspace.breadcrumbs.database }}</b>
|
{{ $t('word.schema') }}: <b>{{ workspace.breadcrumbs.database }}</b>
|
||||||
|
@ -117,6 +120,9 @@ export default {
|
||||||
},
|
},
|
||||||
keyUsage () {
|
keyUsage () {
|
||||||
return this.results.length ? this.results[0].keys : [];
|
return this.results.length ? this.results[0].keys : [];
|
||||||
|
},
|
||||||
|
tableInfo () {
|
||||||
|
return this.workspace.structure.find(db => db.name === this.schema).tables.find(table => table.name === this.table);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
|
@ -55,7 +55,10 @@ module.exports = {
|
||||||
order: 'Order',
|
order: 'Order',
|
||||||
expression: 'Expression',
|
expression: 'Expression',
|
||||||
autoIncrement: 'Auto Increment',
|
autoIncrement: 'Auto Increment',
|
||||||
engine: 'Engine'
|
engine: 'Engine',
|
||||||
|
field: 'Field | Fields',
|
||||||
|
approximately: 'Approximately',
|
||||||
|
total: 'Total'
|
||||||
},
|
},
|
||||||
message: {
|
message: {
|
||||||
appWelcome: 'Welcome to Antares SQL Client!',
|
appWelcome: 'Welcome to Antares SQL Client!',
|
||||||
|
|
Loading…
Reference in New Issue