Skip to content

Commit 03be36c

Browse files
committed
代码优化
1 parent 215e92a commit 03be36c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+5090
-5091
lines changed

TODO.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
- [ ] editor支持emoji、全屏、emoji,预览样式优化、toolbar置顶
12
- [ ] 日志
3+
- [ ] 文章页面,右侧:分类、热门文章、热门标签,左侧:目录
24
- [ ] 右下角+全屏、二维码、分享
35
- [ ] 404、500页面自定义
4-
- [ ] 评论editor支持emoji
5-
- [ ] 文章editor支持全屏、emoji、alert、上传文件
66
- [ ] 首页右侧还可考虑:精彩评论、友情链接
77
- [ ] 博客日历高亮显示有文章的那天
88
- [ ] 单独的搜索页面
@@ -11,4 +11,6 @@
1111
- [ ] 文章编辑页原创转载翻译tag、置顶
1212
- [ ] 文字自动缓存,防止session过期或无刷新
1313
- [ ] 文章支持修改发布时间
14-
- [ ] 发送私信、私信管理(已读)、右上角icon+数量
14+
- [ ] 发送私信、私信管理(已读)、右上角icon+数量
15+
- [ ] 自己开发一款Markdown编辑器
16+
- [ ] 支持 Docker

blog.config.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { IBlogConfig } from '@/types';
22

33
const config: IBlogConfig = {
4-
host: '0.0.0.0',
5-
port: 9000,
6-
enableHTTPS: false,
7-
mongoUrl: 'mongodb://localhost:27017/iBlog_v2',
8-
jwtSecret: 'myblogjsonwebtokensecretkey'
4+
host: '0.0.0.0',
5+
port: 9000,
6+
enableHTTPS: false,
7+
mongoUrl: 'mongodb://localhost:27017/iBlog_v2',
8+
jwtSecret: 'myblogjsonwebtokensecretkey'
99
};
1010

1111
export default config;

components/ArticleContent.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
<script lang="ts">
77
import Vue from 'vue';
88
export default Vue.extend({
9-
props: {
10-
html: {
11-
type: String,
12-
default: ''
13-
}
9+
props: {
10+
html: {
11+
type: String,
12+
default: ''
1413
}
14+
}
1515
});
1616
</script>
1717

1818
<style>
1919
.article-content h1 {
20-
position: relative;
20+
position: relative;
2121
font-size: 2rem;
2222
margin: 2.75rem 0 1rem;
2323
padding-bottom: 0.5rem;

components/CategoryList.vue

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
import Vue, { PropOptions } from 'vue';
1515
import { ICategory } from '@/types/schema';
1616
export default Vue.extend({
17-
props: {
18-
categories: {
19-
type: Array,
20-
default () {
21-
return [];
22-
}
23-
} as PropOptions<Array<ICategory>>
24-
}
17+
props: {
18+
categories: {
19+
type: Array,
20+
default () {
21+
return [];
22+
}
23+
} as PropOptions<Array<ICategory>>
24+
}
2525
});
2626
</script>
2727
<style scoped>

components/CommentItem.vue

+16-16
Original file line numberDiff line numberDiff line change
@@ -50,24 +50,24 @@ import Vue, { PropOptions } from 'vue';
5050
import moment from 'moment';
5151
import { IComment } from '@/types/schema';
5252
export default Vue.extend({
53-
props: {
54-
comment: {
55-
type: Object,
56-
default: null
57-
} as PropOptions<IComment>,
58-
avatar: {
59-
type: String,
60-
default: ''
61-
} as PropOptions<string>
53+
props: {
54+
comment: {
55+
type: Object,
56+
default: null
57+
} as PropOptions<IComment>,
58+
avatar: {
59+
type: String,
60+
default: ''
61+
} as PropOptions<string>
62+
},
63+
computed: {
64+
commentTime (): string {
65+
return moment(this.comment.createTime).fromNow();
6266
},
63-
computed: {
64-
commentTime (): string {
65-
return moment(this.comment.createTime).fromNow();
66-
},
67-
commentTime2 (): string {
68-
return moment(this.comment.createTime).format('YYYY-MM-DD HH:mm:ss');
69-
}
67+
commentTime2 (): string {
68+
return moment(this.comment.createTime).format('YYYY-MM-DD HH:mm:ss');
7069
}
70+
}
7171
});
7272
</script>
7373
<style scoped>

0 commit comments

Comments
 (0)