323 lines
8.7 KiB
Vue
323 lines
8.7 KiB
Vue
<template>
|
|
<el-row>
|
|
<el-col>
|
|
<el-form :model="user" ref="user" label-width="100px">
|
|
<el-form-item>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<vue-cropper
|
|
ref="cropper"
|
|
:aspect-ratio="1 / 1"
|
|
:src="avatarUrl"
|
|
:checkCrossOrigin="false"
|
|
:checkOrientation="false"
|
|
:imgStyle="{width: '360px'}"
|
|
:autoCropArea="1"
|
|
:autoCrop="autoCrop"
|
|
preview=".preview"
|
|
/>
|
|
</el-col>
|
|
<el-col :span="24" style="margin-top: 2rem;">
|
|
<el-col :span="8" style="max-width: 20rem;max-height: 20rem;">
|
|
<div class="preview preview-large"/>
|
|
</el-col>
|
|
<el-col :span="6" style="height: 20rem;">
|
|
<div class="preview preview-medium"/>
|
|
</el-col>
|
|
<el-col :span="4" style="height: 20rem;">
|
|
<div class="preview preview-small"/>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" style="margin-top: 2rem;">
|
|
<el-upload
|
|
class="avatar-uploader"
|
|
:action="tokenURL.URL"
|
|
:multiple="true"
|
|
:with-credentials="true"
|
|
:headers="uploadHeaders"
|
|
:show-file-list="false"
|
|
:data="uploadOption"
|
|
:on-success="handleAvatarSuccess"
|
|
:before-upload="beforeAvatarUpload">
|
|
<div v-show="false">
|
|
<Avataaars
|
|
id="avatarSvg"
|
|
style="width: 16rem; height: 16rem;"
|
|
:avatarStyle='avatar.acatarStyle'
|
|
:topType='avatar.topType'
|
|
:accessoriesType='avatar.accessoriesType'
|
|
:hairColor='avatar.hairColor'
|
|
:facialHairType='avatar.facialHairType'
|
|
:clotheType='avatar.clotheType'
|
|
:clotheColor='avatar.clotheColor'
|
|
:eyeType='avatar.eyeType'
|
|
:eyebrowType='avatar.eyebrowType'
|
|
:mouthType='avatar.mouthType'
|
|
:skinColor='avatar.skinColor'>
|
|
</Avataaars>
|
|
</div>
|
|
<div>
|
|
<el-button type="primary" round plain>上传</el-button>
|
|
</div>
|
|
</el-upload>
|
|
<el-button style="margin-top: 1rem;" type="primary" round plain @click="genAvatar">随机</el-button>
|
|
<el-button type="primary" round plain @click.prevent="reset">重置</el-button>
|
|
<el-button type="primary" round plain @click.prevent="cropImage">提交</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapState} from 'vuex';
|
|
import Avataaars from 'vuejs-avataaars';
|
|
import saveSvg from 'save-svg-as-png';
|
|
import VueCropper from 'vue-cropperjs';
|
|
import 'cropperjs/dist/cropper.css';
|
|
|
|
const {generateRandomAvatar} = require('~/plugins/avataaars/generator/generateAvatar');
|
|
export default {
|
|
name: "avatar",
|
|
components: {
|
|
Avataaars,
|
|
VueCropper
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
uploadHeaders: state => {
|
|
return {'X-Upload-Token': state.uploadHeaders}
|
|
},
|
|
idUser: state => state.oauth.idUser
|
|
})
|
|
},
|
|
data() {
|
|
return {
|
|
user: {},
|
|
loading: false,
|
|
tokenURL: {
|
|
URL: '',
|
|
linkToImageURL: '',
|
|
token: ''
|
|
},
|
|
avatarUrl: '',
|
|
avatar: {},
|
|
fileList: [],
|
|
uploadOption: {
|
|
type: 0
|
|
},
|
|
cropImg: '',
|
|
data: null,
|
|
autoCrop: true
|
|
}
|
|
},
|
|
mounted() {
|
|
let _ts = this;
|
|
this.$store.commit('setActiveMenu', 'avatar');
|
|
this.$axios.$get('/api/upload/simple/token').then(function (res) {
|
|
if (res) {
|
|
_ts.$store.commit('setUploadHeaders', res.uploadToken);
|
|
_ts.$set(_ts, 'tokenURL', {
|
|
token: res.uploadToken || '',
|
|
URL: res.uploadURL || '',
|
|
})
|
|
}
|
|
});
|
|
this.getData();
|
|
},
|
|
methods: {
|
|
genAvatar() {
|
|
let _ts = this;
|
|
let user = _ts.user
|
|
const avatar = generateRandomAvatar();
|
|
_ts.$set(_ts, 'avatar', avatar);
|
|
setTimeout(function () {
|
|
saveSvg.svgAsPngUri(document.getElementById('avatarSvg'), {}).then(uri => {
|
|
if (uri) {
|
|
user.avatarType = 1;
|
|
user.avatarUrl = uri;
|
|
_ts.$set(_ts, 'avatarUrl', uri);
|
|
_ts.$refs.cropper.replace(uri);
|
|
} else {
|
|
_ts.$message.error('头像上传失败 !');
|
|
}
|
|
});
|
|
}, 300);
|
|
},
|
|
handleAvatarSuccess(res) {
|
|
let _ts = this;
|
|
if (res && res.data && res.data.url) {
|
|
let user = _ts.user;
|
|
user.avatarUrl = res.data.url;
|
|
user.avatarType = '0';
|
|
_ts.$set(_ts, 'user', user);
|
|
_ts.$set(_ts, 'avatarUrl', res.data.url);
|
|
_ts.$refs.cropper.replace(res.data.url);
|
|
} else {
|
|
_ts.$message.error('上传失败!');
|
|
}
|
|
},
|
|
beforeAvatarUpload(file) {
|
|
const isJPG = file.type === 'image/jpeg';
|
|
const isPNG = file.type === 'image/png';
|
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
|
|
|
if (!(isJPG || isPNG)) {
|
|
this.$message.error('上传图标只能是 JPG 或者 PNG 格式!');
|
|
}
|
|
if (!isLt2M) {
|
|
this.$message.error('上传图标大小不能超过 2MB!');
|
|
}
|
|
return (isJPG || isPNG) && isLt2M;
|
|
},
|
|
getData() {
|
|
let _ts = this;
|
|
_ts.$axios.$get('/api/user-info/detail/' + _ts.idUser).then(function (res) {
|
|
if (res) {
|
|
if (res.message) {
|
|
_ts.$message.error(res.message);
|
|
} else {
|
|
_ts.$set(_ts, 'user', res.user);
|
|
_ts.$set(_ts, 'avatarUrl', res.user.avatarUrl);
|
|
_ts.$refs.cropper.replace(res.user.avatarUrl);
|
|
}
|
|
}
|
|
})
|
|
},
|
|
reset() {
|
|
this.$refs.cropper.reset();
|
|
},
|
|
// get image data for post processing, e.g. upload or setting image src
|
|
cropImage() {
|
|
let _ts = this;
|
|
try {
|
|
this.cropImg = this.$refs.cropper.getCroppedCanvas().toDataURL();
|
|
} catch (e) {
|
|
_ts.$message.error('图片获取失败 !');
|
|
return ;
|
|
}
|
|
let user = _ts.user;
|
|
user.avatarType = 1;
|
|
user.avatarUrl = _ts.cropImg;
|
|
_ts.updateUser(user);
|
|
},
|
|
updateUser(user) {
|
|
let _ts = this;
|
|
_ts.$refs['user'].validate((valid) => {
|
|
if (valid) {
|
|
_ts.$axios.$patch('/api/user-info/update', user).then(function (res) {
|
|
if (res) {
|
|
if (res.message) {
|
|
_ts.$message.error(res.message);
|
|
} else {
|
|
_ts.$set(_ts, 'user', res.user);
|
|
_ts.$set(_ts, 'avatarUrl', res.user.avatarUrl);
|
|
_ts.$store.commit('setUserInfo', res.user);
|
|
_ts.$message.success('更新成功 !');
|
|
}
|
|
}
|
|
})
|
|
} else {
|
|
_ts.$message.error('数据异常 !');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.avatar-uploader .el-upload {
|
|
border: 1px dashed #d9d9d9;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.avatar-uploader .el-upload:hover {
|
|
border-color: #409EFF;
|
|
}
|
|
|
|
.avatar-uploader-icon {
|
|
font-size: 28px;
|
|
color: #8c939d;
|
|
width: 16rem;
|
|
height: 16rem;
|
|
line-height: 16rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.avatar {
|
|
width: 16rem;
|
|
height: 16rem;
|
|
display: block;
|
|
}
|
|
|
|
.preview-area {
|
|
width: 16rem;
|
|
}
|
|
|
|
.preview-area p {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.preview-area p:last-of-type {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.crop-placeholder {
|
|
width: 36px;
|
|
height: 36px;
|
|
background: #ccc;
|
|
}
|
|
|
|
.cropped-image img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.img-cropper {
|
|
width: 740px;
|
|
min-height: 360px;
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC);
|
|
}
|
|
|
|
.preview-large {
|
|
width: 16rem;
|
|
height: 16rem;
|
|
margin-bottom: 1rem;
|
|
margin-top: 3rem;
|
|
border: 3px solid #fff;
|
|
border-radius: 100%;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.preview-medium {
|
|
width: 8rem;
|
|
height: 8rem;
|
|
margin-bottom: 1rem;
|
|
margin-top: 11rem;
|
|
border: 3px solid #fff;
|
|
border-radius: 100%;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.preview-small {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
margin-bottom: 1rem;
|
|
margin-top: 17rem;
|
|
border: 3px solid #fff;
|
|
border-radius: 100%;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|