Skip to content

Commit b10866e

Browse files
committed
代码块渲染优化
1 parent fc42206 commit b10866e

File tree

4 files changed

+118
-23
lines changed

4 files changed

+118
-23
lines changed

nuxt.config.js

+15-3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ module.exports = {
5454
{
5555
src: '~/plugins/vant.js'
5656
},
57+
{
58+
src: '~/plugins/clipboard.js',
59+
mode: 'client'
60+
},
5761
{
5862
src: '~/plugins/lib-flexible.js',
5963
mode: 'client'
@@ -115,9 +119,17 @@ module.exports = {
115119
router: {
116120
base: '/blogNuxtM/',
117121
scrollBehavior(to, from, savedPosition) {
118-
return {
119-
x: 0,
120-
y: 0
122+
if (to.hash) {
123+
return {
124+
selector: to.hash
125+
}
126+
} else if (savedPosition) {
127+
return savedPosition
128+
} else {
129+
return {
130+
x: 0,
131+
y: 0
132+
}
121133
}
122134
}
123135
}

package-lock.json

+38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
"@nuxtjs/dotenv": "^1.4.0",
2828
"@nuxtjs/proxy": "^1.3.3",
2929
"amfe-flexible": "^2.2.1",
30+
"clipboard": "^2.0.6",
31+
"connect-history-api-fallback": "^1.6.0",
3032
"cross-env": "^5.2.0",
3133
"dayjs": "^1.8.21",
3234
"express": "^4.16.4",

pages/detail/_id.vue

+63-20
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import dayjs from 'dayjs'
3636
import 'highlight.js/scss/default.scss'
3737
import 'github-markdown-css/github-markdown.css'
3838
import 'highlight.js/styles/vs2015.css'
39+
import Clipboard from 'clipboard'
3940
4041
export default {
4142
name: 'Detail',
@@ -56,7 +57,8 @@ export default {
5657
},
5758
data() {
5859
return {
59-
tocShow: false
60+
tocShow: false,
61+
clipboard: ''
6062
}
6163
},
6264
computed: {
@@ -82,6 +84,20 @@ export default {
8284
return dayjs(this.info.articleUpdateTime).format('YYYY-MM-DD HH:mm:ss')
8385
}
8486
},
87+
mounted() {
88+
this.$nextTick(() => {
89+
this.clipboard = new Clipboard('.copy-btn')
90+
this.clipboard.on('success', (e) => {
91+
this.$toast.success('复制成功')
92+
})
93+
this.clipboard.on('error', (e) => {
94+
this.$toast.fail('复制成功失败')
95+
})
96+
})
97+
},
98+
destroyed() {
99+
this.clipboard.destroy()
100+
},
85101
methods: {
86102
async addStar() {
87103
const result = await this.$axios.$post('/api/vue-blog/addStar', {
@@ -146,6 +162,7 @@ export default {
146162
z-index: 10;
147163
background-color: #fff;
148164
box-shadow: -2px 2px 4px #ccc;
165+
border-radius: 4px 0 0 4px;
149166
&.markdownIt-TOC::before {
150167
content: '文章目录:';
151168
font-weight: 700;
@@ -158,36 +175,62 @@ export default {
158175
background: #1e1e1e !important;
159176
}
160177
pre.hljs {
161-
padding: 14px 2px;
162-
border-radius: 5px;
178+
padding: 18px 2px 18px 40px !important;
179+
border-radius: 5px !important;
163180
position: relative;
164-
ol {
165-
list-style: decimal;
166-
margin: 0;
167-
margin-left: 40px;
168-
padding: 0;
169-
li {
170-
list-style: decimal-leading-zero;
171-
position: relative;
172-
padding-left: 10px;
173-
.line-num {
174-
position: absolute;
175-
left: -40px;
176-
top: 0;
177-
width: 40px;
178-
height: 100%;
179-
border-right: 1px solid rgba(0, 0, 0, 0.66);
181+
font-size: 14px !important;
182+
line-height: 22px !important;
183+
overflow: hidden !important;
184+
code {
185+
display: block !important;
186+
margin: 0 10px !important;
187+
overflow-x: auto !important;
188+
}
189+
.line-numbers-rows {
190+
position: absolute;
191+
pointer-events: none;
192+
top: 18px;
193+
bottom: 18px;
194+
left: 0;
195+
font-size: 100%;
196+
width: 40px;
197+
text-align: center;
198+
letter-spacing: -1px;
199+
border-right: 1px solid rgba(0, 0, 0, 0.66);
200+
user-select: none;
201+
counter-reset: linenumber;
202+
span {
203+
pointer-events: none;
204+
display: block;
205+
counter-increment: linenumber;
206+
&:before {
207+
content: counter(linenumber);
208+
color: #999;
209+
display: block;
210+
text-align: center;
180211
}
181212
}
182213
}
183214
b.name {
184215
position: absolute;
185216
top: 2px;
186-
right: 12px;
217+
right: 50px;
187218
z-index: 10;
188219
color: #999;
189220
pointer-events: none;
190221
}
222+
.copy-btn {
223+
position: absolute;
224+
padding: 0 4px;
225+
top: 2px;
226+
right: 4px;
227+
z-index: 10;
228+
color: #333;
229+
cursor: pointer;
230+
background-color: #fff;
231+
border: 0;
232+
border-radius: 2px;
233+
}
191234
}
192235
}
193236
&.no-toc {

0 commit comments

Comments
 (0)