inleft
2022-02-16 63af45eaa849552e4ea3ff0248c47bacb62cacdb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<template>
    <div>
        <a-form-model ref="myForm" :model="form" :label-col="labelCol" :wrapper-col="wrapperCol" :rules="rules">
            <a-form-model-item label="标题" prop="title">
                <a-input v-model="form.title" placeholder="限 50字内" />
            </a-form-model-item>
 
            <a-form-model-item label="模式切换" prop="common">
                <a-switch v-model="form.online" />
                <span class="myTip">
                    本地文件/由系统生成文件
                </span>
            </a-form-model-item>
 
 
            <a-form-model-item label="日志文件" v-show="!form.online" prop="blogFileList">
                <a-upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
                    :default-file-list="form.blogFileList">
                    <a-button>
                        <a-icon type="upload" /> 限 markdown/html
                    </a-button>
                </a-upload>
            </a-form-model-item>
 
            <a-form-model-item label="日志内容" v-show="form.online" prop="content">
                <a-input v-model="form.content" type="textarea" placeholder="限10k字数" />
            </a-form-model-item>
 
            <a-form-model-item label="分类" prop="class">
                <a-select v-model="form.class" :allowClear="true" mode="multiple" placeholder="多选(至少一个)"
                    :getPopupContainer="getCalendarContainer()">
                    <a-select-option value="shanghai">
                        Zone one
                    </a-select-option>
                    <a-select-option value="beijing">
                        Zone two
                    </a-select-option>
                    <a-select-option value="beijing2">
                        Zone two
                    </a-select-option>
                </a-select>
            </a-form-model-item>
 
            <a-form-model-item label="额外设置">
                <a-switch v-model="form.preference" />
            </a-form-model-item>
 
            <div v-show="form.preference" class="myBorder" style="padding:10px;">
                <a-form-model-item label="起个草稿">
                    <a-switch v-model="form.tempSave" />
                    <span v-show="form.tempSave" class="myTip">
                        临时存储,游客无法浏览
                    </span>
                </a-form-model-item>
 
                <a-form-model-item label=" 文件类型">
                    <a-radio-group v-model="form.blogType">
                        <a-radio value="Markdown">
                            markdown
                        </a-radio>
                        <a-radio value="Html">
                            html
                        </a-radio>
                    </a-radio-group>
                </a-form-model-item>
 
 
                <a-form-model-item label="标签">
                    <template v-for="(tag, index) in tags">
                        <a-tooltip v-if="tag.length > 20" :key="tag" :title="tag">
                            <a-tag :key="tag" :closable="index !== 0" @close="() => handleClose(tag)">
                                {{ `${tag.slice(0, 20)}...` }}
                            </a-tag>
                        </a-tooltip>
                        <a-tag v-else :key="tag" :closable="index >= 0" @close="() => handleClose(tag)">
                            {{ tag }}
                        </a-tag>
                    </template>
 
                    <a-input v-if="inputVisible" ref="input" type="text" size="small" :style="{ width: '78px' }"
                        :value="inputValue" @change="handleInputChange" @blur="handleInputConfirm"
                        @keyup.enter="handleInputConfirm" />
 
                    <a-tag v-else style="background: #fff; borderStyle: dashed;" @click="showInput">
                        <a-icon type="plus" /> New Tag
                    </a-tag>
 
                </a-form-model-item>
 
 
                <a-form-model-item label="封面">
                    <a-upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76" list-type="picture"
                        :default-file-list="form.coverFileList" class="upload-list-inline">
                        <a-button>
                            <a-icon type="upload" /> jpg/png/jpeg..
                        </a-button>
                    </a-upload>
                    <span class="myTip">
                        自动转码,可以传高清图
                    </span>
                </a-form-model-item>
 
                <a-form-model-item label="定时">
                    <a-date-picker v-model="form.publishDate" show-time type="datetime" placeholder="发布时间"
                        style="width: 100%;" :disabledDate="disabledDate"
                        :getCalendarContainer="getCalendarContainer()" />
                </a-form-model-item>
 
                <a-form-model-item label="置顶权重">
                    <a-slider v-model="form.sliderValue" :default-value="20" :step="5"
                        :getTooltipPopupContainer="getCalendarContainer()" />
                    <span class="myTip">
                        越小越靠前
                    </span>
                </a-form-model-item>
 
 
 
                <div v-bind:class="{'myBorder':form.lock}" style="padding: 3px;">
 
                    <a-form-model-item label="加锁">
                        <a-switch v-model="form.lock" />
                        <span v-show="!form.lock" class="myTip">
                            默认为公开
                        </span>
                    </a-form-model-item>
 
                    <div v-show="form.lock ">
                        <a-form-model-item label="阅读权限">
                            <a-radio-group v-model="form.auth">
                                <a-radio value="private">
                                    私人
                                </a-radio>
                                <a-radio value="password">
                                    密码授权
                                </a-radio>
                            </a-radio-group>
                        </a-form-model-item>
 
                        <a-form-model-item label="授权密码" v-show="form.auth=='password'">
                            <a-input v-model="form.password" type="password" placeholder="独立密码">
                                <a-icon slot="prefix" type="lock" style="color:rgba(0,0,0,.25)" />
                            </a-input>
                        </a-form-model-item>
                    </div>
 
                </div>
 
            </div>
 
        </a-form-model>
    </div>
