mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 18:18:53 +08:00
91 lines
1.9 KiB
Vue
91 lines
1.9 KiB
Vue
<template>
|
|
<div id="app-info-container">
|
|
<img
|
|
id="app-info-icon"
|
|
:src="require('@/assets/images/info.svg')"
|
|
@click="$modal.show('app-info')"
|
|
/>
|
|
<modal name="app-info" classes="dialog" height="auto" width="400px">
|
|
<div class="dialog-header">
|
|
App info
|
|
<close-icon @click="$modal.hide('app-info')"/>
|
|
</div>
|
|
<div class="dialog-body">
|
|
<div v-for="(item, index) in info" :key="index" class="info-item">
|
|
{{item.name}}
|
|
<div class="divider"/>
|
|
<div class="options">
|
|
<div v-for="(opt, index) in item.info" :key="index">
|
|
{{opt}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</modal>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CloseIcon from '@/components/svg/close'
|
|
|
|
export default {
|
|
name: 'AppDiagnosticInfo',
|
|
components: { CloseIcon },
|
|
data () {
|
|
return {
|
|
info: [
|
|
{
|
|
name: 'sqliteviz version',
|
|
info: [require('../../../package.json').version]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
|
|
async created () {
|
|
const state = this.$store.state
|
|
let result = (await state.db.execute('select sqlite_version()')).values
|
|
this.info.push({
|
|
name: 'SQLite version',
|
|
info: result['sqlite_version()']
|
|
})
|
|
|
|
result = (await state.db.execute('PRAGMA compile_options')).values
|
|
this.info.push({
|
|
name: 'SQLite compile options',
|
|
info: result.compile_options
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
#app-info-icon {
|
|
cursor: pointer;
|
|
}
|
|
#app-info-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-left: 32px;
|
|
}
|
|
.divider {
|
|
height: 1px;
|
|
background-color: var(--color-border);
|
|
margin: 4px 0;
|
|
}
|
|
.options {
|
|
font-family: monospace;
|
|
font-size: 13px;
|
|
margin-left: 8px;
|
|
overflow: auto;
|
|
max-height: 170px;
|
|
}
|
|
.info-item {
|
|
margin-bottom: 32px;
|
|
font-size: 14px;
|
|
}
|
|
.info-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|