inleft
2022-08-17 bc95187efc506413cf85749fe36fe748cf75fed5
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
<template>
    <div class="article-meta">
        <div>
            <a-button @click="()=>this.$router.back(-1)" style="position: absolute;">
                <a-icon type="left" />
            </a-button>
        </div>
 
        <div v-if="showMsg && !myLock">
            <div class="mySecretSamll" v-if="articleFileType==myConstant.fileTypeShort">
                <p>碎碎念只有那么一点了</p>
                <p>但是下面依旧可以碎碎念</p>
            </div>
 
            <div class="mySecret" v-else>
                <h1>怎样才能让你看到我呢</h1>
                <h1>只要你要,只要我有...</h1>
                <span class="myTip">{{errorMsg}}</span>
            </div>
        </div>
 
        <div v-else>
            <div class="mySecret" v-if="myLock">
                <h1>越不正经的人越深情..</h1>
                <h3>受庇护的文字..输入神秘代码以解除封印</h3>
 
                <a-auto-complete v-model="secret" ref="mySearch" v-bind="search" @blur="pressEnter">
                    <a-input-password @pressEnter="pressEnter">
                        <a-icon slot="prefix" type="lock" style="color:rgba(0,0,0,.25)" />
                    </a-input-password>
                </a-auto-complete>
                <span class="myTip">{{errorMsg}}</span>
            </div>
 
            <div class="mySecret" v-else-if="articleFileType==myConstant.fileTypeVideo
                || articleFileType==myConstant.fileTypeMp3
                || articleFileType==myConstant.fileTypeShort">
 
                <div class="mySecretSamll" v-if="introduce.length==0">
                    <p>碎碎念只有那么一点了</p>
                    <p>但是下面依旧可以碎碎念</p>
                </div>
                <pre style="white-space: pre-line;">
                {{introduce}}
                </pre>
            </div>
 
            <div class="markdown-body article-detail" v-else>
                <vue-markdown :source="source"></vue-markdown>
            </div>
        </div>
 
        <div class="articleInfoMiniData">
            <div class="smallOption" @click="articleOptionHandle('dislike')">
                <a-icon type="dislike" style="margin-top: 2px;" />
            </div>
            <div>
                <a-icon type="read" class="samllPadding" />
                <span>{{articelMeta.readCount==null?'--':articelMeta.readCount}}</span>
            </div>
            <div class="smallOption" @click="articleOptionHandle('like')">
                <a-icon type="like" class="samllPadding" />
                <span>{{articelMeta.likeCount==null?'0':articelMeta.likeCount}}</span>
            </div>
            <div>
                <!-- <a-icon type="folder-open" class="samllPadding" /> -->
                <a-icon type="book" class="samllPadding" />
                <span>{{articelMeta.articleTypeName==null?'--':articelMeta.articleTypeName}}</span>
            </div>
            <div>
                <a-icon type="calendar" class="samllPadding" />
                <span>{{articelMeta.publishDate==null?'--':articelMeta.publishDate}}</span>
            </div>
        </div>
        <div class="articleComment">
            <comment ref="myComment" :articleId="articleId" :isAllowedComment="isAllowedComment" />
        </div>
 
    </div>
 
</template>
 
