2020-08-30 20:21:15 +08:00
|
|
|
|
<template>
|
2020-09-02 21:09:56 +08:00
|
|
|
|
<el-dialog title="插入图片" class="upload__dialog" :visible="value" @close="$emit('close')">
|
|
|
|
|
<el-tabs type="card" :value="'upload'">
|
|
|
|
|
<el-tab-pane class="upload-panel" label="选择上传" name="upload">
|
|
|
|
|
<el-select v-model="imgHost" @change="changeImgHost" placeholder="请选择" size="small">
|
|
|
|
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-upload drag action :headers="{'Content-Type': 'multipart/form-data'}" :show-file-list="false"
|
|
|
|
|
:multiple="true" accept=".jpg, .jpeg, .png, .gif" name="file" :before-upload="beforeUpload"
|
|
|
|
|
v-loading="uploadingImg">
|
|
|
|
|
<i class="el-icon-upload"></i>
|
|
|
|
|
<div class="el-upload__text">
|
|
|
|
|
将文件拖到此处,或
|
|
|
|
|
<em>点击上传</em>
|
|
|
|
|
</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane class="github-panel" label="GitHub 图床" name="github">
|
|
|
|
|
<el-form class="setting-form" ref="form" :model="formGitHub" label-position="right" label-width="100px">
|
|
|
|
|
<el-form-item label="GitHub 仓库">
|
|
|
|
|
<el-input v-model="formGitHub.repo" placeholder="如:github.com/yanglbme/resource"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="token">
|
|
|
|
|
<el-input v-model="formGitHub.accessToken"
|
|
|
|
|
placeholder="如:cc1d0c1426d0fd0902bd2d7184b14da61b8abc46"></el-input>
|
|
|
|
|
<el-link type="primary"
|
|
|
|
|
href="https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token"
|
|
|
|
|
target="_blank">如何获取 GitHub token?</el-link>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" @click="onSubmit">保存配置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</el-dialog>
|
2020-08-30 20:21:15 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-09-02 21:09:56 +08:00
|
|
|
|
import {
|
|
|
|
|
uploadImgFile
|
|
|
|
|
} from "../../assets/scripts/uploadImageFile";
|
2020-08-30 20:21:15 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
2020-09-02 21:09:56 +08:00
|
|
|
|
props: {
|
|
|
|
|
value: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
2020-08-30 20:21:15 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2020-09-02 21:09:56 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
formGitHub: {
|
|
|
|
|
repo: "",
|
|
|
|
|
accessToken: "",
|
|
|
|
|
},
|
|
|
|
|
options: [{
|
|
|
|
|
value: "default",
|
|
|
|
|
label: "默认图床",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "github",
|
|
|
|
|
label: "GitHub",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
imgHost: "default",
|
|
|
|
|
uploadingImg: false,
|
|
|
|
|
};
|
2020-08-30 20:21:15 +08:00
|
|
|
|
},
|
2020-09-02 21:09:56 +08:00
|
|
|
|
created() {
|
|
|
|
|
if (localStorage.getItem("GitHubConfig")) {
|
|
|
|
|
this.formGitHub = JSON.parse(localStorage.getItem("GitHubConfig"));
|
|
|
|
|
}
|
|
|
|
|
if (localStorage.getItem("ImgHost")) {
|
|
|
|
|
this.imgHost = localStorage.getItem("ImgHost");
|
|
|
|
|
}
|
2020-08-30 20:21:15 +08:00
|
|
|
|
},
|
2020-09-02 21:09:56 +08:00
|
|
|
|
methods: {
|
|
|
|
|
changeImgHost() {
|
|
|
|
|
console.log("select img host:", this.imgHost);
|
|
|
|
|
localStorage.setItem("ImgHost", this.imgHost);
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
if (!(this.formGitHub.repo && this.formGitHub.accessToken)) {
|
|
|
|
|
const blankElement = this.formGitHub.repo ? "token" : "GitHub 仓库"
|
|
|
|
|
this.$message({
|
|
|
|
|
showClose: true,
|
|
|
|
|
message: `参数「${blankElement}」不能为空`,
|
|
|
|
|
type: "error",
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
localStorage.setItem("GitHubConfig", JSON.stringify(this.formGitHub));
|
|
|
|
|
console.log("submit github params:", this.formGitHub);
|
|
|
|
|
this.$message({
|
|
|
|
|
message: "保存成功",
|
|
|
|
|
type: "success",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 图片上传前的处理
|
|
|
|
|
beforeUpload(file) {
|
|
|
|
|
if (!this.validateConfig()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.uploadingImg = true;
|
|
|
|
|
uploadImgFile(file)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.$emit("uploaded", res);
|
|
|
|
|
this.uploadingImg = false;
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
this.uploadingImg = false;
|
|
|
|
|
this.$message({
|
|
|
|
|
showClose: true,
|
|
|
|
|
message: err,
|
|
|
|
|
type: "error",
|
|
|
|
|
});
|
|
|
|
|
});
|
2020-08-30 20:21:15 +08:00
|
|
|
|
return false;
|
2020-09-02 21:09:56 +08:00
|
|
|
|
},
|
|
|
|
|
validateConfig() {
|
|
|
|
|
switch (this.imgHost) {
|
|
|
|
|
case "github":
|
|
|
|
|
const {
|
|
|
|
|
repo, accessToken
|
|
|
|
|
} = this.formGitHub;
|
|
|
|
|
|
|
|
|
|
if (!repo || !accessToken) {
|
|
|
|
|
this.$message.error("未配置 GitHub 参数");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
},
|
2020-08-30 20:21:15 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.upload-panel {
|
2020-09-02 21:09:56 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.el-select {
|
|
|
|
|
align-self: flex-end;
|
|
|
|
|
margin: 0 67.75px 20px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
}
|
2020-08-30 20:21:15 +08:00
|
|
|
|
}
|
2020-09-02 21:09:56 +08:00
|
|
|
|
|
2020-08-30 20:21:15 +08:00
|
|
|
|
.github-panel {
|
2020-09-02 21:09:56 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2020-08-30 20:21:15 +08:00
|
|
|
|
}
|
2020-09-02 21:09:56 +08:00
|
|
|
|
|
2020-08-30 20:21:15 +08:00
|
|
|
|
.setting-form {
|
2020-09-02 21:09:56 +08:00
|
|
|
|
width: 70%;
|
|
|
|
|
|
|
|
|
|
.el-form-item {
|
|
|
|
|
margin: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item:last-child {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2020-08-30 20:21:15 +08:00
|
|
|
|
}
|
2020-09-02 21:09:56 +08:00
|
|
|
|
</style>
|