mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
feat: 新增設置代碼行數限制,顯示展開按鈕
improvement: prismjs 可以配置 code_word_wrap improvement: 搜索 hover 效果與其它目錄一致 improvement: css 優化 fix: 修復prismjs 無法識別的語言 顯示 null 而不是顯示 code 的 bug fix: 修復默認代碼大小不會隨着字體放大/放小而改變的bug fix: 修復prismjs 在ios safari 下自動換行的bug
This commit is contained in:
parent
2f3094cc0a
commit
7bc46c47ed
@ -27,6 +27,7 @@ highlight_theme: light # darker / pale night / light / ocean / mac / mac light
|
|||||||
highlight_copy: true # copy button
|
highlight_copy: true # copy button
|
||||||
highlight_lang: true # show the code language
|
highlight_lang: true # show the code language
|
||||||
highlight_shrink: false # true: shrink the code blocks / false: expand the code blocks | none: expand code blocks and hide the button
|
highlight_shrink: false # true: shrink the code blocks / false: expand the code blocks | none: expand code blocks and hide the button
|
||||||
|
highlight_height_limit: false # unit: px
|
||||||
code_word_wrap: false
|
code_word_wrap: false
|
||||||
|
|
||||||
# copy settings
|
# copy settings
|
||||||
|
|||||||
@ -78,7 +78,8 @@
|
|||||||
highlight = JSON.stringify({
|
highlight = JSON.stringify({
|
||||||
plugin: config.highlight.enable ? 'highlighjs' : 'prismjs',
|
plugin: config.highlight.enable ? 'highlighjs' : 'prismjs',
|
||||||
highlightCopy: theme.highlight_copy,
|
highlightCopy: theme.highlight_copy,
|
||||||
highlightLang: theme.highlight_lang
|
highlightLang: theme.highlight_lang,
|
||||||
|
highlightHeightLimit: theme.highlight_height_limit
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -20,7 +20,7 @@ if theme.menu
|
|||||||
ul.menus_item_child
|
ul.menus_item_child
|
||||||
each val,lab in value
|
each val,lab in value
|
||||||
li
|
li
|
||||||
a.site-page(href=url_for(trim(val.split('||')[0])))
|
a.site-page.child(href=url_for(trim(val.split('||')[0])))
|
||||||
if val.split('||')[1]
|
if val.split('||')[1]
|
||||||
i.fa-fw(class=trim(val.split('||')[1]))
|
i.fa-fw(class=trim(val.split('||')[1]))
|
||||||
span=' '+ lab
|
span=' '+ lab
|
||||||
2
layout/includes/third-party/pjax.pug
vendored
2
layout/includes/third-party/pjax.pug
vendored
@ -45,7 +45,7 @@ script.
|
|||||||
// google analytics
|
// google analytics
|
||||||
typeof gtag === 'function' && gtag('config', '!{theme.google_analytics}', {'page_path': window.location.pathname});
|
typeof gtag === 'function' && gtag('config', '!{theme.google_analytics}', {'page_path': window.location.pathname});
|
||||||
|
|
||||||
//- // baidu analytics
|
// baidu analytics
|
||||||
typeof _hmt === 'object' && _hmt.push(['_trackPageview',window.location.pathname]);
|
typeof _hmt === 'object' && _hmt.push(['_trackPageview',window.location.pathname]);
|
||||||
|
|
||||||
typeof loadMeting === 'function' && document.getElementsByClassName('aplayer').length && loadMeting()
|
typeof loadMeting === 'function' && document.getElementsByClassName('aplayer').length && loadMeting()
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hexo-theme-butterfly",
|
"name": "hexo-theme-butterfly",
|
||||||
"version": "3.7.0-b6",
|
"version": "3.7.0-b7",
|
||||||
"description": "A Simple and Card UI Design theme for Hexo",
|
"description": "A Simple and Card UI Design theme for Hexo",
|
||||||
"main": "package.json",
|
"main": "package.json",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
// https://github.com/equinusocio/vsc-material-theme
|
|
||||||
$highlight_theme = hexo-config('highlight_theme')
|
$highlight_theme = hexo-config('highlight_theme')
|
||||||
$highlighEnable = hexo-config('highlight_settings') && hexo-config('highlight_settings.enable')
|
$highlighEnable = hexo-config('highlight_settings') && hexo-config('highlight_settings.enable')
|
||||||
$prismjsEnable = hexo-config('prismjs_settings') && hexo-config('prismjs_settings.enable')
|
$prismjsEnable = hexo-config('prismjs_settings') && hexo-config('prismjs_settings.enable')
|
||||||
@ -6,6 +5,16 @@ wordWrap = !hexo-config('highlight_settings.line_number') && hexo-config('code_w
|
|||||||
|
|
||||||
@require 'theme'
|
@require 'theme'
|
||||||
|
|
||||||
|
:root
|
||||||
|
--hl-color: $highlight-foreground
|
||||||
|
--hl-bg: $highlight-background
|
||||||
|
--hltools-bg: $highlight-tools.bg-color
|
||||||
|
--hltools-color: $highlight-tools.color
|
||||||
|
--hlnumber-bg: $highlight-gutter.bg-color
|
||||||
|
--hlnumber-color: $highlight-gutter.color
|
||||||
|
--hlscrollbar-bg: $highlight-scrollbar
|
||||||
|
--hlexpand-bg: linear-gradient(180deg, rgba($highlight-background, .6), rgba($highlight-background, .9))
|
||||||
|
|
||||||
if $highlighEnable
|
if $highlighEnable
|
||||||
@require 'highlight/index'
|
@require 'highlight/index'
|
||||||
|
|
||||||
@ -16,8 +25,8 @@ $code-block
|
|||||||
overflow: auto
|
overflow: auto
|
||||||
margin: 0 0 1rem
|
margin: 0 0 1rem
|
||||||
padding: 0
|
padding: 0
|
||||||
background: $highlight-background
|
background: var(--hl-bg)
|
||||||
color: $highlight-foreground
|
color: var(--hl-color)
|
||||||
line-height: $line-height-code-block
|
line-height: $line-height-code-block
|
||||||
|
|
||||||
if wordWrap
|
if wordWrap
|
||||||
@ -56,9 +65,6 @@ blockquote
|
|||||||
padding: .1rem .2rem
|
padding: .1rem .2rem
|
||||||
background: $code-background
|
background: $code-background
|
||||||
color: $code-foreground
|
color: $code-foreground
|
||||||
word-wrap: break-word
|
|
||||||
word-break: break-word
|
|
||||||
overflow-wrap: break-word
|
|
||||||
|
|
||||||
pre
|
pre
|
||||||
@extend $code-block
|
@extend $code-block
|
||||||
@ -67,7 +73,7 @@ blockquote
|
|||||||
code
|
code
|
||||||
padding: 0
|
padding: 0
|
||||||
background: none
|
background: none
|
||||||
color: $highlight-foreground
|
color: var(--hl-color)
|
||||||
text-shadow: none
|
text-shadow: none
|
||||||
|
|
||||||
figure.highlight
|
figure.highlight
|
||||||
@ -88,10 +94,10 @@ blockquote
|
|||||||
a
|
a
|
||||||
float: right
|
float: right
|
||||||
padding-right: 10px
|
padding-right: 10px
|
||||||
color: $highlight-foreground
|
color: var(--hl-color)
|
||||||
|
|
||||||
&:hover
|
&:hover
|
||||||
border-bottom-color: $highlight-foreground
|
border-bottom-color: var(--hl-color)
|
||||||
|
|
||||||
.highlight-tools
|
.highlight-tools
|
||||||
position: relative
|
position: relative
|
||||||
@ -100,8 +106,8 @@ blockquote
|
|||||||
overflow: hidden
|
overflow: hidden
|
||||||
min-height: 1.2rem
|
min-height: 1.2rem
|
||||||
height: 2.15em
|
height: 2.15em
|
||||||
background: $highlight-tools.bg-color
|
background: var(--hltools-bg)
|
||||||
color: $highlight-tools.color
|
color: var(--hltools-color)
|
||||||
font-size: $code-font-size
|
font-size: $code-font-size
|
||||||
|
|
||||||
&.closed + table
|
&.closed + table
|
||||||
@ -185,3 +191,38 @@ blockquote
|
|||||||
|
|
||||||
.code-lang
|
.code-lang
|
||||||
left: 3.8rem !important
|
left: 3.8rem !important
|
||||||
|
|
||||||
|
if hexo-config('highlight_height_limit')
|
||||||
|
.code-expand-btn
|
||||||
|
position: absolute
|
||||||
|
bottom: 0
|
||||||
|
z-index: 10
|
||||||
|
width: 100%
|
||||||
|
background: var(--hlexpand-bg)
|
||||||
|
text-align: center
|
||||||
|
font-size: $code-font-size
|
||||||
|
cursor: pointer
|
||||||
|
|
||||||
|
i
|
||||||
|
padding: .3rem 0
|
||||||
|
color: var(--hlnumber-color)
|
||||||
|
animation: code-expand-key 1.2s infinite
|
||||||
|
|
||||||
|
&.expand-done
|
||||||
|
display: none !important
|
||||||
|
|
||||||
|
&:not(.expand-done)
|
||||||
|
& ~ table,
|
||||||
|
& ~ pre
|
||||||
|
overflow: hidden
|
||||||
|
height: unit(hexo-config('highlight_height_limit'), px)
|
||||||
|
|
||||||
|
@keyframes code-expand-key
|
||||||
|
0%
|
||||||
|
opacity: .6
|
||||||
|
|
||||||
|
50%
|
||||||
|
opacity: .1
|
||||||
|
|
||||||
|
100%
|
||||||
|
opacity: .6
|
||||||
@ -1,7 +1,7 @@
|
|||||||
figure.highlight
|
figure.highlight
|
||||||
table
|
table
|
||||||
&::-webkit-scrollbar-thumb
|
&::-webkit-scrollbar-thumb
|
||||||
background: $highlight-scrollbar
|
background: var(--hlscrollbar-bg)
|
||||||
|
|
||||||
pre .deletion
|
pre .deletion
|
||||||
color: $highlight-deletion
|
color: $highlight-deletion
|
||||||
|
|||||||
@ -9,7 +9,7 @@ if $highlight_theme != false
|
|||||||
display: inline-block
|
display: inline-block
|
||||||
padding: 0 .3rem 0 0
|
padding: 0 .3rem 0 0
|
||||||
min-width: 1.6rem
|
min-width: 1.6rem
|
||||||
color: $highlight-gutter.color
|
color: var(--hlnumber-color)
|
||||||
content: counter(line)
|
content: counter(line)
|
||||||
counter-increment: line
|
counter-increment: line
|
||||||
text-align: left
|
text-align: left
|
||||||
@ -29,8 +29,8 @@ if $highlight_theme != false
|
|||||||
.gutter pre
|
.gutter pre
|
||||||
padding-right: .5rem
|
padding-right: .5rem
|
||||||
padding-left: .5rem
|
padding-left: .5rem
|
||||||
background-color: $highlight-gutter.bg-color
|
background-color: var(--hlnumber-bg)
|
||||||
color: $highlight-gutter.color
|
color: var(--hlnumber-color)
|
||||||
text-align: right
|
text-align: right
|
||||||
|
|
||||||
.code pre
|
.code pre
|
||||||
|
|||||||
@ -7,7 +7,7 @@ if $highlight_theme != false
|
|||||||
#article-container
|
#article-container
|
||||||
pre[class*='language-']
|
pre[class*='language-']
|
||||||
&::-webkit-scrollbar-thumb
|
&::-webkit-scrollbar-thumb
|
||||||
background: $highlight-scrollbar
|
background: var(--hlscrollbar-bg)
|
||||||
|
|
||||||
&:not(.line-numbers)
|
&:not(.line-numbers)
|
||||||
padding: 10px 20px
|
padding: 10px 20px
|
||||||
|
|||||||
@ -8,9 +8,16 @@
|
|||||||
|
|
||||||
> code
|
> code
|
||||||
position: relative
|
position: relative
|
||||||
white-space: inherit
|
|
||||||
line-height: $line-height-code-block
|
line-height: $line-height-code-block
|
||||||
|
|
||||||
|
if hexo-config('code_word_wrap')
|
||||||
|
white-space: pre-wrap
|
||||||
|
else
|
||||||
|
white-space: inherit
|
||||||
|
word-wrap: normal
|
||||||
|
word-break: normal
|
||||||
|
overflow-wrap: normal
|
||||||
|
|
||||||
.line-numbers-rows
|
.line-numbers-rows
|
||||||
position: absolute
|
position: absolute
|
||||||
top: 0
|
top: 0
|
||||||
@ -29,6 +36,6 @@
|
|||||||
&:before
|
&:before
|
||||||
display: block
|
display: block
|
||||||
padding-right: .8em
|
padding-right: .8em
|
||||||
color: $highlight-gutter.color
|
color: var(--hlnumber-color)
|
||||||
content: counter(linenumber)
|
content: counter(linenumber)
|
||||||
text-align: right
|
text-align: right
|
||||||
|
|||||||
@ -303,22 +303,6 @@ _:future,
|
|||||||
padding: 4px
|
padding: 4px
|
||||||
transition: transform .3s
|
transition: transform .3s
|
||||||
|
|
||||||
& > a
|
|
||||||
&:after
|
|
||||||
position: absolute
|
|
||||||
bottom: 0
|
|
||||||
left: 0
|
|
||||||
z-index: -1
|
|
||||||
width: 0
|
|
||||||
height: 3px
|
|
||||||
background-color: lighten($theme-color, 30%)
|
|
||||||
content: ''
|
|
||||||
transition: all .3s ease-in-out
|
|
||||||
|
|
||||||
&:hover
|
|
||||||
&:after
|
|
||||||
width: 100%
|
|
||||||
|
|
||||||
.menus_item_child
|
.menus_item_child
|
||||||
position: absolute
|
position: absolute
|
||||||
right: 0
|
right: 0
|
||||||
@ -377,3 +361,19 @@ _:future,
|
|||||||
text-shadow: .05rem .05rem .1rem rgba($dark-black, .3)
|
text-shadow: .05rem .05rem .1rem rgba($dark-black, .3)
|
||||||
font-size: .78em
|
font-size: .78em
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
|
|
||||||
|
&:not(.child)
|
||||||
|
&:after
|
||||||
|
position: absolute
|
||||||
|
bottom: 0
|
||||||
|
left: 0
|
||||||
|
z-index: -1
|
||||||
|
width: 0
|
||||||
|
height: 3px
|
||||||
|
background-color: lighten($theme-color, 30%)
|
||||||
|
content: ''
|
||||||
|
transition: all .3s ease-in-out
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
&:after
|
||||||
|
width: 100%
|
||||||
|
|||||||
@ -27,6 +27,14 @@ if hexo-config('darkmode.enable') || hexo-config('display_mode') == 'dark'
|
|||||||
--blockquote-bg: lighten(#121212, 10)
|
--blockquote-bg: lighten(#121212, 10)
|
||||||
--reward-pop: lighten(#121212, 10)
|
--reward-pop: lighten(#121212, 10)
|
||||||
--toc-link-color: alpha(#FFFFFF, .6)
|
--toc-link-color: alpha(#FFFFFF, .6)
|
||||||
|
--hl-color: alpha(#FFFFFF, .7)
|
||||||
|
--hl-bg: lighten(#121212, 2)
|
||||||
|
--hltools-bg: lighten(#121212, 3)
|
||||||
|
--hltools-color: #90a4ae
|
||||||
|
--hlnumber-bg: lighten(#121212, 2)
|
||||||
|
--hlnumber-color: alpha(#FFFFFF, .4)
|
||||||
|
--hlscrollbar-bg: lighten(#121212, 5)
|
||||||
|
--hlexpand-bg: linear-gradient(180deg, rgba(lighten(#121212, 2), .6), rgba(lighten(#121212, 2), .9))
|
||||||
|
|
||||||
#web_bg:before,
|
#web_bg:before,
|
||||||
#footer:before,
|
#footer:before,
|
||||||
@ -42,7 +50,10 @@ if hexo-config('darkmode.enable') || hexo-config('display_mode') == 'dark'
|
|||||||
background: #2c2c2c
|
background: #2c2c2c
|
||||||
|
|
||||||
pre > code
|
pre > code
|
||||||
background: 0
|
background: lighten(#121212, 2)
|
||||||
|
|
||||||
|
figure.highlight
|
||||||
|
box-shadow: none
|
||||||
|
|
||||||
.note
|
.note
|
||||||
code
|
code
|
||||||
@ -63,33 +74,6 @@ if hexo-config('darkmode.enable') || hexo-config('display_mode') == 'dark'
|
|||||||
background: alpha(#121212, .8)
|
background: alpha(#121212, .8)
|
||||||
box-shadow: 0 5px 6px -5px rgba(133, 133, 133, 0)
|
box-shadow: 0 5px 6px -5px rgba(133, 133, 133, 0)
|
||||||
|
|
||||||
// 代碼框
|
|
||||||
#article-container
|
|
||||||
pre,
|
|
||||||
.highlight:not(.js-file-line-container)
|
|
||||||
background-color: lighten(#121212, 2) !important
|
|
||||||
color: alpha(#FFFFFF, .7) !important
|
|
||||||
|
|
||||||
figure.highlight
|
|
||||||
box-shadow: none
|
|
||||||
|
|
||||||
if hexo-config('highlight_settings') && hexo-config('highlight_settings.enable')
|
|
||||||
table::-webkit-scrollbar-thumb
|
|
||||||
background: lighten(#121212, 5)
|
|
||||||
|
|
||||||
.line:before
|
|
||||||
color: alpha(#FFFFFF, .7) !important
|
|
||||||
|
|
||||||
.hljs
|
|
||||||
background-color: lighten(#121212, 2) !important
|
|
||||||
|
|
||||||
pre[class*='language-']::-webkit-scrollbar-thumb
|
|
||||||
background: lighten(#121212, 5)
|
|
||||||
|
|
||||||
.highlight-tools
|
|
||||||
background: lighten(#121212, 3) !important
|
|
||||||
color: #90a4ae !important
|
|
||||||
|
|
||||||
#post-comment
|
#post-comment
|
||||||
#comment-switch
|
#comment-switch
|
||||||
if hexo-config('comments.text')
|
if hexo-config('comments.text')
|
||||||
@ -118,16 +102,6 @@ if hexo-config('darkmode.enable') || hexo-config('display_mode') == 'dark'
|
|||||||
#aside-content .aside-list > .aside-list-item:not(:last-child)
|
#aside-content .aside-list > .aside-list-item:not(:last-child)
|
||||||
border-bottom: 1px dashed alpha(#FFFFFF, .1)
|
border-bottom: 1px dashed alpha(#FFFFFF, .1)
|
||||||
|
|
||||||
// 第三方
|
|
||||||
// 插件 hexo-blog-encrypt
|
|
||||||
#hexo-blog-encrypt
|
|
||||||
label,
|
|
||||||
input
|
|
||||||
color: alpha(#FFFFFF, .7) !important
|
|
||||||
|
|
||||||
input
|
|
||||||
background-color: #121212
|
|
||||||
|
|
||||||
// Gitalk
|
// Gitalk
|
||||||
#gitalk-container
|
#gitalk-container
|
||||||
filter: brightness(.8)
|
filter: brightness(.8)
|
||||||
@ -135,7 +109,7 @@ if hexo-config('darkmode.enable') || hexo-config('display_mode') == 'dark'
|
|||||||
svg
|
svg
|
||||||
fill: alpha(#FFFFFF, .9) !important
|
fill: alpha(#FFFFFF, .9) !important
|
||||||
|
|
||||||
// Disqus and Disqusjs
|
// Disqusjs 反代模式下的適配
|
||||||
#disqus_thread
|
#disqus_thread
|
||||||
#dsqjs
|
#dsqjs
|
||||||
.dsqjs-tab-active,
|
.dsqjs-tab-active,
|
||||||
|
|||||||
@ -28,7 +28,7 @@ $title-prefix-icon = $beautifyEnable ? hexo-config('beautify.title-prefix-icon')
|
|||||||
$title-prefix-icon-color = $beautifyEnable ? convert(hexo-config('beautify.title-prefix-icon-color')) : $light-red
|
$title-prefix-icon-color = $beautifyEnable ? convert(hexo-config('beautify.title-prefix-icon-color')) : $light-red
|
||||||
// Global Variables
|
// Global Variables
|
||||||
$font-size = hexo-config('font.global-font-size') ? convert(hexo-config('font.global-font-size')) : 14px
|
$font-size = hexo-config('font.global-font-size') ? convert(hexo-config('font.global-font-size')) : 14px
|
||||||
$code-font-size = hexo-config('font.code-font-size') ? convert(hexo-config('font.code-font-size')) : $font-size
|
$code-font-size = hexo-config('font.code-font-size') ? convert(hexo-config('font.code-font-size')) : var(--global-font-size)
|
||||||
$font-color = #1F2D3D
|
$font-color = #1F2D3D
|
||||||
$rem = 20px
|
$rem = 20px
|
||||||
$text-line-height = 2
|
$text-line-height = 2
|
||||||
|
|||||||
@ -81,123 +81,142 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
* 只適用於Hexo默認的代碼渲染
|
* 只適用於Hexo默認的代碼渲染
|
||||||
*/
|
*/
|
||||||
const addHighlightTool = function () {
|
const addHighlightTool = function () {
|
||||||
const isHighlightCopy = GLOBAL_CONFIG.highlight.highlightCopy
|
const highLight = GLOBAL_CONFIG.highlight
|
||||||
const isHighlightLang = GLOBAL_CONFIG.highlight.highlightLang
|
if (!highLight) return
|
||||||
|
|
||||||
|
const isHighlightCopy = highLight.highlightCopy
|
||||||
|
const isHighlightLang = highLight.highlightLang
|
||||||
const isHighlightShrink = GLOBAL_CONFIG_SITE.isHighlightShrink
|
const isHighlightShrink = GLOBAL_CONFIG_SITE.isHighlightShrink
|
||||||
|
const highlightHeightLimit = highLight.highlightHeightLimit
|
||||||
const isShowTool = isHighlightCopy || isHighlightLang || isHighlightShrink !== undefined
|
const isShowTool = isHighlightCopy || isHighlightLang || isHighlightShrink !== undefined
|
||||||
const $figureHighlight = GLOBAL_CONFIG.highlight.plugin === 'highlighjs' ? document.querySelectorAll('figure.highlight') : document.querySelectorAll('pre[class*="language-"]')
|
const $figureHighlight = highLight.plugin === 'highlighjs' ? document.querySelectorAll('figure.highlight') : document.querySelectorAll('pre[class*="language-"]')
|
||||||
|
|
||||||
if (isShowTool && $figureHighlight.length) {
|
if (!((isShowTool || highlightHeightLimit) && $figureHighlight.length)) return
|
||||||
const isPrismjs = GLOBAL_CONFIG.highlight.plugin === 'prismjs'
|
|
||||||
|
|
||||||
let highlightShrinkEle = ''
|
const isPrismjs = highLight.plugin === 'prismjs'
|
||||||
let highlightCopyEle = ''
|
|
||||||
const highlightShrinkClass = isHighlightShrink === true ? 'closed' : ''
|
|
||||||
|
|
||||||
if (isHighlightShrink !== undefined) {
|
let highlightShrinkEle = ''
|
||||||
highlightShrinkEle = `<i class="fas fa-angle-down expand ${highlightShrinkClass}"></i>`
|
let highlightCopyEle = ''
|
||||||
}
|
const highlightShrinkClass = isHighlightShrink === true ? 'closed' : ''
|
||||||
|
|
||||||
if (isHighlightCopy) {
|
if (isHighlightShrink !== undefined) {
|
||||||
highlightCopyEle = '<div class="copy-notice"></div><i class="fas fa-paste copy-button"></i>'
|
highlightShrinkEle = `<i class="fas fa-angle-down expand ${highlightShrinkClass}"></i>`
|
||||||
}
|
}
|
||||||
|
|
||||||
const copy = (text, ctx) => {
|
if (isHighlightCopy) {
|
||||||
if (document.queryCommandSupported && document.queryCommandSupported('copy')) {
|
highlightCopyEle = '<div class="copy-notice"></div><i class="fas fa-paste copy-button"></i>'
|
||||||
document.execCommand('copy')
|
}
|
||||||
if (GLOBAL_CONFIG.Snackbar !== undefined) {
|
|
||||||
btf.snackbarShow(GLOBAL_CONFIG.copy.success)
|
const copy = (text, ctx) => {
|
||||||
} else {
|
if (document.queryCommandSupported && document.queryCommandSupported('copy')) {
|
||||||
const prevEle = ctx.previousElementSibling
|
document.execCommand('copy')
|
||||||
prevEle.innerText = GLOBAL_CONFIG.copy.success
|
if (GLOBAL_CONFIG.Snackbar !== undefined) {
|
||||||
prevEle.style.opacity = 1
|
btf.snackbarShow(GLOBAL_CONFIG.copy.success)
|
||||||
setTimeout(() => { prevEle.style.opacity = 0 }, 700)
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
if (GLOBAL_CONFIG.Snackbar !== undefined) {
|
const prevEle = ctx.previousElementSibling
|
||||||
btf.snackbarShow(GLOBAL_CONFIG.copy.noSupport)
|
prevEle.innerText = GLOBAL_CONFIG.copy.success
|
||||||
} else {
|
prevEle.style.opacity = 1
|
||||||
ctx.previousElementSibling.innerText = GLOBAL_CONFIG.copy.noSupport
|
setTimeout(() => { prevEle.style.opacity = 0 }, 700)
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// click events
|
|
||||||
const highlightCopyFn = (ele) => {
|
|
||||||
const $buttonParent = ele.parentNode
|
|
||||||
$buttonParent.classList.add('copy-true')
|
|
||||||
const selection = window.getSelection()
|
|
||||||
const range = document.createRange()
|
|
||||||
if (isPrismjs) range.selectNodeContents($buttonParent.querySelectorAll('pre code')[0])
|
|
||||||
else range.selectNodeContents($buttonParent.querySelectorAll('table .code pre')[0])
|
|
||||||
selection.removeAllRanges()
|
|
||||||
selection.addRange(range)
|
|
||||||
const text = selection.toString()
|
|
||||||
copy(text, ele.lastChild)
|
|
||||||
selection.removeAllRanges()
|
|
||||||
$buttonParent.classList.remove('copy-true')
|
|
||||||
}
|
|
||||||
|
|
||||||
const highlightShrinkFn = (ele) => {
|
|
||||||
const $nextEle = [...ele.parentNode.children].slice(1)
|
|
||||||
ele.firstChild.classList.toggle('closed')
|
|
||||||
if (btf.isHidden($nextEle[0])) {
|
|
||||||
$nextEle.forEach(e => { e.style.display = 'block' })
|
|
||||||
} else {
|
|
||||||
$nextEle.forEach(e => { e.style.display = 'none' })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const highlightToolsFn = function (e) {
|
|
||||||
const $target = e.target.classList
|
|
||||||
if ($target.contains('expand')) highlightShrinkFn(this)
|
|
||||||
else if ($target.contains('copy-button')) highlightCopyFn(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
const createEle = () => {
|
|
||||||
const newEle = document.createElement('div')
|
|
||||||
newEle.className = `highlight-tools ${highlightShrinkClass}`
|
|
||||||
newEle.addEventListener('click', highlightToolsFn)
|
|
||||||
return newEle
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isHighlightLang) {
|
|
||||||
if (isPrismjs) {
|
|
||||||
$figureHighlight.forEach(function (item) {
|
|
||||||
const langName = item.getAttribute('data-language') !== undefined ? item.getAttribute('data-language') : 'Code'
|
|
||||||
const highlightLangEle = `<div class="code-lang">${langName}</div>`
|
|
||||||
btf.wrap(item, 'figure', '', 'highlight')
|
|
||||||
const newEle = createEle()
|
|
||||||
newEle.innerHTML = highlightShrinkEle + highlightLangEle + highlightCopyEle
|
|
||||||
item.parentNode.insertBefore(newEle, item)
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
$figureHighlight.forEach(function (item) {
|
|
||||||
let langName = item.getAttribute('class').split(' ')[1]
|
|
||||||
if (langName === 'plain' || langName === undefined) langName = 'Code'
|
|
||||||
const highlightLangEle = `<div class="code-lang">${langName}</div>`
|
|
||||||
const newEle = createEle()
|
|
||||||
newEle.innerHTML = highlightShrinkEle + highlightLangEle + highlightCopyEle
|
|
||||||
item.insertBefore(newEle, item.firstChild)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (isPrismjs) {
|
if (GLOBAL_CONFIG.Snackbar !== undefined) {
|
||||||
$figureHighlight.forEach(function (item) {
|
btf.snackbarShow(GLOBAL_CONFIG.copy.noSupport)
|
||||||
btf.wrap(item, 'figure', '', 'highlight')
|
|
||||||
const newEle = createEle()
|
|
||||||
newEle.innerHTML = highlightShrinkEle + highlightCopyEle
|
|
||||||
item.parentNode.insertBefore(newEle, item)
|
|
||||||
})
|
|
||||||
} else {
|
} else {
|
||||||
$figureHighlight.forEach(function (item) {
|
ctx.previousElementSibling.innerText = GLOBAL_CONFIG.copy.noSupport
|
||||||
const newEle = createEle()
|
|
||||||
newEle.innerHTML = highlightShrinkEle + highlightCopyEle
|
|
||||||
item.insertBefore(newEle, item.firstChild)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// click events
|
||||||
|
const highlightCopyFn = (ele) => {
|
||||||
|
const $buttonParent = ele.parentNode
|
||||||
|
$buttonParent.classList.add('copy-true')
|
||||||
|
const selection = window.getSelection()
|
||||||
|
const range = document.createRange()
|
||||||
|
if (isPrismjs) range.selectNodeContents($buttonParent.querySelectorAll('pre code')[0])
|
||||||
|
else range.selectNodeContents($buttonParent.querySelectorAll('table .code pre')[0])
|
||||||
|
selection.removeAllRanges()
|
||||||
|
selection.addRange(range)
|
||||||
|
const text = selection.toString()
|
||||||
|
copy(text, ele.lastChild)
|
||||||
|
selection.removeAllRanges()
|
||||||
|
$buttonParent.classList.remove('copy-true')
|
||||||
|
}
|
||||||
|
|
||||||
|
const highlightShrinkFn = (ele) => {
|
||||||
|
const $nextEle = [...ele.parentNode.children].slice(1)
|
||||||
|
ele.firstChild.classList.toggle('closed')
|
||||||
|
if (btf.isHidden($nextEle[0])) {
|
||||||
|
$nextEle.forEach(e => { e.style.display = 'block' })
|
||||||
|
} else {
|
||||||
|
$nextEle.forEach(e => { e.style.display = 'none' })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const highlightToolsFn = function (e) {
|
||||||
|
const $target = e.target.classList
|
||||||
|
if ($target.contains('expand')) highlightShrinkFn(this)
|
||||||
|
else if ($target.contains('copy-button')) highlightCopyFn(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
const expandCode = function () {
|
||||||
|
this.classList.toggle('expand-done')
|
||||||
|
}
|
||||||
|
|
||||||
|
function createEle (lang, item, service) {
|
||||||
|
const fragment = document.createDocumentFragment()
|
||||||
|
|
||||||
|
if (isShowTool) {
|
||||||
|
const hlTools = document.createElement('div')
|
||||||
|
hlTools.className = `highlight-tools ${highlightShrinkClass}`
|
||||||
|
hlTools.innerHTML = highlightShrinkEle + lang + highlightCopyEle
|
||||||
|
hlTools.addEventListener('click', highlightToolsFn)
|
||||||
|
fragment.appendChild(hlTools)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (highlightHeightLimit && item.offsetHeight > highlightHeightLimit + 30) {
|
||||||
|
const ele = document.createElement('div')
|
||||||
|
ele.className = 'code-expand-btn'
|
||||||
|
ele.innerHTML = '<i class="fas fa-angle-double-down"></i>'
|
||||||
|
ele.addEventListener('click', expandCode)
|
||||||
|
fragment.appendChild(ele)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (service === 'hl') {
|
||||||
|
item.insertBefore(fragment, item.firstChild)
|
||||||
|
} else {
|
||||||
|
item.parentNode.insertBefore(fragment, item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isHighlightLang) {
|
||||||
|
if (isPrismjs) {
|
||||||
|
$figureHighlight.forEach(function (item) {
|
||||||
|
const langName = item.getAttribute('data-language') ? item.getAttribute('data-language') : 'Code'
|
||||||
|
const highlightLangEle = `<div class="code-lang">${langName}</div>`
|
||||||
|
btf.wrap(item, 'figure', '', 'highlight')
|
||||||
|
createEle(highlightLangEle, item)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
$figureHighlight.forEach(function (item) {
|
||||||
|
let langName = item.getAttribute('class').split(' ')[1]
|
||||||
|
if (langName === 'plain' || langName === undefined) langName = 'Code'
|
||||||
|
const highlightLangEle = `<div class="code-lang">${langName}</div>`
|
||||||
|
createEle(highlightLangEle, item, 'hl')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (isPrismjs) {
|
||||||
|
$figureHighlight.forEach(function (item) {
|
||||||
|
btf.wrap(item, 'figure', '', 'highlight')
|
||||||
|
createEle('', item)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
$figureHighlight.forEach(function (item) {
|
||||||
|
createEle('', item, 'hl')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -819,7 +838,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
|
|
||||||
sidebarFn()
|
sidebarFn()
|
||||||
GLOBAL_CONFIG_SITE.isHome && scrollDownInIndex()
|
GLOBAL_CONFIG_SITE.isHome && scrollDownInIndex()
|
||||||
GLOBAL_CONFIG.highlight && addHighlightTool()
|
addHighlightTool()
|
||||||
GLOBAL_CONFIG.isPhotoFigcaption && addPhotoFigcaption()
|
GLOBAL_CONFIG.isPhotoFigcaption && addPhotoFigcaption()
|
||||||
jqLoadAndRun()
|
jqLoadAndRun()
|
||||||
GLOBAL_CONFIG.lightbox === 'mediumZoom' && addMediumZoom()
|
GLOBAL_CONFIG.lightbox === 'mediumZoom' && addMediumZoom()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user