<script>
    import VueMarkdown from 'vue-markdown'
    import md5 from 'js-md5';
 
    import {
        queryBlogArticleDetail
    } from '../../api/blogArticle.js'
    import comment from "../mini/box12-comment.vue"
 
    import axios from 'axios'
    import myConstant from "../../config/myConstant.js"
 
    export default {
        components: {
            VueMarkdown,
            comment
        },
        data() {
            return {
                myConstant: myConstant,
                articelMeta: "",
                isAllowedComment: 1,
                introduce: "",
                articleId: "",
                articleFileType: myConstant.fileTypeMarkDown,
                source: "",
                showMsg: false,
                myLock: false,
                errorMsg: '',
                secret: '',
                search: {
                    placeholder: "",
                    autoFocus: false,
                    backfill: true,
                    value: '',
                    disabled: false
                },
            }
        },
        created() {
            this.articleId = this.$route.query.id;
            this.articleFileType = this.$route.query.articleFileType;
        },
        watch: {
            '$route'(to, from) {
                if ("mdDetail" === to.name) {
                    this.articleId = this.$route.query.id;
                    this.articleFileType = this.$route.query.articleFileType;
                }
            },
            articleId: function(newValue, oldValue) {
                if (newValue == undefined || newValue == null || newValue == "") {
                    this.showMsg = true;
                    this.errorMsg = "日志id参数缺失";
                } else {
                    this.queryDetail();
                    this.$refs.myComment.updateCommentList(this.articleId);
                }
            },
        },
        methods: {
            articleOptionHandle(type) {
                this.$message.info(type)
            },
            queryDetail() {
                this.showMsg = true;
                this.errorMsg = "加载中..";
 
                // if (this.articleFileType == myConstant.fileTypeShort) {
                //     this.errorMsg = "该类型日志在这里没有更多啦..";
                //     return
                // }
 
                queryBlogArticleDetail({
                    id: this.articleId,
                    authWord: this.secret == "" ? null : md5(this.secret)
                }).then((res) => {
                    this.showMsg = true;
                    this.myLock = false;
                    this.errorMsg = res.message;
                    this.source = "";
                    if (res.code != 200) {
 
                        if (res.code == 1019001) {
                            //日志需要授权
                            this.errorMsg = "";
                            this.myLock = true;
                        } else if (res.code == 1019002) {
                            //授权码错误
                            this.errorMsg = "口令错误..神秘力量依然阻止了你的前进";
                            this.myLock = true;
                        } else {
                            this.$notification.error({
                                message: '好像哪里不对劲..',
                                description: res.message,
                                placement: 'bottomRight'
                            });
                        }
                        return
                    }
                    // this.test = res.data.isAllowedComment == 1 ? true : false;
 
                    this.isAllowedComment = res.data.isAllowedComment;
                    this.introduce = res.data.introduce;
                    this.articleFileType = res.data.articleFileType;
 
                    this.articelMeta = res.data;
 
                    if (res.data.articleFileType == myConstant.fileTypeMarkDown ||
                        res.data.articleFileType == myConstant.fileTypeHtml) {
 
                        this.$axios
                            .get(res.data.articleFileURL)
                            .then((res) => {
                                this.source = res.data;
                            })
                    }
 
                    //获取日志资源文件
                    this.showMsg = false;
                    this.errorMsg = "";
                })
            },
            pressEnter() {
                if (this.secret == "") {
                    return
                }
                this.search.disabled = true
                this.source = "";
                this.$message
                    .loading('卍解..', 1)
                    .then(() => {
                        this.queryDetail();
                        this.search.disabled = false;
                    })
 
            }
        },
 
    }
</script>
 
<style lang="less">
    @import '../../assets/md.less';
 
 
    .smallOption {
        transition-function: ease-out;
        transition-duration: 200ms;
        -webkit-transition-function: ease-out;
        -webkit-transition-duration: 200ms;
        -moztransition-function: ease-out;
        -moztransition-duration: 200ms;
        -o-transition-function: ease-out;
        -o-transition-duration: 200ms;
    }
 
    .smallOption:hover {
        transform: scale(1.55, 1.55);
        -webkit-transform: scale(1.55, 1.55);
        -moz-transform: scale(1.55, 1.55);
        -o-transform: scale(1.55, 1.55);
    }
 
    .articleInfoMiniData {
        user-select: none;
        box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1), -8px -8px 18px #ffffff;
        padding: 10px 50px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
 
    .mySecret {
        height: 515px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: auto;
        align-items: center;
    }
 
    .mySecretSamll {
        padding: 30px 10px 10px;
        height: 115px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: auto;
        align-items: center;
    }
 
 
    .markdown-body,
    .articleComment {
        min-height: 70%;
        padding: 30px 20px 20px 20px;
        box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1),
            -8px -8px 18px #ffffff;
    }
 
    /* #test{
        padding-left: 25%;
        padding-right: 25%;
    } */
    /* h3 {
        margin: 40px 0 0;
    }
 
    ul {
        list-style-type: none;
        padding: 0;
    }
 
    li {
        display: inline-block;
        margin: 0 10px;
    }
 
    a {
        color: #42b983;
    }
    
     */
 
 
    /* 自己也可以再调整调整 (贡献一版 我们调整的一版样式) */
    /* .markdown-body {
        padding: 20px;
        min-width: 200px;
        max-width: 900px;
        font-size: 12px;
 
        h2 {
            font-size: 18px;
            margin: 1em 0 15px;
            padding-top: 0.8em;
            padding-bottom: 0.8em;
        }
 
        h3 {
            font-size: 14px;
            margin: 22px 0 16px;
        }
 
        h4 {
            font-size: 13px;
            margin: 20px 0 16px;
        }
 
        h5 {
            font-size: 12px;
            margin: 16px 0 16px;
            font-weight: 700;
        }
 
        p {
            font-size: 12px;
            line-height: 24px;
            color: #666666;
            margin-top: 0px;
            margin: 8px 0;
            margin: 14px 0 14px;
        }
 
        pre {
            background-color: #eee;
            margin-bottom: 8px;
            margin-top: 8px;
            margin: 12px 0 12px;
        }
 
        blockquote {
            margin-bottom: 8px;
            margin-top: 8px;
            margin: 14px 0 14px;
            background-color: #eee;
            padding: 16px 16px;
        }
 
        tr {
            background-color: #f5f5f5;
        }
 
        code {
            background-color: #eee;
        }
 
        ul,
        ol,
        li {
            list-style: unset;
            font-size: 12px;
            line-height: 20px;
            color: #666666;
            margin-top: 0px;
            margin: 8px 0;
        }
 
        blockquote {
            border-color: #48b6e2;
        }
 
        table {
            display: table;
            width: 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }
    } */
</style>