nebula/pages/admin/topic/post/_topic_id.vue

456 lines
13 KiB
Vue
Raw Normal View History

2020-09-08 07:59:55 +08:00
<template>
<el-row style="margin-top: 20px;">
<el-col style="margin-bottom: 1rem;">
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="{ path: '/admin' }">首页</el-breadcrumb-item>
<el-breadcrumb-item :to="{ path: '/admin/topics' }">专题管理</el-breadcrumb-item>
<el-breadcrumb-item v-if="topic.idTopic" :to="{ path: '/admin/topic/' + topic.topicUri }">{{
topic.topicTitle
}}
</el-breadcrumb-item>
<el-breadcrumb-item v-if="topic.idTopic">编辑</el-breadcrumb-item>
<el-breadcrumb-item v-else>创建</el-breadcrumb-item>
</el-breadcrumb>
</el-col>
<el-col>
<el-form :model="topic" :rules="rules" ref="topic" label-width="100px" class="demo-ruleForm">
<el-form-item label="主题名称" prop="topicTitle">
<el-input v-model="topic.topicTitle"></el-input>
</el-form-item>
<el-form-item label="URI" prop="topicUri">
<el-input v-model="topic.topicUri"></el-input>
</el-form-item>
<el-form-item label="图标">
2021-06-28 08:08:24 +08:00
<el-row>
<el-col :span="24">
<vue-cropper
ref="cropper"
:aspect-ratio="1 / 1"
:src="topicIconPath"
:checkCrossOrigin="false"
:checkOrientation="false"
:imgStyle="{width: '480px', height: '480px'}"
:autoCropArea="1"
:autoCrop="autoCrop"
preview=".preview"
/>
</el-col>
<el-col :span="24" style="margin-top: 2rem;">
<el-col :span="8">
<el-card>
<div class="card-body d-flex flex-column">
<el-col :span="4" style="text-align: right;">
<div v-if="topicIconPath" class="preview preview-large topic-brand-img"/>
<el-image v-else class="topic-brand-img" />
</el-col>
<el-col :span="20">
<el-col>
<el-col>
<el-link rel="nofollow" :underline="false">
<h4>{{ topic.topicTitle }}</h4>
</el-link>
</el-col>
<el-col>
<div class="text-muted article-summary-md">{{ topic.topicDescription }}</div>
</el-col>
</el-col>
</el-col>
</div>
</el-card>
</el-col>
</el-col>
<el-col :span="24" style="margin-top: 2rem;">
<el-upload
class="avatar-uploader"
action=""
:multiple="true"
:show-file-list="false"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload">
<div>
<el-button type="primary" round plain>上传</el-button>
</div>
</el-upload>
<el-button style="margin-top: 1rem;" type="primary" round plain @click.prevent="reset">重置</el-button>
<el-button type="primary" round plain @click.prevent="cropImage">裁剪</el-button>
<el-col>
<span style="color: red;padding-right: 5px;">*</span>
<span>上传图片调整至最佳效果后,请点击裁剪按钮截取</span>
</el-col>
</el-col>
</el-row>
</el-form-item>
<el-form-item label="导航主题">
<el-switch
v-model="topic.topicNva"
active-text="启用"
inactive-text="禁用"
active-value="0"
inactive-value="1">
</el-switch>
</el-form-item>
<el-form-item label="状态">
<el-switch
v-model="topic.topicStatus"
active-text="启用"
inactive-text="禁用"
active-value="0"
inactive-value="1">
</el-switch>
</el-form-item>
<el-form-item label="排序">
<el-input-number v-model="topic.topicSort" :min="1"></el-input-number>
</el-form-item>
<el-form-item label="标签数">
<el-input v-model="topic.topicTagCount" :disabled="true"></el-input>
</el-form-item>
<el-form-item label="描述">
<div id="contentEditor"></div>
</el-form-item>
<el-form-item class="text-right">
2020-09-28 00:37:14 +08:00
<el-button @click="updateTopic" :loading="loading" plain>提交</el-button>
</el-form-item>
</el-form>
</el-col>
</el-row>
2020-09-08 07:59:55 +08:00
</template>
<script>
import Vue from 'vue';
2021-06-28 08:08:24 +08:00
import {mapState} from 'vuex';
import VueCropper from 'vue-cropperjs';
import 'cropperjs/dist/cropper.css';
2020-09-08 07:59:55 +08:00
export default {
name: "adminTopicPost",
2021-06-28 08:08:24 +08:00
components: {
VueCropper
},
computed: {
2021-06-28 08:08:24 +08:00
...mapState({
uploadHeaders: state => {
return {'X-Upload-Token': state.uploadHeaders}
}
})
},
data() {
return {
topic: {
topicTitle: '',
topicIconPath: '',
topicDescription: '',
topicNva: '0',
topicStatus: '0',
topicTagCount: 0,
topicSort: 10
},
rules: {
topicTitle: [
{required: true, message: '请输入主题名称', trigger: 'blur'}
],
topicUri: [
{required: true, message: '请输入主题uri', trigger: 'blur'}
]
},
loading: false,
tokenURL: {
URL: '',
2020-10-18 14:43:02 +08:00
linkToImageURL: '',
token: ''
},
topicIconPath: '',
2021-03-25 21:48:05 +08:00
isEdit: false,
2021-06-28 08:08:24 +08:00
autoCrop: true,
2021-03-25 21:48:05 +08:00
notificationFlag: true
}
},
methods: {
_initEditor(data) {
let _ts = this;
2020-10-18 14:43:02 +08:00
2021-06-28 08:08:24 +08:00
let toolbar = [
'emoji',
'headings',
'bold',
'italic',
'strike',
'link',
'|',
'list',
'ordered-list',
'check',
'outdent',
'indent',
'|',
'quote',
'line',
'code',
'inline-code',
'insert-before',
'insert-after',
'|',
'upload',
// 'record',
'table',
'|',
'undo',
'redo',
'|',
'edit-mode',
{
name: 'more',
toolbar: [
'fullscreen',
'both',
'preview',
'info'
],
}]
return new Vue.Vditor(data.id, {
toolbar,
mode: 'sv',
tab: '\t',
cache: {
enable: this.$route.params.topic_id ? false : true,
id: this.$route.params.topic_id ? this.$route.params.topic_id : '',
},
after() {
_ts.contentEditor.setValue(data.value ? data.value : '');
},
2021-12-22 11:50:20 +08:00
hint: {
emoji: Vue.emoji
},
preview: {
hljs: {
enable: true,
lineNumber: true,
style: 'github'
},
markdown: {
toc: true,
},
math: {
inlineDigit: true
},
delay: 500,
mode: data.mode,
/*url: `${process.env.Server}/api/console/markdown`,*/
parse: (element) => {
if (element.style.display === 'none') {
return
}
// LazyLoadImage();
// Vue.Vditor.highlightRender({style: 'github'}, element, this.contentEditor);
}
},
upload: {
max: 10 * 1024 * 1024,
url: this.tokenURL.URL,
2020-10-18 14:43:02 +08:00
linkToImgUrl: this.tokenURL.linkToImageURL,
token: this.tokenURL.token,
2021-06-28 08:08:24 +08:00
filename: name => name.replace(/[^(a-zA-Z0-9\u4e00-\u9fa5\.)]/g, '').replace(/[\?\\/:|<>\*\[\]\(\)\$%\{\}@~]/g, '').replace('/\\s/g', '')
},
height: data.height,
counter: 102400,
resize: {
enable: data.resize,
},
lang: this.$store.state.locale,
placeholder: data.placeholder,
})
},
handleAvatarSuccess(res) {
let _ts = this;
if (res && res.data && res.data.url) {
let topic = _ts.topic;
topic.topicIconPath = res.data.url;
_ts.$set(_ts, 'topic', topic);
_ts.$set(_ts, 'topicIconPath', 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 格式!');
2021-06-28 08:08:24 +08:00
return false;
}
if (!isLt2M) {
this.$message.error('上传图标大小不能超过 2MB!');
2021-06-28 08:08:24 +08:00
return false;
}
this.fileToBase64(file);
return false;
},
fileToBase64(file) {
let _ts = this;
let reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
_ts.$set(_ts, 'topicIconPath', this.result);
_ts.$refs.cropper.replace(this.result);
}
},
async updateTopic() {
let _ts = this;
_ts.$set(_ts, 'loading', true);
let id = _ts.topic.idTopic;
let topicDescription = _ts.contentEditor.getValue();
let topicDescriptionHtml = await _ts.contentEditor.getHTML();
let data = _ts.topic;
data.topicDescription = topicDescription;
data.topicDescriptionHtml = topicDescriptionHtml;
let title = id ? '更新' : '添加';
_ts.$axios[id ? '$put' : '$post']('/api/admin/topic/post', data).then(function (res) {
if (res && res.message) {
_ts.$message.error(res.message);
} else {
_ts.$message({
type: 'success',
message: title + '成功!'
});
_ts.$set(_ts, 'loading', false);
2021-03-25 21:48:05 +08:00
_ts.$set(_ts, 'notificationFlag', false);
_ts.contentEditor.setValue('');
_ts.$router.push({
path: `/admin/topic/${data.topicUri}`
})
}
})
2021-06-28 08:08:24 +08:00
},
reset() {
this.$refs.cropper.reset();
},
// get image data for post processing, e.g. upload or setting image src
cropImage() {
let _ts = this;
try {
_ts.cropImg = _ts.$refs.cropper.getCroppedCanvas().toDataURL();
let topic = _ts.topic;
topic.topicIconPath = _ts.cropImg;
_ts.$set(_ts, 'topic', topic);
_ts.$set(_ts, 'topicIconPath', _ts.cropImg);
_ts.$message.success('已裁剪 !');
} catch (e) {
_ts.$message.error('图片获取失败 !');
return;
}
}
},
beforeRouteLeave(to, from, next) {
2021-03-25 21:48:05 +08:00
let _ts = this;
if (_ts.notificationFlag) {
_ts.$confirm('系统可能不会保存您所做的更改。', '离开此网站?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
next();
}).catch(() => {
_ts.$store.commit("setActiveMenu", "admin-topic-post");
return false
});
} else {
next();
2021-03-25 21:48:05 +08:00
}
},
beforeDestroy() {
window.onbeforeunload = null;
},
async mounted() {
window.addEventListener('beforeunload', e => {
e = e || window.event;
// 兼容IE8和Firefox 4之前的版本
if (e) {
e.returnValue = '关闭提示';
}
// Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+
return '关闭提示';
});
let _ts = this;
_ts.$store.commit("setActiveMenu", "admin-topic-post");
_ts.$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 || '',
})
}
});
if (_ts.$route.params.topic_id) {
_ts.$set(_ts, 'isEdit', true);
const responseData = await _ts.$axios.$get('/api/admin/topic/detail/' + _ts.$route.params.topic_id);
_ts.$set(_ts, 'topic', responseData);
if (responseData.topicIconPath) {
2021-06-28 08:08:24 +08:00
_ts.$set(_ts, 'topicIconPath', responseData.topicIconPath);
}
} else {
_ts.$set(_ts, 'isEdit', false);
}
let articleContent = '';
if (_ts.topic.topicDescription) {
articleContent = _ts.topic.topicDescription;
}
_ts.contentEditor = _ts._initEditor({
id: 'contentEditor',
mode: 'both',
height: 480,
placeholder: '', //this.$t('inputContent', this.$store.state.locale)
resize: false,
value: articleContent
});
}
2020-09-08 07:59:55 +08:00
}
</script>
<style lang="scss">
2021-06-28 08:08:24 +08:00
@import "~vditor/src/assets/scss/index.scss";
.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: 480px;
min-height: 480px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC);
}
.preview-large {
width: 100%;
height: 144px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
overflow: hidden;
}
2020-09-08 07:59:55 +08:00
</style>