</template>
 
<script>
    import moment from "moment";
    export default {
        data() {
 
            let validateContent = (rule, value, callback) => {
                if (this.form.online) {
                    console.log("内容未填");
                    this.$refs.myForm.validateField('content')
                } else {
                    console.log("文件未传");
                    this.$refs.myForm.validateField('blogFileList')
                }
                callback();
            };
 
            return {
 
                blogFileList: [],
                coverFileList: [
                    // {
                    // uid: '-1',
                    // name: 'xxx.png',
                    // status: 'done',
                    // url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
                    // thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
                    // } 
                ],
                tags: [],
                inputVisible: false,
                inputValue: '',
                labelCol: {
                    span: 7
                },
                wrapperCol: {
                    span: 13
                },
                form: {
                    online: false,
                    preference: false,
                    title: '',
                    content: '',
                    class: [],
                    tempSave: false,
                    blogType: "Markdown",
                    publishDate: "",
                    lock: false,
                    auth: "private",
                    password: "",
                    blogFileList: [],
                    coverFileList: [],
                },
                rules: {
                    title: [{
                            required: true,
                            message: '标题不能为空',
                            trigger: 'blur'
                        },
                        {
                            min: 5,
                            max: 50,
                            message: '字数限制1~50',
                            trigger: 'blur'
                        },
                    ],
                    common: [{
                        validator: validateContent,
                        trigger: []
                    }],
                    content: [{
                        max: 10,
                        required: true,
                        message: '至少填一下上传内容',
                        trigger: 'blur'
                    }, ],
                    blogFileList: [{
                        min: 1,
                        required: true,
                        message: '文件未上传',
                    }],
                    class: [{
                        required: true,
                        message: '至少选一个分类',
                        trigger: 'blur'
                    }, ],
                    // region: [{
                    //     required: true,
                    //     message: 'Please select Activity zone',
                    //     trigger: 'change'
                    // }],
                    // date1: [{
                    //     required: true,
                    //     message: 'Please pick a date',
                    //     trigger: 'change'
                    // }],
                    // type: [{
                    //     type: 'array',
                    //     required: true,
                    //     message: 'Please select at least one activity type',
                    //     trigger: 'change',
                    // }, ],
                    // resource: [{
                    //     required: true,
                    //     message: 'Please select activity resource',
                    //     trigger: 'change'
                    // }, ],
                    // desc: [{
                    //     required: true,
                    //     message: 'Please input activity form',
                    //     trigger: 'blur'
                    // }],
                }
            };
        },
        methods: {
            disabledDate(current) {
                return current < moment().subtract(1, "day");
            },
            getCalendarContainer(trigger) {
                return trigger => trigger.parentNode;
            },
            handleClose(removedTag) {
                const tags = this.tags.filter(tag => tag !== removedTag);
                //console.log(tags);
                this.tags = tags;
            },
 
            showInput() {
                this.inputVisible = true;
                this.$nextTick(function() {
                    this.$refs.input.focus();
                });
            },
 
            handleInputChange(e) {
                this.inputValue = e.target.value;
            },
 
            handleInputConfirm() {
                const inputValue = this.inputValue;
                let tags = this.tags;
                if (inputValue && tags.indexOf(inputValue) === -1) {
                    tags = [...tags, inputValue];
                }
                //console.log(tags);
                Object.assign(this, {
                    tags,
                    inputVisible: false,
                    inputValue: '',
                });
            },
 
        },
    };
</script>
 
<style lang="less">
    @media screen and(max-width: 575px) {
        .ant-form-item-label {
            padding: 8px !important;
        }
    }
 
    .myTip {
        font-size: 10px;
        color: #999;
    }
 
    .myBorder {
        border: 1px solid #999;
        border-radius: 10px;
    }
 
    .ant-upload-list-item-info {
        a {
            color: #999;
        }
    }
 
    /* tile uploaded pictures */
    .upload-list-inline>.ant-upload-list-item {
        float: left;
        width: 100px;
        margin-right: 8px;
    }
 
    .upload-list-inline>.ant-upload-animate-enter {
        animation-name: uploadAnimateInlineIn;
    }
 
    .upload-list-inline>.ant-upload-animate-leave {
        animation-name: uploadAnimateInlineOut;
    }
</style>