Skip to content

Commit 15730a0

Browse files
committed
重构
Signed-off-by: Teeoo <[email protected]>
1 parent 41371d4 commit 15730a0

Some content is hidden

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

59 files changed

+11628
-1469
lines changed

.eslintrc.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ module.exports = {
1414
'plugin:prettier/recommended',
1515
'plugin:nuxt/recommended'
1616
],
17-
plugins: ['prettier'],
17+
plugins: [
18+
'prettier'
19+
],
1820
// add your custom rules here
1921
rules: {
20-
'nuxt/no-cjs-in-config': 'off',
21-
'vue/no-v-html': 0
22+
'nuxt/no-cjs-in-config': 'off'
2223
}
2324
}

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Created by .ignore support plugin (hsz.mobi)
22
### Node template
33
# Logs
4-
logs
4+
/logs
55
*.log
66
npm-debug.log*
77
yarn-debug.log*

.prettierrc

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"printWidth": 150,
32
"semi": false,
43
"arrowParens": "always",
54
"singleQuote": true

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# teeoo.cn
22

3-
> 迷失的人迷失了,相逢的人会再相逢
3+
> 愿你历尽千帆,归来仍是少年
44
55
## Build Setup
66

app/router.scrollBehavior.js

-3
This file was deleted.

assets/main.styl

+1-2
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,4 @@
7373
&:hover
7474
transform rotate(180deg)
7575
-webkit-transform rotate(180deg)
76-
-moz-transform rotate(180deg)
77-
76+
-moz-transform rotate(180deg)

assets/markdown.styl

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@ ol#footnotes
192192
content counter(footer-counter) ". "
193193
counter-increment footer-counter
194194
font-weight 800
195-
font-size 0.95em
195+
font-size 0.95em

components/comments/forms.vue

-96
This file was deleted.

components/comments/index.vue

-26
This file was deleted.

components/comments/list.vue

-69
This file was deleted.

components/layout/drawer.vue

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
<template>
2+
<v-navigation-drawer
3+
app
4+
floating
5+
:value="value"
6+
:mini-variant.sync="mini"
7+
@input="$emit('input', $event)"
8+
>
9+
<v-list dense nav rounded>
10+
<v-list-item>
11+
<v-list-item-avatar>
12+
<v-img
13+
src="https://s.gravatar.com/avatar/54ed5f99a080b72b65da031c53d44578?s=100&r=x&d=retro"
14+
></v-img>
15+
</v-list-item-avatar>
16+
<v-list-item-content>
17+
<v-list-item-title>lee</v-list-item-title>
18+
<v-list-item-subtitle>[email protected]</v-list-item-subtitle>
19+
</v-list-item-content>
20+
<v-btn icon small @click.stop="mini = !mini">
21+
<v-icon>chevron_left</v-icon>
22+
</v-btn>
23+
</v-list-item>
24+
<v-text-field
25+
class="d-lg-none"
26+
flat
27+
label="查找"
28+
prepend-inner-icon="search"
29+
solo-inverted
30+
></v-text-field>
31+
<v-subheader>导航</v-subheader>
32+
<v-list-item
33+
v-for="(data, index) in nav"
34+
:key="index"
35+
link
36+
:to="data.link"
37+
>
38+
<v-list-item-icon>
39+
<v-icon>{{ data.icon }}</v-icon>
40+
</v-list-item-icon>
41+
<v-list-item-content>
42+
<v-list-item-title>{{ data.text }}</v-list-item-title>
43+
</v-list-item-content>
44+
</v-list-item>
45+
<v-subheader>页面</v-subheader>
46+
<v-list-item link>
47+
<v-list-item-icon>
48+
<v-icon>links</v-icon>
49+
</v-list-item-icon>
50+
<v-list-item-content>
51+
<v-list-item-title>友情链接</v-list-item-title>
52+
</v-list-item-content>
53+
</v-list-item>
54+
<v-subheader>统计</v-subheader>
55+
<v-list-item>
56+
<v-list-item-content>
57+
<v-list-item-title>文章总数</v-list-item-title>
58+
</v-list-item-content>
59+
<v-list-item-action-text
60+
><v-chip label small color="red" text-color="white">0 </v-chip>
61+
</v-list-item-action-text>
62+
</v-list-item>
63+
<v-list-item>
64+
<v-list-item-content>
65+
<v-list-item-title>评论总数</v-list-item-title>
66+
</v-list-item-content>
67+
<v-list-item-action-text
68+
><v-chip label small color="red" text-color="white">0 </v-chip>
69+
</v-list-item-action-text>
70+
</v-list-item>
71+
</v-list>
72+
<template v-slot:append>
73+
<v-toolbar>
74+
<v-row>
75+
<v-col class="text-center" cols="4">
76+
<v-btn small text>
77+
<v-icon>settings</v-icon>
78+
</v-btn>
79+
</v-col>
80+
<v-col class="text-center" cols="4">
81+
<v-btn small text>
82+
<v-icon>rss_feed</v-icon>
83+
</v-btn>
84+
</v-col>
85+
<v-col class="text-center" cols="4">
86+
<v-btn small text @click="toggle">
87+
<v-icon>{{
88+
isFullscreen ? 'fullscreen_exit' : 'fullscreen'
89+
}}</v-icon>
90+
</v-btn>
91+
</v-col>
92+
</v-row>
93+
</v-toolbar>
94+
</template>
95+
</v-navigation-drawer>
96+
</template>
97+
98+
<script>
99+
// import { mapActions } from 'vuex'
100+
import screenfull from 'screenfull'
101+
// import gql from 'graphql-tag'
102+
export default {
103+
name: 'Drawer',
104+
props: {
105+
value: {
106+
type: Boolean,
107+
default: false
108+
}
109+
},
110+
data() {
111+
return {
112+
pages: [],
113+
isFullscreen: false,
114+
mini: false,
115+
nav: [
116+
{ icon: 'home', text: '首页', link: '/' },
117+
{ icon: 'bookmark', text: '分类', link: '/01' },
118+
{ icon: 'local_offer', text: '标签', link: '/02' }
119+
]
120+
}
121+
},
122+
methods: {
123+
toggle() {
124+
if (screenfull.isEnabled) {
125+
screenfull.toggle()
126+
screenfull.on('change', () => {
127+
this.isFullscreen = screenfull.isFullscreen
128+
})
129+
}
130+
}
131+
// ...mapActions('drawer', ['setDrawerPages'])
132+
}
133+
}
134+
</script>
135+
136+
<style scoped></style>

0 commit comments

Comments
 (0)