mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-09 23:16:18 +08:00
188 lines
5.4 KiB
Vue
188 lines
5.4 KiB
Vue
<template>
|
|
<div>
|
|
<q-dialog v-model="showIconPicker" class="q-gutter" :position="position">
|
|
<q-card>
|
|
<q-card-section class="text-h5 text-center">更改图标</q-card-section>
|
|
<q-card-section>
|
|
<q-select
|
|
ref="icon8"
|
|
v-model="icon8sIcon"
|
|
:options="options"
|
|
label="搜索ICON8S"
|
|
options-dense
|
|
use-input
|
|
:loading="loading"
|
|
input-debounce="1000"
|
|
@input-value="searchIcon8s"
|
|
@update:model-value="getIcon8sIcon"
|
|
transition-show="jump-down"
|
|
transition-hide="jump-up"
|
|
virtual-scroll-slice-size="30"
|
|
standout="bg-primary text-white"
|
|
>
|
|
<template v-slot:no-option>
|
|
<q-item>
|
|
<q-item-section class="text-grey">
|
|
键入关键词搜索
|
|
</q-item-section>
|
|
</q-item>
|
|
</template>
|
|
<template v-slot:selected>
|
|
<!-- {{ icon8sIcon?.name || "" }} -->
|
|
</template>
|
|
<template v-slot:prepend>
|
|
<q-avatar size="24px" v-if="dataUrl && icon8sIcon">
|
|
<q-img :src="dataUrl" />
|
|
</q-avatar>
|
|
<q-icon v-else name="image" />
|
|
</template>
|
|
<template v-slot:option="scope">
|
|
<q-item v-bind="scope.itemProps">
|
|
<q-item-section avatar>
|
|
<q-img :src="getIcon8sIconUrl(scope.opt, 1)" />
|
|
</q-item-section>
|
|
<q-item-section>
|
|
<q-item-label v-html="scope.opt.name" />
|
|
</q-item-section>
|
|
</q-item> </template
|
|
></q-select>
|
|
</q-card-section>
|
|
<q-card-section>
|
|
<q-file
|
|
standout="bg-primary text-white"
|
|
v-model="localIconFile"
|
|
@update:model-value="getLocalIcon"
|
|
accept="image/*"
|
|
label="选择本地图片"
|
|
>
|
|
<template v-slot:prepend>
|
|
<q-avatar size="24px" v-if="dataUrl && localIconFile">
|
|
<q-img :src="dataUrl" />
|
|
</q-avatar>
|
|
<q-icon v-else name="folder" />
|
|
</template>
|
|
</q-file>
|
|
</q-card-section>
|
|
<q-card-section>
|
|
<q-input
|
|
standout="bg-primary text-white"
|
|
v-model="netWorkIconUrl"
|
|
@blur="getRemoteIcon"
|
|
type="text"
|
|
label="网络图片地址"
|
|
>
|
|
<template v-slot:prepend>
|
|
<q-avatar size="24px" v-if="dataUrl && netWorkIconUrl">
|
|
<q-img :src="dataUrl" />
|
|
</q-avatar>
|
|
<q-icon v-else name="cloud" /> </template
|
|
></q-input>
|
|
</q-card-section>
|
|
<q-card-actions align="right">
|
|
<q-btn flat color="primary" @click="showIconPicker = false"
|
|
>确定</q-btn
|
|
>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { ref } from "vue";
|
|
import pictureCompress from "picture-compressor";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
showIconPicker: false,
|
|
localIconFile: ref(null),
|
|
icon8sIcon: ref(null),
|
|
netWorkIconUrl: "",
|
|
options: ref(null),
|
|
loading: false,
|
|
icon8: {
|
|
platform: "color",
|
|
amount: "300",
|
|
baseUrl: "https://search.icons8.com/api/iconsets/v5/search",
|
|
},
|
|
dataUrl: null,
|
|
};
|
|
},
|
|
props: {
|
|
position: String,
|
|
},
|
|
methods: {
|
|
setIcon(dataUrl) {
|
|
this.dataUrl = dataUrl;
|
|
this.$emit("iconChanged", dataUrl);
|
|
},
|
|
|
|
searchIcon8s(val) {
|
|
if (!val) return;
|
|
this.loading = true;
|
|
let language = /[\u4e00-\u9fa5]/.test(val) ? "zh" : "en";
|
|
let apiUrl = `${this.icon8.baseUrl}?term=${val}&amount=${this.icon8.amount}&offset=0&platform=${this.icon8.platform}&language=${language}`;
|
|
fetch(apiUrl)
|
|
.then((res) => res.json())
|
|
.then((res) => {
|
|
this.options = res.icons;
|
|
this.$refs.icon8.showPopup();
|
|
this.loading = false;
|
|
});
|
|
},
|
|
|
|
getIcon8sIconUrl(icon, size) {
|
|
return `https://img.icons8.com/color/${size}x/${icon.commonName}.png`;
|
|
},
|
|
|
|
getIcon8sIcon() {
|
|
let imgUrl = this.getIcon8sIconUrl(this.icon8sIcon, 2);
|
|
this.getRemoteIcon(imgUrl);
|
|
},
|
|
|
|
getLocalIcon() {
|
|
utools.showMainWindow();
|
|
this.compressingPic(window.getBase64Ico(imgPath)).then((dataUrl) => {
|
|
dataUrl && this.setIcon(dataUrl);
|
|
});
|
|
},
|
|
|
|
getRemoteIcon(url = this.netWorkIconUrl) {
|
|
this.getImg(url, (dataUrl) => {
|
|
dataUrl && this.setIcon(dataUrl);
|
|
});
|
|
},
|
|
|
|
getImg(imgUrl, callback) {
|
|
let imgInfo = window.getFileInfo({
|
|
type: "file",
|
|
argvs: imgUrl,
|
|
readfile: false,
|
|
});
|
|
let imgPath = window.getQuickcommandTempFile(imgInfo.ext);
|
|
quickcommand
|
|
.downloadFile(imgUrl, imgPath)
|
|
.then(() => {
|
|
this.compressingPic(window.getBase64Ico(imgPath)).then((src) => {
|
|
callback(src);
|
|
});
|
|
})
|
|
.catch((e) => {
|
|
quickcommand.showMessageBox("图片地址有误!", "error");
|
|
});
|
|
},
|
|
async compressingPic(img, width = 80) {
|
|
let compressedImage = await pictureCompress({
|
|
img: img,
|
|
width: width,
|
|
height: width,
|
|
type: "png",
|
|
quality: 1,
|
|
});
|
|
return compressedImage.img;
|
|
},
|
|
},
|
|
};
|
|
</script>
|