完善配置界面

This commit is contained in:
fofolee
2022-04-02 10:18:13 +08:00
parent 3b87dce4fa
commit 4b172afd27
2 changed files with 318 additions and 129 deletions

View File

@@ -0,0 +1,258 @@
<template>
<div class="wrapper" :style="isCommandActivated ? '' : 'color:#9e9e9ea6'">
<div>
<!-- 开关 -->
<div class="absolute" style="z-index: 1; left: 20px; bottom: 16px">
<q-toggle
v-model="isCommandActivated"
checked-icon="flash_on"
color="orange-6"
@click="toggleCommandActivated"
/>
</div>
<!-- 选项按钮 -->
<div class="absolute" style="z-index: 1; right: 16px; top: 16px">
<q-btn
flat
round
color="green"
icon="play_arrow"
v-show="canCommandRun"
@click="runCommand"
><q-tooltip anchor="top middle" self="center middle">
运行
</q-tooltip></q-btn
>
<q-btn flat round color="primary" icon="share">
<q-tooltip anchor="top middle" self="center middle"> 导出 </q-tooltip>
<q-menu>
<q-list style="min-width: 100px">
<q-item clickable v-close-popup @click="exportCommandFile">
<q-item-section>导出</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="exportCommandRaw">
<q-item-section>复制到剪贴板</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
<q-btn flat round color="red" icon="close" @click="removeCommand"
><q-tooltip anchor="top middle" self="center middle">
删除
</q-tooltip></q-btn
>
</div>
<q-card v-ripple>
<q-card-section>
<!-- logo -->
<div class="row">
<q-img width="48px" :src="quickcommand.features.icon" />
</div>
<!-- 名称 -->
<div class="row justify-end">
<div class="text-h6 ellipsis">
{{ quickcommand.features.explain }}
</div>
</div>
<!-- 匹配模式 -->
<div class="row justify-end q-gutter-xs">
<div class="scrollArea">
<span v-for="cmd in quickcommand.features.cmds" :key="cmd">
<span v-if="typeof cmd === 'string'">
<q-badge rounded color="teal"
><q-icon class="q-mr-xs" name="font_download" />{{
cmd.length > 10 ? cmd.slice(0, 10) + "..." : cmd
}}</q-badge
>
<q-tooltip>
<div class="text-subtitle2">
{{ cmd }}
</div>
</q-tooltip>
</span>
<span v-else-if="cmd.type === 'window' && cmd.match">
<q-badge rounded color="indigo"
><q-icon class="q-mr-xs" name="widgets" />{{
cmd.match.app[0].length > 10
? cmd.match.app[0].slice(0, 10) + "..."
: cmd.match.app[0]
}}
</q-badge>
<q-tooltip>
<div
class="text-subtitle2"
v-for="app in cmd.match.app"
:key="app"
>
{{ app }}
</div>
</q-tooltip>
</span>
<span v-else-if="cmd.type === 'files'">
<q-badge rounded color="light-blue"
><q-icon class="q-mr-xs" name="description" />
{{
(cmd.match &&
(cmd.match.length > 10
? cmd.match.slice(0, 10) + "..."
: cmd.match)) ||
"所有文件"
}}</q-badge
>
<q-tooltip>
<div class="text-subtitle2">
{{ cmd.match || "所有文件" }}
</div>
</q-tooltip>
</span>
<span v-else-if="cmd.type === 'regex'">
<q-badge rounded color="cyan"
><q-icon class="q-mr-xs" name="playlist_add_check" />{{
cmd.match.length > 10
? cmd.match.slice(0, 10) + "..."
: cmd.match
}}
</q-badge>
<q-tooltip>
<div class="text-subtitle2">
{{ cmd.match }}
</div>
</q-tooltip>
</span>
<span v-else-if="cmd.type === 'over'">
<q-badge rounded color="light-green"
><q-icon class="q-mr-xs" name="clear_all" />所有文本
</q-badge>
</span>
<span v-else-if="cmd.type === 'img'">
<q-badge rounded color="deep-orange" label="">
<q-icon class="q-mr-xs" name="panorama" />图片
</q-badge>
</span>
</span>
</div>
</div>
<!-- 语言类型及适配系统 -->
<div class="row justify-end items-center q-gutter-xs">
<span
:style="'color:' + allProgrammings[quickcommand.program].color"
></span
>
<span class="text-subtitle2">{{ quickcommand.program }}</span
><span>|</span>
<img
width="16"
v-for="platform in quickcommand.features.platform"
:key="platform"
:src="'/img/' + platform + '.svg'"
/>
</div>
</q-card-section>
</q-card>
</div>
</div>
</template>
<script>
import allProgrammings from "../js/programs.js";
import UTOOLS from "../js/utools.js";
export default {
data() {
return {
allProgrammings: allProgrammings,
isCommandActivated: this.activated,
};
},
computed: {
canCommandRun() {
return (
this.quickcommand.features.cmds.filter((x) => x.length).length &&
this.isCommandActivated
);
},
},
props: {
quickcommand: Object,
activated: Boolean,
},
methods: {
runCommand() {
utools.redirect(
this.quickcommand.features.cmds.filter((x) => x.length)[0]
);
},
toggleCommandActivated() {
let event = {
type: "disable",
data: this.quickcommand.features.code,
};
if (!UTOOLS.whole.removeFeature(this.quickcommand.features.code)) {
UTOOLS.whole.setFeature(
JSON.parse(JSON.stringify(this.quickcommand.features))
);
event.type = "enable";
}
this.$emit("commandChanged", event);
},
removeCommand() {
quickcommand.showConfirmBox("删除这个快捷命令").then((x) => {
if (!x) return;
let code = this.quickcommand.features.code;
utools.copyText(JSON.stringify(this.quickcommand, null, 4));
UTOOLS.delDB(UTOOLS.DBPRE.QC + code);
UTOOLS.whole.removeFeature(code);
this.isCommandAlive = false;
this.$emit("commandChanged", {
type: "remove",
data: code,
});
quickcommand.showMessageBox(
"删除成功,为防止误操作,已将删除的命令复制到剪贴板"
);
});
},
exportCommandRaw() {
utools.copyText(JSON.stringify(this.quickcommand, null, 4)) &&
quickcommand.showMessageBox("已复制到剪贴板");
},
exportCommandFile() {
window.saveFile(JSON.stringify(this.quickcommand), {
title: "选择保存位置",
defaultPath: `${this.quickcommand.features.explain}.json`,
filters: [{ name: "json", extensions: ["json"] }],
});
},
},
};
</script>
<style scoped>
.q-card {
cursor: pointer;
user-select: none;
}
.q-badge {
font-size: 15px;
margin: 0 1px;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.scrollArea {
height: 23px;
width: 60%;
overflow: hidden;
text-align: right;
}
.wrapper {
transition: 0.5s;
}
.wrapper:hover {
text-shadow: 1px 2px 4px #0000009e;
transition: 0.5s;
transform: translateY(-4px);
}
</style>