2019-08-21 20:39:43 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="data-executor-vue">
|
2020-05-12 22:29:29 +08:00
|
|
|
|
<div style="padding: 0 10px 10px;height: 100%;box-sizing: border-box;">
|
2019-08-21 20:39:43 +08:00
|
|
|
|
<el-card style="margin-bottom: 10px;">
|
2020-05-03 09:21:28 +08:00
|
|
|
|
<pre id="sqlExecutorEditor" style="width: 100%;height: 500px;margin-top: 0;"></pre>
|
2019-08-21 20:39:43 +08:00
|
|
|
|
<div>
|
2019-08-21 23:17:04 +08:00
|
|
|
|
<el-button v-if="sqlExecuting" v-on:click="cancelExecutorSql" type="primary" plain size="small" icon="el-icon-video-pause">取消执行</el-button>
|
2019-09-02 22:47:24 +08:00
|
|
|
|
<el-tooltip v-else effect="dark" content="Ctrl+R、Ctrl+Enter" placement="top">
|
|
|
|
|
|
<el-button v-on:click="doExecutorSql" type="primary" plain size="small" icon="el-icon-video-play">执行</el-button>
|
|
|
|
|
|
</el-tooltip>
|
2020-05-12 22:29:29 +08:00
|
|
|
|
<el-button icon="el-icon-brush" size="small" @click="formatterSql">SQL美化</el-button>
|
2019-09-28 15:25:52 +08:00
|
|
|
|
<el-button v-on:click="addFavorite('')" plain size="small" icon="el-icon-star-off">收藏</el-button>
|
|
|
|
|
|
<el-button v-on:click="loadHistoryAndFavoriteList" plain size="small" icon="el-icon-tickets">收藏及历史</el-button>
|
2020-05-24 13:00:43 +08:00
|
|
|
|
<div style="float: right;">
|
|
|
|
|
|
<el-select v-model="choiceDatasourceGroup" @change="sourceGroupChangeEvents" size="small" filterable placeholder="请先选择分组" style="width: 200px;">
|
|
|
|
|
|
<el-option value="" label="全部分组"></el-option>
|
|
|
|
|
|
<el-option v-for="item in datasourceGroupList" :key="item" :value="item"></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
<el-select v-model="choiceDatasourceId" @change="datasourceChangeEvents" size="small" filterable placeholder="请选择数据源" style="width: 300px;margin-left: 10px;">
|
|
|
|
|
|
<el-option v-for="item in datasourceOptions" :key="item.id" :label="item.name" :value="item.id"></el-option>
|
2019-09-28 15:25:52 +08:00
|
|
|
|
</el-select>
|
2019-08-21 20:39:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
<el-card>
|
2019-09-01 18:41:17 +08:00
|
|
|
|
<div v-if="!!executeError" style="color: #f00;">{{executeError}}</div>
|
|
|
|
|
|
<div v-else-if="executeResultList.length <= 0" v-loading="sqlExecuting">暂无数据</div>
|
2021-05-24 22:42:01 +08:00
|
|
|
|
<div v-else style="position: relative;">
|
|
|
|
|
|
<div style="position: absolute;right: 0;z-index: 1;">
|
|
|
|
|
|
<!-- 复制选中行 -->
|
|
|
|
|
|
<el-dropdown @command="handleCopyCheckLineCommand" v-show="this.choiceResultObj[this.executeShowTable] && this.choiceResultObj[this.executeShowTable].length > 0">
|
|
|
|
|
|
<el-button type="primary" size="small">
|
|
|
|
|
|
复制选中行<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
|
|
|
<el-dropdown-item command="insert">SQL Inserts</el-dropdown-item>
|
|
|
|
|
|
<el-dropdown-item command="update">SQL Updates</el-dropdown-item>
|
|
|
|
|
|
<el-dropdown-item command="json">JSON</el-dropdown-item>
|
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-tabs v-model="executeShowTable">
|
2019-09-01 18:41:17 +08:00
|
|
|
|
<el-tab-pane label="信息" name="table0">
|
2019-09-02 22:47:24 +08:00
|
|
|
|
<pre>{{executeResultInfo}}</pre>
|
2019-09-01 18:41:17 +08:00
|
|
|
|
</el-tab-pane>
|
2021-05-24 22:42:01 +08:00
|
|
|
|
<el-tab-pane :label="'结果'+resultItem.index" :name="resultItem.name" v-for="resultItem in executeResultList" v-if="!!resultItem.index">
|
2019-09-01 18:41:17 +08:00
|
|
|
|
<div v-if="!!resultItem.errMsg" style="color: #f00;">{{resultItem.errMsg}}</div>
|
2021-05-24 22:42:01 +08:00
|
|
|
|
<el-table v-else :data="resultItem.dataList" stripe border style="width: 100%; margin-bottom: 5px;" class="execute-result-table" max-height="600"
|
|
|
|
|
|
@selection-change="handleSelectionChange">
|
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
|
<el-table-column type="index" width="50"></el-table-column>
|
2019-09-01 18:41:17 +08:00
|
|
|
|
<el-table-column v-for="item in resultItem.dataCols" :prop="item.prop" :label="item.prop" :width="item.width">
|
|
|
|
|
|
<template slot-scope="scope">
|
2020-05-08 22:32:54 +08:00
|
|
|
|
<textarea readonly :value="scope.row[item.prop]" class="el-textarea__inner" rows="1"></textarea>
|
2019-09-01 18:41:17 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
</el-tabs>
|
2019-08-21 20:39:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</div>
|
2019-08-21 23:17:04 +08:00
|
|
|
|
<el-drawer title="收藏及历史" :visible.sync="historyDrawerVisible" size="50%" class="data-executor-vue-out">
|
|
|
|
|
|
<div style="padding: 10px;">
|
|
|
|
|
|
<el-tabs value="favorite">
|
|
|
|
|
|
<el-tab-pane label="我的收藏" name="favorite">
|
2019-08-28 22:19:12 +08:00
|
|
|
|
<el-table :data="myFavoriteList" stripe border style="width: 100%; margin-bottom: 5px;" v-infinite-scroll>
|
2019-09-02 22:47:24 +08:00
|
|
|
|
<el-table-column prop="content" label="SQL">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<pre style="margin: 0;">{{scope.row.content}}</pre>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2020-05-23 12:21:23 +08:00
|
|
|
|
<el-table-column label="操作" width="160px">
|
2019-08-21 23:17:04 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-button size="mini" type="primary" v-on:click="inputFavoriteSql(scope.row.content)">输入</el-button>
|
2020-05-23 12:21:23 +08:00
|
|
|
|
<el-button size="mini" type="danger" v-on:click="delFavorite(scope.row)" style="margin-left: 10px;">删除</el-button>
|
2019-08-21 23:17:04 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane label="历史记录" name="history">
|
|
|
|
|
|
<el-table :data="myHistoryListList" stripe border style="width: 100%; margin-bottom: 5px;">
|
2020-05-23 12:21:23 +08:00
|
|
|
|
<el-table-column prop="content" label="SQL">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<pre style="margin: 0;">{{scope.row.content}}</pre>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="操作" width="160px">
|
2019-08-21 23:17:04 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-button size="mini" type="primary" v-on:click="inputFavoriteSql(scope.row.content)">输入</el-button>
|
2020-05-23 12:21:23 +08:00
|
|
|
|
<el-button size="mini" type="success" v-on:click="addFavorite(scope.row.content)" style="margin-left: 10px;">收藏</el-button>
|
2019-08-21 23:17:04 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
</el-tabs>
|
2019-08-21 20:39:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</el-drawer>
|
2021-05-29 22:18:15 +08:00
|
|
|
|
<!--选择导出为update的条件列弹窗-->
|
|
|
|
|
|
<el-dialog :visible.sync="exportConditionVisible" width="500px" title="选择更新语句条件">
|
|
|
|
|
|
<div>
|
|
|
|
|
|
更新条件列:
|
|
|
|
|
|
<el-select v-model="conditionDataColsChoice" multiple placeholder="请选择" style="width: 370px;">
|
|
|
|
|
|
<el-option v-for="item in conditionDataCols" :key="item.prop" :label="item.prop" :value="item.prop"></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
|
|
<el-button @click="exportConditionVisible = false">取 消</el-button>
|
|
|
|
|
|
<el-button type="primary" @click="doCopyCheckLineUpdate">确 定</el-button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</el-dialog>
|
2020-05-12 22:29:29 +08:00
|
|
|
|
<span id="widthCalculate" style="visibility: hidden; white-space: nowrap;position: fixed;"></span>
|
2019-08-21 20:39:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import '../../common/lib/ace/ace'
|
|
|
|
|
|
import '../../common/lib/ace/theme-monokai'
|
|
|
|
|
|
import '../../common/lib/ace/mode-sql'
|
|
|
|
|
|
import '../../common/lib/ace/ext-language_tools'
|
|
|
|
|
|
import '../../common/lib/ace/snippets/sql'
|
2021-05-24 22:42:01 +08:00
|
|
|
|
import copyFormatter from './copy/index'
|
2020-05-12 22:29:29 +08:00
|
|
|
|
import sqlFormatter from "sql-formatter"
|
2020-05-23 12:21:23 +08:00
|
|
|
|
import datasourceApi from '../../common/api/datasource'
|
|
|
|
|
|
|
2019-08-21 20:39:43 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
datasourceList: [],
|
|
|
|
|
|
choiceDatasourceId: "",
|
2020-05-24 13:00:43 +08:00
|
|
|
|
datasourceOptions: [],
|
|
|
|
|
|
datasourceGroupList: [],
|
|
|
|
|
|
choiceDatasourceGroup: "",
|
|
|
|
|
|
|
2019-08-21 20:39:43 +08:00
|
|
|
|
databaseList: [],
|
|
|
|
|
|
choiceDatabase: "",
|
2021-05-24 22:42:01 +08:00
|
|
|
|
editorDbProduct: "",
|
2019-08-24 23:13:43 +08:00
|
|
|
|
editorDbInfo: [],
|
|
|
|
|
|
editorDbTableInfo: {},
|
|
|
|
|
|
editorColumnInfo: {},
|
2019-08-21 20:39:43 +08:00
|
|
|
|
|
2019-08-21 23:17:04 +08:00
|
|
|
|
sqlExecuting: false,
|
2019-08-21 20:39:43 +08:00
|
|
|
|
executeResultList: [],
|
2019-09-01 18:41:17 +08:00
|
|
|
|
executeResultInfo: "",
|
2019-09-02 22:47:24 +08:00
|
|
|
|
executeShowTable: "table1",
|
2019-08-21 20:39:43 +08:00
|
|
|
|
sqlExecutorEditor: {},
|
|
|
|
|
|
nowExecutorId: 1,
|
|
|
|
|
|
executeError: "",
|
2019-08-21 23:17:04 +08:00
|
|
|
|
// 收藏及历史
|
2019-08-21 20:39:43 +08:00
|
|
|
|
historyDrawerVisible: false,
|
2019-08-21 23:17:04 +08:00
|
|
|
|
myFavoriteList: [],
|
|
|
|
|
|
myHistoryListList: [],
|
2021-05-24 22:42:01 +08:00
|
|
|
|
// 选择复制
|
|
|
|
|
|
choiceResultObj: {},
|
2021-05-29 22:18:15 +08:00
|
|
|
|
//
|
|
|
|
|
|
exportConditionVisible: false,
|
|
|
|
|
|
conditionDataCols: [],
|
|
|
|
|
|
conditionDataColsChoice: [],
|
2019-08-21 20:39:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted: function () {
|
|
|
|
|
|
this.loadDatasourceList();
|
2019-08-24 23:13:43 +08:00
|
|
|
|
// 下面两行先后顺序不能改
|
|
|
|
|
|
this.addEditorCompleter();
|
2020-05-11 22:37:30 +08:00
|
|
|
|
this.sqlExecutorEditor = this.initAceEditor("sqlExecutorEditor", 15);
|
2020-05-16 08:54:11 +08:00
|
|
|
|
this.sqlExecutorEditor.setFontSize(16);
|
2020-05-12 22:29:29 +08:00
|
|
|
|
let that = this;
|
2020-05-11 22:37:30 +08:00
|
|
|
|
this.sqlExecutorEditor.commands.addCommand({
|
2019-09-02 22:47:24 +08:00
|
|
|
|
name: "execute-sql",
|
|
|
|
|
|
bindKey: {win: "Ctrl-R|Ctrl-Shift-R|Ctrl-Enter", mac: "Command-R|Command-Shift-R|Command-Enter"},
|
|
|
|
|
|
exec: function (editor) {
|
2020-05-12 22:29:29 +08:00
|
|
|
|
that.doExecutorSql();
|
2019-09-02 22:47:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
2019-08-21 20:39:43 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
initAceEditor(editor, minLines) {
|
|
|
|
|
|
return ace.edit(editor, {
|
|
|
|
|
|
theme: "ace/theme/monokai",
|
|
|
|
|
|
mode: "ace/mode/sql",
|
|
|
|
|
|
wrap: true,
|
|
|
|
|
|
autoScrollEditorIntoView: true,
|
|
|
|
|
|
enableBasicAutocompletion: true,
|
|
|
|
|
|
enableSnippets: true,
|
|
|
|
|
|
enableLiveAutocompletion: true,
|
|
|
|
|
|
minLines: minLines,
|
2020-05-16 08:54:11 +08:00
|
|
|
|
maxLines: 40,
|
2019-08-21 20:39:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
cancelExecutorSql() {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.executeSqlCancel({executeId: this.nowExecutorId}).then(() => {
|
|
|
|
|
|
this.$message.success("取消成功");
|
2019-08-21 20:39:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
2019-08-21 23:17:04 +08:00
|
|
|
|
loadHistoryAndFavoriteList() {
|
|
|
|
|
|
this.historyDrawerVisible = true;
|
|
|
|
|
|
this.loadHistoryList();
|
|
|
|
|
|
this.loadFavoriteList();
|
|
|
|
|
|
},
|
|
|
|
|
|
loadFavoriteList() {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.favoriteList({sourceId: this.choiceDatasourceId}).then(json => {
|
|
|
|
|
|
this.myFavoriteList = json.data || [];
|
2019-08-21 23:17:04 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
loadHistoryList() {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.historyList({sourceId: this.choiceDatasourceId}).then(json => {
|
|
|
|
|
|
this.myHistoryListList = json.data || [];
|
2019-08-21 23:17:04 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
addFavorite(sqlValue) {
|
|
|
|
|
|
if (!sqlValue) {
|
|
|
|
|
|
sqlValue = this.sqlExecutorEditor.getSelectedText();
|
|
|
|
|
|
if (!sqlValue) {
|
|
|
|
|
|
sqlValue = this.sqlExecutorEditor.getValue();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-05-23 12:21:23 +08:00
|
|
|
|
let param = {name: '我的收藏', content: sqlValue, datasourceId: this.choiceDatasourceId};
|
|
|
|
|
|
datasourceApi.updateFavorite(param).then(() => {
|
|
|
|
|
|
this.$message.success("收藏成功");
|
|
|
|
|
|
this.loadFavoriteList();
|
2019-08-21 23:17:04 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
delFavorite(row) {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.updateFavorite({id: row.id, yn: 0}).then(() => {
|
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
|
this.loadFavoriteList();
|
2019-08-21 23:17:04 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
inputFavoriteSql(content) {
|
2019-08-24 23:13:43 +08:00
|
|
|
|
this.sqlExecutorEditor.setValue(content, 1);
|
2019-08-21 23:17:04 +08:00
|
|
|
|
this.historyDrawerVisible = false;
|
|
|
|
|
|
},
|
2020-05-12 22:29:29 +08:00
|
|
|
|
formatterSql() {
|
|
|
|
|
|
let dataSql = this.sqlExecutorEditor.getSelectedText();
|
|
|
|
|
|
if (!!dataSql) {
|
|
|
|
|
|
let range = this.sqlExecutorEditor.getSelectionRange();
|
|
|
|
|
|
this.sqlExecutorEditor.remove(range);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
dataSql = this.sqlExecutorEditor.getValue();
|
|
|
|
|
|
this.sqlExecutorEditor.setValue('', 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!!dataSql) {
|
|
|
|
|
|
dataSql = sqlFormatter.format(dataSql);
|
|
|
|
|
|
this.sqlExecutorEditor.insert(dataSql);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2019-08-21 20:39:43 +08:00
|
|
|
|
doExecutorSql() {
|
|
|
|
|
|
if (!this.choiceDatasourceId) {
|
2020-05-12 22:29:29 +08:00
|
|
|
|
this.$message.error("请先选择数据源");
|
2019-08-21 20:39:43 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2020-05-12 22:29:29 +08:00
|
|
|
|
this.executeError = "";
|
|
|
|
|
|
this.executeUseTime = "";
|
|
|
|
|
|
this.executeResultList = [];
|
2019-08-21 20:39:43 +08:00
|
|
|
|
|
|
|
|
|
|
this.nowExecutorId = (new Date()).getTime() + Math.ceil(Math.random() * 1000);
|
2019-08-21 23:17:04 +08:00
|
|
|
|
var sqlValue = this.sqlExecutorEditor.getSelectedText();
|
|
|
|
|
|
if (!sqlValue) {
|
|
|
|
|
|
sqlValue = this.sqlExecutorEditor.getValue();
|
|
|
|
|
|
}
|
|
|
|
|
|
this.sqlExecuting = true;
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.queryExecuteSql({
|
2019-08-21 20:39:43 +08:00
|
|
|
|
sourceId: this.choiceDatasourceId,
|
|
|
|
|
|
executeId: this.nowExecutorId,
|
2019-08-21 23:17:04 +08:00
|
|
|
|
sql: sqlValue,
|
2019-08-21 20:39:43 +08:00
|
|
|
|
params: '',
|
2020-05-23 12:21:23 +08:00
|
|
|
|
}).then(json => {
|
|
|
|
|
|
this.sqlExecuting = false;
|
2019-08-21 20:39:43 +08:00
|
|
|
|
if (json.errCode != 200) {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
this.executeError = json.errMsg;
|
2019-08-21 20:39:43 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2019-09-01 18:41:17 +08:00
|
|
|
|
var resultList = json.data || [];
|
|
|
|
|
|
var executeResultList = [];
|
2019-09-02 22:47:24 +08:00
|
|
|
|
var executeResultInfo = "", itemIndex = 1;
|
2019-09-01 18:41:17 +08:00
|
|
|
|
for (var i = 0; i < resultList.length; i++) {
|
|
|
|
|
|
var objItem = JSON.parse(resultList[i]);
|
2020-05-23 12:21:23 +08:00
|
|
|
|
executeResultInfo += this.getExecuteInfoStr(objItem);
|
|
|
|
|
|
var resultItem = this.dealExecuteResult(objItem);
|
2019-09-02 22:47:24 +08:00
|
|
|
|
if (resultItem.updateCount < 0) {
|
|
|
|
|
|
resultItem.index = itemIndex;
|
2021-05-24 22:42:01 +08:00
|
|
|
|
resultItem.name = 'table' + itemIndex;
|
2019-09-02 22:47:24 +08:00
|
|
|
|
itemIndex++;
|
|
|
|
|
|
}
|
2019-09-01 18:41:17 +08:00
|
|
|
|
executeResultList.push(resultItem);
|
2019-08-21 20:39:43 +08:00
|
|
|
|
}
|
2020-05-23 12:21:23 +08:00
|
|
|
|
this.executeShowTable = (itemIndex === 1) ? "table0" : "table1";
|
|
|
|
|
|
this.executeResultInfo = executeResultInfo;
|
|
|
|
|
|
this.executeResultList = executeResultList;
|
2019-08-21 20:39:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
loadDatasourceList() {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.datasourceList({}).then(json => {
|
|
|
|
|
|
this.datasourceList = json.data || [];
|
2020-05-24 13:00:43 +08:00
|
|
|
|
this.datasourceOptions = this.datasourceList;
|
|
|
|
|
|
let datasourceGroupList = [];
|
|
|
|
|
|
this.datasourceList.filter(item => !!item.groupName).forEach(item => datasourceGroupList.push(item.groupName || ''));
|
|
|
|
|
|
this.datasourceGroupList = Array.from(new Set(datasourceGroupList));
|
2020-05-23 12:21:23 +08:00
|
|
|
|
if (this.datasourceList.length > 0) {
|
|
|
|
|
|
this.choiceDatasourceId = this.datasourceList[0].id;
|
|
|
|
|
|
this.loadEditorData();
|
2019-08-21 23:17:04 +08:00
|
|
|
|
}
|
2019-08-21 20:39:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
2019-08-24 23:13:43 +08:00
|
|
|
|
loadEditorData() {
|
2020-05-23 12:21:23 +08:00
|
|
|
|
datasourceApi.getEditorData({sourceId: this.choiceDatasourceId}).then(json => {
|
|
|
|
|
|
let data = json.data || {};
|
|
|
|
|
|
this.editorDbInfo = data.db || [];
|
2021-05-24 22:42:01 +08:00
|
|
|
|
this.editorDbProduct = data.product || '';
|
2020-05-23 12:21:23 +08:00
|
|
|
|
this.editorDbTableInfo = data.table || {};
|
|
|
|
|
|
this.editorColumnInfo = data.column || {};
|
2019-08-24 23:13:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
2020-05-24 13:00:43 +08:00
|
|
|
|
sourceGroupChangeEvents() {
|
|
|
|
|
|
let datasourceOptions = [];
|
|
|
|
|
|
for (let i = 0; i < this.datasourceList.length; i++) {
|
|
|
|
|
|
let item = this.datasourceList[i];
|
|
|
|
|
|
if (!this.choiceDatasourceGroup || this.choiceDatasourceGroup == item.groupName) {
|
|
|
|
|
|
datasourceOptions.push(item);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.datasourceOptions = datasourceOptions;
|
|
|
|
|
|
},
|
2019-08-21 20:39:43 +08:00
|
|
|
|
datasourceChangeEvents() {
|
2019-08-24 23:13:43 +08:00
|
|
|
|
this.loadEditorData();
|
2019-08-21 20:39:43 +08:00
|
|
|
|
},
|
|
|
|
|
|
databaseChangeEvents() {
|
|
|
|
|
|
|
2019-09-01 18:41:17 +08:00
|
|
|
|
},
|
|
|
|
|
|
getExecuteInfoStr(resultData) {
|
|
|
|
|
|
var resultStr = resultData.sql;
|
2019-09-02 22:47:24 +08:00
|
|
|
|
resultStr += "\n> 状态:" + ((!!resultData.errMsg) ? "ERROR" : "OK");
|
|
|
|
|
|
if (resultData.updateCount >= 0) {
|
|
|
|
|
|
resultStr += "\n> 影响行数:" + resultData.updateCount;
|
|
|
|
|
|
}
|
|
|
|
|
|
resultStr += "\n> 耗时:" + (resultData.useTime || 0) / 1000 + "s";
|
2019-09-01 18:41:17 +08:00
|
|
|
|
resultStr += "\n\n";
|
|
|
|
|
|
return resultStr;
|
|
|
|
|
|
},
|
|
|
|
|
|
dealExecuteResult(resultData) {
|
|
|
|
|
|
var dataList = resultData.result || [];
|
|
|
|
|
|
var executeResultCols = [];
|
|
|
|
|
|
if (dataList.length > 0) {
|
|
|
|
|
|
var propData = dataList[0];
|
|
|
|
|
|
for (var key in propData) {
|
|
|
|
|
|
// 动态计算宽度~自己想的一个方法,666
|
|
|
|
|
|
document.getElementById("widthCalculate").innerText = key;
|
|
|
|
|
|
var width1 = document.getElementById("widthCalculate").offsetWidth;
|
|
|
|
|
|
document.getElementById("widthCalculate").innerText = propData[key];
|
|
|
|
|
|
var width2 = document.getElementById("widthCalculate").offsetWidth;
|
|
|
|
|
|
var width = (width1 > width2) ? width1 : width2;
|
2019-10-06 21:57:20 +08:00
|
|
|
|
width = (width < 50) ? 50 : width;
|
2019-09-01 18:41:17 +08:00
|
|
|
|
width = (width > 200) ? 200 : width;
|
2019-10-06 21:57:20 +08:00
|
|
|
|
executeResultCols.push({prop: key, width: width + 25});
|
2019-09-01 18:41:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
var resultObj = {};
|
|
|
|
|
|
resultObj.dataList = dataList;
|
|
|
|
|
|
resultObj.dataCols = executeResultCols;
|
|
|
|
|
|
resultObj.useTime = resultData.useTime || 0;
|
|
|
|
|
|
resultObj.errMsg = resultData.errMsg || "";
|
2019-09-02 22:47:24 +08:00
|
|
|
|
resultObj.updateCount = resultData.updateCount;
|
2019-09-01 18:41:17 +08:00
|
|
|
|
return resultObj;
|
2019-08-21 20:39:43 +08:00
|
|
|
|
},
|
2019-08-24 23:13:43 +08:00
|
|
|
|
addEditorCompleter() {
|
2020-05-12 22:29:29 +08:00
|
|
|
|
let that = this;
|
2019-08-24 23:13:43 +08:00
|
|
|
|
var languageTools = ace.require("ace/ext/language_tools");
|
|
|
|
|
|
languageTools.addCompleter({
|
|
|
|
|
|
needDestory: true, // 一定得加上这个参数~不然页面生命周期内页面的切换,编辑器会有多个相同的completer
|
|
|
|
|
|
getCompletions: function (editor, session, pos, prefix, callback) {
|
|
|
|
|
|
var isFound = false;
|
|
|
|
|
|
var callbackArr = [];
|
|
|
|
|
|
var lineStr = session.getLine(pos.row).substring(0, pos.column - 1);
|
|
|
|
|
|
if (lineStr.endsWith("from ") || lineStr.endsWith("join ")) {
|
|
|
|
|
|
// 库
|
2020-05-12 22:29:29 +08:00
|
|
|
|
for (var i = 0; i < that.editorDbInfo.length; i++) {
|
|
|
|
|
|
callbackArr.push({caption: that.editorDbInfo[i].dbName, snippet: that.editorDbInfo[i].dbName, meta: "database", type: "snippet", score : 1000});
|
2019-08-24 23:13:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
// 所有表
|
2020-05-12 22:29:29 +08:00
|
|
|
|
for (var key in that.editorDbTableInfo) {
|
|
|
|
|
|
var tableInfo = that.editorDbTableInfo[key];
|
2019-08-24 23:13:43 +08:00
|
|
|
|
for (var i = 0; i < tableInfo.length; i++) {
|
|
|
|
|
|
var caption = (!!tableInfo[i].tableComment) ? tableInfo[i].tableName + "-" + tableInfo[i].tableComment : tableInfo[i].tableName;
|
|
|
|
|
|
callbackArr.push({caption: caption, snippet: tableInfo[i].tableName, meta: "table", type: "snippet", score : 1000});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
callback(null, callbackArr);
|
|
|
|
|
|
} else if (lineStr.endsWith(".")) {
|
|
|
|
|
|
// 匹配 库名. 搜索表名
|
2020-05-12 22:29:29 +08:00
|
|
|
|
for (var i = 0; i < that.editorDbInfo.length; i++) {
|
|
|
|
|
|
if (lineStr.endsWith(that.editorDbInfo[i].dbName + ".")) {
|
|
|
|
|
|
var tableInfo = that.editorDbTableInfo[that.editorDbInfo[i].dbName];
|
2019-08-24 23:13:43 +08:00
|
|
|
|
if (!!tableInfo) {
|
2019-08-27 22:53:41 +08:00
|
|
|
|
for (var j = 0; j < tableInfo.length; j++) {
|
|
|
|
|
|
var caption = (!!tableInfo[j].tableComment) ? tableInfo[j].tableName + "-" + tableInfo[j].tableComment : tableInfo[j].tableName;
|
|
|
|
|
|
callbackArr.push({caption: caption, snippet: tableInfo[j].tableName, meta: "table", type: "snippet", score : 1000});
|
2019-08-24 23:13:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
isFound = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// 未找到,匹配 表名. 搜索字段名
|
|
|
|
|
|
if (!isFound) {
|
2020-05-12 22:29:29 +08:00
|
|
|
|
for (var key in that.editorColumnInfo) {
|
2019-08-24 23:13:43 +08:00
|
|
|
|
if (!lineStr.endsWith(key + ".")) {
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2020-05-12 22:29:29 +08:00
|
|
|
|
var columnInfo = that.editorColumnInfo[key];
|
2019-08-24 23:13:43 +08:00
|
|
|
|
if (!!columnInfo) {
|
|
|
|
|
|
for (var i = 0; i < columnInfo.length; i++) {
|
|
|
|
|
|
var caption = (!!columnInfo[i].description) ? columnInfo[i].name + "-" + columnInfo[i].description : columnInfo[i].name;
|
|
|
|
|
|
callbackArr.push({caption: caption, snippet: columnInfo[i].name, meta: "column", type: "snippet", score : 1000});
|
|
|
|
|
|
}
|
|
|
|
|
|
isFound = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
callback(null, callbackArr);
|
|
|
|
|
|
} else if (lineStr.endsWith("select ") || lineStr.endsWith("where ") || lineStr.endsWith("and ")) {
|
|
|
|
|
|
var queryText = "";
|
|
|
|
|
|
// 往前加
|
|
|
|
|
|
for (var i = pos.row; i >= 0; i--) {
|
|
|
|
|
|
var tempLine = session.getLine(i);
|
|
|
|
|
|
queryText = tempLine + " " + queryText;
|
|
|
|
|
|
if (tempLine.indexOf(";") >= 0) {
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// 往后加
|
|
|
|
|
|
for (var i = pos.row + 1; i < session.getLength(); i++) {
|
|
|
|
|
|
var tempLine = session.getLine(i);
|
|
|
|
|
|
queryText = queryText + " " + tempLine;
|
|
|
|
|
|
if (tempLine.indexOf(";") >= 0) {
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// 所有表,找下面的字段列表
|
2020-05-12 22:29:29 +08:00
|
|
|
|
for (var key in that.editorDbTableInfo) {
|
|
|
|
|
|
var tableInfo = that.editorDbTableInfo[key];
|
2019-08-24 23:13:43 +08:00
|
|
|
|
for (var i = 0; i < tableInfo.length; i++) {
|
|
|
|
|
|
if (queryText.indexOf(tableInfo[i].tableName) < 0) {
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2020-05-12 22:29:29 +08:00
|
|
|
|
var columnInfo = that.editorColumnInfo[tableInfo[i].tableName];
|
2019-08-24 23:13:43 +08:00
|
|
|
|
if (!!columnInfo) {
|
2019-08-27 22:53:41 +08:00
|
|
|
|
for (var j = 0; j < columnInfo.length; j++) {
|
|
|
|
|
|
var caption = (!!columnInfo[j].description) ? columnInfo[j].name + "-" + columnInfo[j].description : columnInfo[j].name;
|
|
|
|
|
|
callbackArr.push({caption: caption, snippet: columnInfo[j].name, meta: "column", type: "snippet", score : 1000});
|
2019-08-24 23:13:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
isFound = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
callback(null, callbackArr);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2021-05-24 22:42:01 +08:00
|
|
|
|
},
|
|
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
|
|
this.$set(this.choiceResultObj, this.executeShowTable, val);
|
|
|
|
|
|
},
|
2021-05-29 22:18:15 +08:00
|
|
|
|
doCopyCheckLineUpdate() {
|
|
|
|
|
|
let choiceData = this.choiceResultObj[this.executeShowTable] || [];
|
|
|
|
|
|
if (choiceData.length > 0) {
|
|
|
|
|
|
let dataCols = this.executeResultList.find(item => item.name === this.executeShowTable).dataCols;
|
|
|
|
|
|
let copyData = copyFormatter.format('update', this.editorDbProduct, dataCols, choiceData, this.conditionDataColsChoice);
|
|
|
|
|
|
this.conditionDataColsChoice = [];
|
|
|
|
|
|
this.exportConditionVisible = false;
|
|
|
|
|
|
this.$copyText(copyData).then(
|
|
|
|
|
|
res => this.$message.success("内容已复制到剪切板!"),
|
|
|
|
|
|
err => this.$message.error("抱歉,复制失败!")
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2021-05-24 22:42:01 +08:00
|
|
|
|
handleCopyCheckLineCommand(type) {
|
|
|
|
|
|
let choiceData = this.choiceResultObj[this.executeShowTable] || [];
|
|
|
|
|
|
if (choiceData.length > 0) {
|
|
|
|
|
|
let dataCols = this.executeResultList.find(item => item.name === this.executeShowTable).dataCols;
|
2021-05-29 22:18:15 +08:00
|
|
|
|
if (type === 'update') {
|
|
|
|
|
|
// 选择更新的条件列
|
|
|
|
|
|
this.conditionDataCols = dataCols;
|
|
|
|
|
|
this.exportConditionVisible = true;
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2021-05-24 22:42:01 +08:00
|
|
|
|
let copyData = copyFormatter.format(type, this.editorDbProduct, dataCols, choiceData);
|
|
|
|
|
|
this.$copyText(copyData).then(
|
|
|
|
|
|
res => this.$message.success("内容已复制到剪切板!"),
|
|
|
|
|
|
err => this.$message.error("抱歉,复制失败!")
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-08-21 20:39:43 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
.data-executor-vue .ace-monokai .ace_print-margin{
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.data-executor-vue .el-card__body{
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
}
|
2019-08-21 23:17:04 +08:00
|
|
|
|
.data-executor-vue .el-table td, .el-table th{
|
|
|
|
|
|
padding: 6px 0;
|
|
|
|
|
|
}
|
2019-08-27 23:21:58 +08:00
|
|
|
|
.data-executor-vue .execute-result-table .el-input__inner{
|
2019-08-27 22:53:41 +08:00
|
|
|
|
height: 25px;
|
|
|
|
|
|
line-height: 25px;
|
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
|
}
|
2019-09-28 15:25:52 +08:00
|
|
|
|
.data-executor-vue .execute-result-table .el-textarea__inner{
|
2020-05-08 22:32:54 +08:00
|
|
|
|
height: 27px;
|
|
|
|
|
|
min-height: 27px;
|
2019-09-28 15:25:52 +08:00
|
|
|
|
line-height: 25px;
|
|
|
|
|
|
padding: 0 5px;
|
2020-05-08 22:32:54 +08:00
|
|
|
|
resize: none;
|
2019-09-28 15:25:52 +08:00
|
|
|
|
}
|
2019-08-28 22:19:12 +08:00
|
|
|
|
.data-executor-vue .execute-use-time{
|
|
|
|
|
|
font-size: 12px;margin-right: 10px;
|
|
|
|
|
|
}
|
2019-08-21 23:17:04 +08:00
|
|
|
|
.data-executor-vue-out .el-tabs__nav-scroll{
|
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.data-executor-vue-out .el-button+.el-button{
|
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.data-executor-vue-out .el-table__body-wrapper{
|
|
|
|
|
|
height: calc(100vh - 180px);
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
2019-08-21 20:39:43 +08:00
|
|
|
|
</style>
|