2022-05-03 12:05:41 +02:00
"use strict" ;
function _objectDestructuringEmpty ( obj ) { if ( obj == null ) throw new TypeError ( "Cannot destructure undefined" ) ; }
function _createForOfIteratorHelper ( o , allowArrayLike ) { var it = typeof Symbol !== "undefined" && o [ Symbol . iterator ] || o [ "@@iterator" ] ; if ( ! it ) { if ( Array . isArray ( o ) || ( it = _unsupportedIterableToArray ( o ) ) || allowArrayLike && o && typeof o . length === "number" ) { if ( it ) o = it ; var i = 0 ; var F = function F ( ) { } ; return { s : F , n : function n ( ) { if ( i >= o . length ) return { done : true } ; return { done : false , value : o [ i ++ ] } ; } , e : function e ( _e2 ) { throw _e2 ; } , f : F } ; } throw new TypeError ( "Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." ) ; } var normalCompletion = true , didErr = false , err ; return { s : function s ( ) { it = it . call ( o ) ; } , n : function n ( ) { var step = it . next ( ) ; normalCompletion = step . done ; return step ; } , e : function e ( _e3 ) { didErr = true ; err = _e3 ; } , f : function f ( ) { try { if ( ! normalCompletion && it . return != null ) it . return ( ) ; } finally { if ( didErr ) throw err ; } } } ; }
function _toConsumableArray ( arr ) { return _arrayWithoutHoles ( arr ) || _iterableToArray ( arr ) || _unsupportedIterableToArray ( arr ) || _nonIterableSpread ( ) ; }
function _nonIterableSpread ( ) { throw new TypeError ( "Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." ) ; }
function _unsupportedIterableToArray ( o , minLen ) { if ( ! o ) return ; if ( typeof o === "string" ) return _arrayLikeToArray ( o , minLen ) ; var n = Object . prototype . toString . call ( o ) . slice ( 8 , - 1 ) ; if ( n === "Object" && o . constructor ) n = o . constructor . name ; if ( n === "Map" || n === "Set" ) return Array . from ( o ) ; if ( n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/ . test ( n ) ) return _arrayLikeToArray ( o , minLen ) ; }
function _iterableToArray ( iter ) { if ( typeof Symbol !== "undefined" && iter [ Symbol . iterator ] != null || iter [ "@@iterator" ] != null ) return Array . from ( iter ) ; }
function _arrayWithoutHoles ( arr ) { if ( Array . isArray ( arr ) ) return _arrayLikeToArray ( arr ) ; }
function _arrayLikeToArray ( arr , len ) { if ( len == null || len > arr . length ) len = arr . length ; for ( var i = 0 , arr2 = new Array ( len ) ; i < len ; i ++ ) { arr2 [ i ] = arr [ i ] ; } return arr2 ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( "Cannot call a class as a function" ) ; } }
function _defineProperties ( target , props ) { for ( var i = 0 ; i < props . length ; i ++ ) { var descriptor = props [ i ] ; descriptor . enumerable = descriptor . enumerable || false ; descriptor . configurable = true ; if ( "value" in descriptor ) descriptor . writable = true ; Object . defineProperty ( target , descriptor . key , descriptor ) ; } }
function _createClass ( Constructor , protoProps , staticProps ) { if ( protoProps ) _defineProperties ( Constructor . prototype , protoProps ) ; if ( staticProps ) _defineProperties ( Constructor , staticProps ) ; Object . defineProperty ( Constructor , "prototype" , { writable : false } ) ; return Constructor ; }
var Util = /*#__PURE__*/ function ( ) {
function Util ( ) {
_classCallCheck ( this , Util ) ;
}
_createClass ( Util , [ {
key : "forEach" ,
value : function forEach ( elements , handler ) {
elements = elements || [ ] ;
for ( var i = 0 ; i < elements . length ; i ++ ) {
handler ( elements [ i ] ) ;
}
}
} , {
key : "getScrollTop" ,
value : function getScrollTop ( ) {
return document . documentElement && document . documentElement . scrollTop || document . body . scrollTop ;
}
} , {
key : "isMobile" ,
value : function isMobile ( ) {
return window . matchMedia ( 'only screen and (max-width: 680px)' ) . matches ;
}
} , {
key : "isTocStatic" ,
value : function isTocStatic ( ) {
return window . matchMedia ( 'only screen and (max-width: 960px)' ) . matches ;
}
} , {
key : "animateCSS" ,
value : function animateCSS ( element , animation , reserved , callback ) {
var _element$classList ;
if ( ! Array . isArray ( animation ) ) animation = [ animation ] ;
2022-05-06 20:22:58 +02:00
( _element$classList = element . classList ) . add . apply ( _element$classList , [ 'animate__animated' ] . concat ( _toConsumableArray ( animation ) ) ) ;
2022-05-03 12:05:41 +02:00
var handler = function handler ( ) {
var _element$classList2 ;
2022-05-06 20:22:58 +02:00
( _element$classList2 = element . classList ) . remove . apply ( _element$classList2 , [ 'animate__animated' ] . concat ( _toConsumableArray ( animation ) ) ) ;
2022-05-03 12:05:41 +02:00
element . removeEventListener ( 'animationend' , handler ) ;
if ( typeof callback === 'function' ) callback ( ) ;
} ;
if ( ! reserved ) element . addEventListener ( 'animationend' , handler , false ) ;
}
} ] ) ;
return Util ;
} ( ) ;
var Theme = /*#__PURE__*/ function ( ) {
function Theme ( ) {
_classCallCheck ( this , Theme ) ;
this . config = window . config ;
this . data = this . config . data ;
this . isDark = document . body . getAttribute ( 'theme' ) === 'dark' ;
this . util = new Util ( ) ;
this . newScrollTop = this . util . getScrollTop ( ) ;
this . oldScrollTop = this . newScrollTop ;
this . scrollEventSet = new Set ( ) ;
this . resizeEventSet = new Set ( ) ;
this . switchThemeEventSet = new Set ( ) ;
this . clickMaskEventSet = new Set ( ) ;
if ( window . objectFitImages ) objectFitImages ( ) ;
}
_createClass ( Theme , [ {
2022-05-06 19:20:39 +02:00
key : "initRaw" ,
value : function initRaw ( ) {
var _this = this ;
this . util . forEach ( document . querySelectorAll ( '[data-raw]' ) , function ( $raw ) {
$raw . innerHTML = _this . data [ $raw . id ] ;
} ) ;
}
} , {
2022-05-03 12:05:41 +02:00
key : "initSVGIcon" ,
value : function initSVGIcon ( ) {
this . util . forEach ( document . querySelectorAll ( '[data-svg-src]' ) , function ( $icon ) {
fetch ( $icon . getAttribute ( 'data-svg-src' ) ) . then ( function ( response ) {
return response . text ( ) ;
} ) . then ( function ( svg ) {
var $temp = document . createElement ( 'div' ) ;
$temp . insertAdjacentHTML ( 'afterbegin' , svg ) ;
var $svg = $temp . firstChild ;
$svg . setAttribute ( 'data-svg-src' , $icon . getAttribute ( 'data-svg-src' ) ) ;
$svg . classList . add ( 'icon' ) ;
var $titleElements = $svg . getElementsByTagName ( 'title' ) ;
if ( $titleElements . length ) $svg . removeChild ( $titleElements [ 0 ] ) ;
$icon . parentElement . replaceChild ( $svg , $icon ) ;
} ) . catch ( function ( err ) {
console . error ( err ) ;
} ) ;
} ) ;
}
} , {
key : "initTwemoji" ,
value : function initTwemoji ( ) {
if ( this . config . twemoji ) twemoji . parse ( document . body ) ;
}
} , {
key : "initMenuMobile" ,
value : function initMenuMobile ( ) {
var $menuToggleMobile = document . getElementById ( 'menu-toggle-mobile' ) ;
var $menuMobile = document . getElementById ( 'menu-mobile' ) ;
$menuToggleMobile . addEventListener ( 'click' , function ( ) {
document . body . classList . toggle ( 'blur' ) ;
$menuToggleMobile . classList . toggle ( 'active' ) ;
$menuMobile . classList . toggle ( 'active' ) ;
} , false ) ;
this . _menuMobileOnClickMask = this . _menuMobileOnClickMask || function ( ) {
$menuToggleMobile . classList . remove ( 'active' ) ;
$menuMobile . classList . remove ( 'active' ) ;
} ;
this . clickMaskEventSet . add ( this . _menuMobileOnClickMask ) ;
}
} , {
key : "initSwitchTheme" ,
value : function initSwitchTheme ( ) {
2022-05-06 19:20:39 +02:00
var _this2 = this ;
2022-05-03 12:05:41 +02:00
this . util . forEach ( document . getElementsByClassName ( 'theme-switch' ) , function ( $themeSwitch ) {
$themeSwitch . addEventListener ( 'click' , function ( ) {
if ( document . body . getAttribute ( 'theme' ) === 'dark' ) document . body . setAttribute ( 'theme' , 'light' ) ; else document . body . setAttribute ( 'theme' , 'dark' ) ;
2022-05-06 19:20:39 +02:00
_this2 . isDark = ! _this2 . isDark ;
window . localStorage && localStorage . setItem ( 'theme' , _this2 . isDark ? 'dark' : 'light' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
var _iterator = _createForOfIteratorHelper ( _this2 . switchThemeEventSet ) ,
2022-05-03 12:05:41 +02:00
_step ;
try {
for ( _iterator . s ( ) ; ! ( _step = _iterator . n ( ) ) . done ; ) {
var event = _step . value ;
event ( ) ;
}
} catch ( err ) {
_iterator . e ( err ) ;
} finally {
_iterator . f ( ) ;
}
} , false ) ;
} ) ;
}
} , {
key : "initSearch" ,
value : function initSearch ( ) {
2022-05-06 19:20:39 +02:00
var _this3 = this ;
2022-05-03 12:05:41 +02:00
var searchConfig = this . config . search ;
var isMobile = this . util . isMobile ( ) ;
if ( ! searchConfig || isMobile && this . _searchMobileOnce || ! isMobile && this . _searchDesktopOnce ) return ;
var maxResultLength = searchConfig . maxResultLength ? searchConfig . maxResultLength : 10 ;
var snippetLength = searchConfig . snippetLength ? searchConfig . snippetLength : 50 ;
var highlightTag = searchConfig . highlightTag ? searchConfig . highlightTag : 'em' ;
var suffix = isMobile ? 'mobile' : 'desktop' ;
var $header = document . getElementById ( "header-" . concat ( suffix ) ) ;
var $searchInput = document . getElementById ( "search-input-" . concat ( suffix ) ) ;
var $searchToggle = document . getElementById ( "search-toggle-" . concat ( suffix ) ) ;
var $searchLoading = document . getElementById ( "search-loading-" . concat ( suffix ) ) ;
var $searchClear = document . getElementById ( "search-clear-" . concat ( suffix ) ) ;
if ( isMobile ) {
this . _searchMobileOnce = true ;
$searchInput . addEventListener ( 'focus' , function ( ) {
document . body . classList . add ( 'blur' ) ;
$header . classList . add ( 'open' ) ;
} , false ) ;
document . getElementById ( 'search-cancel-mobile' ) . addEventListener ( 'click' , function ( ) {
$header . classList . remove ( 'open' ) ;
document . body . classList . remove ( 'blur' ) ;
document . getElementById ( 'menu-toggle-mobile' ) . classList . remove ( 'active' ) ;
document . getElementById ( 'menu-mobile' ) . classList . remove ( 'active' ) ;
$searchLoading . style . display = 'none' ;
$searchClear . style . display = 'none' ;
2022-05-06 19:20:39 +02:00
_this3 . _searchMobile && _this3 . _searchMobile . autocomplete . setVal ( '' ) ;
2022-05-03 12:05:41 +02:00
} , false ) ;
$searchClear . addEventListener ( 'click' , function ( ) {
$searchClear . style . display = 'none' ;
2022-05-06 19:20:39 +02:00
_this3 . _searchMobile && _this3 . _searchMobile . autocomplete . setVal ( '' ) ;
2022-05-03 12:05:41 +02:00
} , false ) ;
this . _searchMobileOnClickMask = this . _searchMobileOnClickMask || function ( ) {
$header . classList . remove ( 'open' ) ;
$searchLoading . style . display = 'none' ;
$searchClear . style . display = 'none' ;
2022-05-06 19:20:39 +02:00
_this3 . _searchMobile && _this3 . _searchMobile . autocomplete . setVal ( '' ) ;
2022-05-03 12:05:41 +02:00
} ;
this . clickMaskEventSet . add ( this . _searchMobileOnClickMask ) ;
} else {
this . _searchDesktopOnce = true ;
$searchToggle . addEventListener ( 'click' , function ( ) {
document . body . classList . add ( 'blur' ) ;
$header . classList . add ( 'open' ) ;
$searchInput . focus ( ) ;
} , false ) ;
$searchClear . addEventListener ( 'click' , function ( ) {
$searchClear . style . display = 'none' ;
2022-05-06 19:20:39 +02:00
_this3 . _searchDesktop && _this3 . _searchDesktop . autocomplete . setVal ( '' ) ;
2022-05-03 12:05:41 +02:00
} , false ) ;
this . _searchDesktopOnClickMask = this . _searchDesktopOnClickMask || function ( ) {
$header . classList . remove ( 'open' ) ;
$searchLoading . style . display = 'none' ;
$searchClear . style . display = 'none' ;
2022-05-06 19:20:39 +02:00
_this3 . _searchDesktop && _this3 . _searchDesktop . autocomplete . setVal ( '' ) ;
2022-05-03 12:05:41 +02:00
} ;
this . clickMaskEventSet . add ( this . _searchDesktopOnClickMask ) ;
}
$searchInput . addEventListener ( 'input' , function ( ) {
if ( $searchInput . value === '' ) $searchClear . style . display = 'none' ; else $searchClear . style . display = 'inline' ;
} , false ) ;
var initAutosearch = function initAutosearch ( ) {
var autosearch = autocomplete ( "#search-input-" . concat ( suffix ) , {
hint : false ,
autoselect : true ,
dropdownMenuContainer : "#search-dropdown-" . concat ( suffix ) ,
clearOnSelected : true ,
cssClasses : {
noPrefix : true
} ,
debug : true
} , {
name : 'search' ,
source : function source ( query , callback ) {
$searchLoading . style . display = 'inline' ;
$searchClear . style . display = 'none' ;
var finish = function finish ( results ) {
$searchLoading . style . display = 'none' ;
$searchClear . style . display = 'inline' ;
callback ( results ) ;
} ;
if ( searchConfig . type === 'lunr' ) {
var search = function search ( ) {
if ( lunr . queryHandler ) query = lunr . queryHandler ( query ) ;
var results = { } ;
2022-05-06 19:20:39 +02:00
_this3 . _index . search ( query ) . forEach ( function ( _ref ) {
2022-05-03 12:05:41 +02:00
var ref = _ref . ref ,
metadata = _ref . matchData . metadata ;
2022-05-06 19:20:39 +02:00
var matchData = _this3 . _indexData [ ref ] ;
2022-05-03 12:05:41 +02:00
var uri = matchData . uri ,
title = matchData . title ,
context = matchData . content ;
if ( results [ uri ] ) return ;
var position = 0 ;
Object . values ( metadata ) . forEach ( function ( _ref2 ) {
var content = _ref2 . content ;
if ( content ) {
var matchPosition = content . position [ 0 ] [ 0 ] ;
if ( matchPosition < position || position === 0 ) position = matchPosition ;
}
} ) ;
position -= snippetLength / 5 ;
if ( position > 0 ) {
position += context . substr ( position , 20 ) . lastIndexOf ( ' ' ) + 1 ;
context = '...' + context . substr ( position , snippetLength ) ;
} else {
context = context . substr ( 0 , snippetLength ) ;
}
Object . keys ( metadata ) . forEach ( function ( key ) {
title = title . replace ( new RegExp ( "(" . concat ( key , ")" ) , 'gi' ) , "<" . concat ( highlightTag , ">$1</" ) . concat ( highlightTag , ">" ) ) ;
context = context . replace ( new RegExp ( "(" . concat ( key , ")" ) , 'gi' ) , "<" . concat ( highlightTag , ">$1</" ) . concat ( highlightTag , ">" ) ) ;
} ) ;
results [ uri ] = {
'uri' : uri ,
'title' : title ,
'date' : matchData . date ,
'context' : context
} ;
} ) ;
return Object . values ( results ) . slice ( 0 , maxResultLength ) ;
} ;
2022-05-06 19:20:39 +02:00
if ( ! _this3 . _index ) {
2022-05-03 12:05:41 +02:00
fetch ( searchConfig . lunrIndexURL ) . then ( function ( response ) {
return response . json ( ) ;
} ) . then ( function ( data ) {
var indexData = { } ;
2022-05-06 19:20:39 +02:00
_this3 . _index = lunr ( function ( ) {
var _this4 = this ;
2022-05-03 12:05:41 +02:00
if ( searchConfig . lunrLanguageCode ) this . use ( lunr [ searchConfig . lunrLanguageCode ] ) ;
this . ref ( 'objectID' ) ;
this . field ( 'title' , {
boost : 50
} ) ;
this . field ( 'tags' , {
boost : 20
} ) ;
this . field ( 'categories' , {
boost : 20
} ) ;
this . field ( 'content' , {
boost : 10
} ) ;
this . metadataWhitelist = [ 'position' ] ;
data . forEach ( function ( record ) {
indexData [ record . objectID ] = record ;
2022-05-06 19:20:39 +02:00
_this4 . add ( record ) ;
2022-05-03 12:05:41 +02:00
} ) ;
} ) ;
2022-05-06 19:20:39 +02:00
_this3 . _indexData = indexData ;
2022-05-03 12:05:41 +02:00
finish ( search ( ) ) ;
} ) . catch ( function ( err ) {
console . error ( err ) ;
finish ( [ ] ) ;
} ) ;
} else finish ( search ( ) ) ;
} else if ( searchConfig . type === 'algolia' ) {
2022-05-06 19:20:39 +02:00
_this3 . _algoliaIndex = _this3 . _algoliaIndex || algoliasearch ( searchConfig . algoliaAppID , searchConfig . algoliaSearchKey ) . initIndex ( searchConfig . algoliaIndex ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this3 . _algoliaIndex . search ( query , {
2022-05-03 12:05:41 +02:00
offset : 0 ,
length : maxResultLength * 8 ,
attributesToHighlight : [ 'title' ] ,
attributesToSnippet : [ "content:" . concat ( snippetLength ) ] ,
highlightPreTag : "<" . concat ( highlightTag , ">" ) ,
highlightPostTag : "</" . concat ( highlightTag , ">" )
} ) . then ( function ( _ref3 ) {
var hits = _ref3 . hits ;
var results = { } ;
hits . forEach ( function ( _ref4 ) {
var uri = _ref4 . uri ,
date = _ref4 . date ,
title = _ref4 . _highlightResult . title ,
content = _ref4 . _snippetResult . content ;
if ( results [ uri ] && results [ uri ] . context . length > content . value ) return ;
results [ uri ] = {
uri : uri ,
title : title . value ,
date : date ,
context : content . value
} ;
} ) ;
finish ( Object . values ( results ) . slice ( 0 , maxResultLength ) ) ;
} ) . catch ( function ( err ) {
console . error ( err ) ;
finish ( [ ] ) ;
} ) ;
}
} ,
templates : {
suggestion : function suggestion ( _ref5 ) {
var title = _ref5 . title ,
date = _ref5 . date ,
context = _ref5 . context ;
return "<div><span class=\"suggestion-title\">" . concat ( title , "</span><span class=\"suggestion-date\">" ) . concat ( date , "</span></div><div class=\"suggestion-context\">" ) . concat ( context , "</div>" ) ;
} ,
empty : function empty ( _ref6 ) {
var query = _ref6 . query ;
return "<div class=\"search-empty\">" . concat ( searchConfig . noResultsFound , ": <span class=\"search-query\">\"" ) . concat ( query , "\"</span></div>" ) ;
} ,
footer : function footer ( _ref7 ) {
_objectDestructuringEmpty ( _ref7 ) ;
var _ref8 = searchConfig . type === 'algolia' ? {
searchType : 'algolia' ,
2022-05-06 19:54:31 +02:00
icon : '<i class="fab fa-algolia fa-fw" aria-hidden="true"></i>' ,
2022-05-03 12:05:41 +02:00
href : 'https://www.algolia.com/'
} : {
searchType : 'Lunr.js' ,
icon : '' ,
href : 'https://lunrjs.com/'
} ,
searchType = _ref8 . searchType ,
icon = _ref8 . icon ,
href = _ref8 . href ;
return "<div class=\"search-footer\">Search by <a href=\"" . concat ( href , "\" rel=\"noopener noreffer\" target=\"_blank\">" ) . concat ( icon , " " ) . concat ( searchType , "</a></div>" ) ;
}
}
} ) ;
autosearch . on ( 'autocomplete:selected' , function ( _event , suggestion , _dataset , _context ) {
window . location . assign ( suggestion . uri ) ;
} ) ;
2022-05-06 19:20:39 +02:00
if ( isMobile ) _this3 . _searchMobile = autosearch ; else _this3 . _searchDesktop = autosearch ;
2022-05-03 12:05:41 +02:00
} ;
if ( searchConfig . lunrSegmentitURL && ! document . getElementById ( 'lunr-segmentit' ) ) {
var script = document . createElement ( 'script' ) ;
script . id = 'lunr-segmentit' ;
script . type = 'text/javascript' ;
script . src = searchConfig . lunrSegmentitURL ;
script . async = true ;
if ( script . readyState ) {
script . onreadystatechange = function ( ) {
if ( script . readyState == 'loaded' || script . readyState == 'complete' ) {
script . onreadystatechange = null ;
initAutosearch ( ) ;
}
} ;
} else {
script . onload = function ( ) {
initAutosearch ( ) ;
} ;
}
document . body . appendChild ( script ) ;
} else initAutosearch ( ) ;
}
} , {
key : "initDetails" ,
value : function initDetails ( ) {
this . util . forEach ( document . getElementsByClassName ( 'details' ) , function ( $details ) {
var $summary = $details . getElementsByClassName ( 'details-summary' ) [ 0 ] ;
$summary . addEventListener ( 'click' , function ( ) {
$details . classList . toggle ( 'open' ) ;
} , false ) ;
} ) ;
}
} , {
key : "initLightGallery" ,
value : function initLightGallery ( ) {
2022-05-11 23:35:34 +02:00
if ( this . config . lightgallery ) lightGallery ( document . getElementById ( 'content' ) , {
plugins : [ lgThumbnail , lgZoom ] ,
selector : '.lightgallery' ,
speed : 400 ,
hideBarsDelay : 2000 ,
allowMediaOverlap : true ,
exThumbImage : 'data-thumbnail' ,
toggleThumb : true ,
thumbWidth : 80 ,
thumbHeight : '60px' ,
actualSize : false ,
showZoomInOutIcons : true
} ) ;
2022-05-03 12:05:41 +02:00
}
} , {
key : "initHighlight" ,
value : function initHighlight ( ) {
2022-05-06 19:20:39 +02:00
var _this5 = this ;
2022-05-03 12:05:41 +02:00
this . util . forEach ( document . querySelectorAll ( '.highlight > pre.chroma' ) , function ( $preChroma ) {
var $chroma = document . createElement ( 'div' ) ;
$chroma . className = $preChroma . className ;
var $table = document . createElement ( 'table' ) ;
$chroma . appendChild ( $table ) ;
var $tbody = document . createElement ( 'tbody' ) ;
$table . appendChild ( $tbody ) ;
var $tr = document . createElement ( 'tr' ) ;
$tbody . appendChild ( $tr ) ;
var $td = document . createElement ( 'td' ) ;
$tr . appendChild ( $td ) ;
$preChroma . parentElement . replaceChild ( $chroma , $preChroma ) ;
$td . appendChild ( $preChroma ) ;
} ) ;
this . util . forEach ( document . querySelectorAll ( '.highlight > .chroma' ) , function ( $chroma ) {
var $codeElements = $chroma . querySelectorAll ( 'pre.chroma > code' ) ;
if ( $codeElements . length ) {
var $code = $codeElements [ $codeElements . length - 1 ] ;
var $header = document . createElement ( 'div' ) ;
$header . className = 'code-header ' + $code . className . toLowerCase ( ) ;
var $title = document . createElement ( 'span' ) ;
$title . classList . add ( 'code-title' ) ;
2022-05-06 19:54:31 +02:00
$title . insertAdjacentHTML ( 'afterbegin' , '<i class="arrow fas fa-chevron-right fa-fw" aria-hidden="true"></i>' ) ;
2022-05-03 12:05:41 +02:00
$title . addEventListener ( 'click' , function ( ) {
$chroma . classList . toggle ( 'open' ) ;
} , false ) ;
$header . appendChild ( $title ) ;
var $ellipses = document . createElement ( 'span' ) ;
2022-05-06 19:54:31 +02:00
$ellipses . insertAdjacentHTML ( 'afterbegin' , '<i class="fas fa-ellipsis-h fa-fw" aria-hidden="true"></i>' ) ;
2022-05-03 12:05:41 +02:00
$ellipses . classList . add ( 'ellipses' ) ;
$ellipses . addEventListener ( 'click' , function ( ) {
$chroma . classList . add ( 'open' ) ;
} , false ) ;
$header . appendChild ( $ellipses ) ;
var $copy = document . createElement ( 'span' ) ;
2022-05-06 19:54:31 +02:00
$copy . insertAdjacentHTML ( 'afterbegin' , '<i class="far fa-copy fa-fw" aria-hidden="true"></i>' ) ;
2022-05-03 12:05:41 +02:00
$copy . classList . add ( 'copy' ) ;
var code = $code . innerText ;
2022-05-06 19:20:39 +02:00
if ( _this5 . config . code . maxShownLines < 0 || code . split ( '\n' ) . length < _this5 . config . code . maxShownLines + 2 ) $chroma . classList . add ( 'open' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
if ( _this5 . config . code . copyTitle ) {
2022-05-03 12:05:41 +02:00
$copy . setAttribute ( 'data-clipboard-text' , code ) ;
2022-05-06 19:20:39 +02:00
$copy . title = _this5 . config . code . copyTitle ;
2022-05-03 12:05:41 +02:00
var clipboard = new ClipboardJS ( $copy ) ;
clipboard . on ( 'success' , function ( _e ) {
2022-05-06 20:22:58 +02:00
_this5 . util . animateCSS ( $code , 'animate__flash' ) ;
2022-05-03 12:05:41 +02:00
} ) ;
$header . appendChild ( $copy ) ;
}
$chroma . insertBefore ( $header , $chroma . firstChild ) ;
}
} ) ;
}
} , {
key : "initTable" ,
value : function initTable ( ) {
this . util . forEach ( document . querySelectorAll ( '.content table' ) , function ( $table ) {
var $wrapper = document . createElement ( 'div' ) ;
$wrapper . className = 'table-wrapper' ;
$table . parentElement . replaceChild ( $wrapper , $table ) ;
$wrapper . appendChild ( $table ) ;
} ) ;
}
} , {
key : "initHeaderLink" ,
value : function initHeaderLink ( ) {
for ( var num = 1 ; num <= 6 ; num ++ ) {
this . util . forEach ( document . querySelectorAll ( '.single .content > h' + num ) , function ( $header ) {
$header . classList . add ( 'headerLink' ) ;
$header . insertAdjacentHTML ( 'afterbegin' , "<a href=\"#" . concat ( $header . id , "\" class=\"header-mark\"></a>" ) ) ;
} ) ;
}
}
} , {
key : "initToc" ,
value : function initToc ( ) {
2022-05-06 19:20:39 +02:00
var _this6 = this ;
2022-05-03 12:05:41 +02:00
var $tocCore = document . getElementById ( 'TableOfContents' ) ;
if ( $tocCore === null ) return ;
if ( document . getElementById ( 'toc-static' ) . getAttribute ( 'data-kept' ) || this . util . isTocStatic ( ) ) {
var $tocContentStatic = document . getElementById ( 'toc-content-static' ) ;
if ( $tocCore . parentElement !== $tocContentStatic ) {
$tocCore . parentElement . removeChild ( $tocCore ) ;
$tocContentStatic . appendChild ( $tocCore ) ;
}
if ( this . _tocOnScroll ) this . scrollEventSet . delete ( this . _tocOnScroll ) ;
} else {
var $tocContentAuto = document . getElementById ( 'toc-content-auto' ) ;
if ( $tocCore . parentElement !== $tocContentAuto ) {
$tocCore . parentElement . removeChild ( $tocCore ) ;
$tocContentAuto . appendChild ( $tocCore ) ;
}
var $toc = document . getElementById ( 'toc-auto' ) ;
var $page = document . getElementsByClassName ( 'page' ) [ 0 ] ;
var rect = $page . getBoundingClientRect ( ) ;
$toc . style . left = "" . concat ( rect . left + rect . width + 20 , "px" ) ;
$toc . style . maxWidth = "" . concat ( $page . getBoundingClientRect ( ) . left - 20 , "px" ) ;
$toc . style . visibility = 'visible' ;
var $tocLinkElements = $tocCore . querySelectorAll ( 'a:first-child' ) ;
var $tocLiElements = $tocCore . getElementsByTagName ( 'li' ) ;
var $headerLinkElements = document . getElementsByClassName ( 'headerLink' ) ;
var headerIsFixed = document . body . getAttribute ( 'data-header-desktop' ) !== 'normal' ;
var headerHeight = document . getElementById ( 'header-desktop' ) . offsetHeight ;
var TOP _SPACING = 20 + ( headerIsFixed ? headerHeight : 0 ) ;
var minTocTop = $toc . offsetTop ;
var minScrollTop = minTocTop - TOP _SPACING + ( headerIsFixed ? 0 : headerHeight ) ;
this . _tocOnScroll = this . _tocOnScroll || function ( ) {
var footerTop = document . getElementById ( 'post-footer' ) . offsetTop ;
var maxTocTop = footerTop - $toc . getBoundingClientRect ( ) . height ;
var maxScrollTop = maxTocTop - TOP _SPACING + ( headerIsFixed ? 0 : headerHeight ) ;
2022-05-06 19:20:39 +02:00
if ( _this6 . newScrollTop < minScrollTop ) {
2022-05-03 12:05:41 +02:00
$toc . style . position = 'absolute' ;
$toc . style . top = "" . concat ( minTocTop , "px" ) ;
2022-05-06 19:20:39 +02:00
} else if ( _this6 . newScrollTop > maxScrollTop ) {
2022-05-03 12:05:41 +02:00
$toc . style . position = 'absolute' ;
$toc . style . top = "" . concat ( maxTocTop , "px" ) ;
} else {
$toc . style . position = 'fixed' ;
$toc . style . top = "" . concat ( TOP _SPACING , "px" ) ;
}
2022-05-06 19:20:39 +02:00
_this6 . util . forEach ( $tocLinkElements , function ( $tocLink ) {
2022-05-03 12:05:41 +02:00
$tocLink . classList . remove ( 'active' ) ;
} ) ;
2022-05-06 19:20:39 +02:00
_this6 . util . forEach ( $tocLiElements , function ( $tocLi ) {
2022-05-03 12:05:41 +02:00
$tocLi . classList . remove ( 'has-active' ) ;
} ) ;
var INDEX _SPACING = 20 + ( headerIsFixed ? headerHeight : 0 ) ;
var activeTocIndex = $headerLinkElements . length - 1 ;
for ( var i = 0 ; i < $headerLinkElements . length - 1 ; i ++ ) {
var thisTop = $headerLinkElements [ i ] . getBoundingClientRect ( ) . top ;
var nextTop = $headerLinkElements [ i + 1 ] . getBoundingClientRect ( ) . top ;
if ( i == 0 && thisTop > INDEX _SPACING || thisTop <= INDEX _SPACING && nextTop > INDEX _SPACING ) {
activeTocIndex = i ;
break ;
}
}
if ( activeTocIndex !== - 1 ) {
$tocLinkElements [ activeTocIndex ] . classList . add ( 'active' ) ;
var $parent = $tocLinkElements [ activeTocIndex ] . parentElement ;
while ( $parent !== $tocCore ) {
$parent . classList . add ( 'has-active' ) ;
$parent = $parent . parentElement . parentElement ;
}
}
} ;
this . _tocOnScroll ( ) ;
this . scrollEventSet . add ( this . _tocOnScroll ) ;
}
}
} , {
key : "initMath" ,
value : function initMath ( ) {
if ( this . config . math ) renderMathInElement ( document . body , this . config . math ) ;
}
} , {
key : "initMermaid" ,
value : function initMermaid ( ) {
2022-05-06 19:20:39 +02:00
var _this7 = this ;
2022-05-03 12:05:41 +02:00
2022-05-07 09:36:44 +02:00
this . _mermaidOnSwitchTheme = this . _mermaidOnSwitchTheme || function ( ) {
var $mermaidElements = document . getElementsByClassName ( 'mermaid' ) ;
if ( $mermaidElements . length ) {
mermaid . initialize ( {
startOnLoad : false ,
theme : _this7 . isDark ? 'dark' : 'neutral' ,
securityLevel : 'loose'
} ) ;
2022-05-03 12:05:41 +02:00
2022-05-07 09:36:44 +02:00
_this7 . util . forEach ( $mermaidElements , function ( $mermaid ) {
mermaid . render ( 'svg-' + $mermaid . id , _this7 . data [ $mermaid . id ] , function ( svgCode ) {
$mermaid . innerHTML = svgCode ;
} , $mermaid ) ;
} ) ;
}
} ;
this . switchThemeEventSet . add ( this . _mermaidOnSwitchTheme ) ;
this . _mermaidOnSwitchTheme ( ) ;
2022-05-03 12:05:41 +02:00
}
} , {
key : "initEcharts" ,
value : function initEcharts ( ) {
2022-05-06 19:20:39 +02:00
var _this8 = this ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
if ( this . config . echarts ) {
echarts . registerTheme ( 'light' , this . config . echarts . lightTheme ) ;
echarts . registerTheme ( 'dark' , this . config . echarts . darkTheme ) ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
this . _echartsOnSwitchTheme = this . _echartsOnSwitchTheme || function ( ) {
_this8 . _echartsArr = _this8 . _echartsArr || [ ] ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
for ( var i = 0 ; i < _this8 . _echartsArr . length ; i ++ ) {
_this8 . _echartsArr [ i ] . dispose ( ) ;
}
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
_this8 . _echartsArr = [ ] ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
_this8 . util . forEach ( document . getElementsByClassName ( 'echarts' ) , function ( $echarts ) {
var chart = echarts . init ( $echarts , _this8 . isDark ? 'dark' : 'light' , {
renderer : 'svg'
} ) ;
chart . setOption ( JSON . parse ( _this8 . data [ $echarts . id ] ) ) ;
_this8 . _echartsArr . push ( chart ) ;
} ) ;
} ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
this . switchThemeEventSet . add ( this . _echartsOnSwitchTheme ) ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
this . _echartsOnSwitchTheme ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
this . _echartsOnResize = this . _echartsOnResize || function ( ) {
for ( var i = 0 ; i < _this8 . _echartsArr . length ; i ++ ) {
_this8 . _echartsArr [ i ] . resize ( ) ;
}
} ;
2022-05-03 12:05:41 +02:00
2022-05-10 07:24:16 +02:00
this . resizeEventSet . add ( this . _echartsOnResize ) ;
}
2022-05-03 12:05:41 +02:00
}
} , {
key : "initMapbox" ,
value : function initMapbox ( ) {
2022-05-06 19:20:39 +02:00
var _this9 = this ;
2022-05-03 12:05:41 +02:00
if ( this . config . mapbox ) {
mapboxgl . accessToken = this . config . mapbox . accessToken ;
mapboxgl . setRTLTextPlugin ( this . config . mapbox . RTLTextPlugin ) ;
this . _mapboxArr = this . _mapboxArr || [ ] ;
this . util . forEach ( document . getElementsByClassName ( 'mapbox' ) , function ( $mapbox ) {
2022-05-06 19:20:39 +02:00
var _this9$data$$mapbox$i = _this9 . data [ $mapbox . id ] ,
lng = _this9$data$$mapbox$i . lng ,
lat = _this9$data$$mapbox$i . lat ,
zoom = _this9$data$$mapbox$i . zoom ,
lightStyle = _this9$data$$mapbox$i . lightStyle ,
darkStyle = _this9$data$$mapbox$i . darkStyle ,
marked = _this9$data$$mapbox$i . marked ,
navigation = _this9$data$$mapbox$i . navigation ,
geolocate = _this9$data$$mapbox$i . geolocate ,
scale = _this9$data$$mapbox$i . scale ,
fullscreen = _this9$data$$mapbox$i . fullscreen ;
2022-05-03 12:05:41 +02:00
var mapbox = new mapboxgl . Map ( {
container : $mapbox ,
center : [ lng , lat ] ,
zoom : zoom ,
minZoom : . 2 ,
2022-05-06 19:20:39 +02:00
style : _this9 . isDark ? darkStyle : lightStyle ,
2022-05-03 12:05:41 +02:00
attributionControl : false
} ) ;
if ( marked ) {
new mapboxgl . Marker ( ) . setLngLat ( [ lng , lat ] ) . addTo ( mapbox ) ;
}
if ( navigation ) {
mapbox . addControl ( new mapboxgl . NavigationControl ( ) , 'bottom-right' ) ;
}
if ( geolocate ) {
mapbox . addControl ( new mapboxgl . GeolocateControl ( {
positionOptions : {
enableHighAccuracy : true
} ,
showUserLocation : true ,
trackUserLocation : true
} ) , 'bottom-right' ) ;
}
if ( scale ) {
mapbox . addControl ( new mapboxgl . ScaleControl ( ) ) ;
}
if ( fullscreen ) {
mapbox . addControl ( new mapboxgl . FullscreenControl ( ) ) ;
}
mapbox . addControl ( new MapboxLanguage ( ) ) ;
2022-05-06 19:20:39 +02:00
_this9 . _mapboxArr . push ( mapbox ) ;
2022-05-03 12:05:41 +02:00
} ) ;
this . _mapboxOnSwitchTheme = this . _mapboxOnSwitchTheme || function ( ) {
2022-05-06 19:20:39 +02:00
_this9 . util . forEach ( _this9 . _mapboxArr , function ( mapbox ) {
2022-05-03 12:05:41 +02:00
var $mapbox = mapbox . getContainer ( ) ;
2022-05-06 19:20:39 +02:00
var _this9$data$$mapbox$i2 = _this9 . data [ $mapbox . id ] ,
lightStyle = _this9$data$$mapbox$i2 . lightStyle ,
darkStyle = _this9$data$$mapbox$i2 . darkStyle ;
mapbox . setStyle ( _this9 . isDark ? darkStyle : lightStyle ) ;
2022-05-03 12:05:41 +02:00
mapbox . addControl ( new MapboxLanguage ( ) ) ;
} ) ;
} ;
this . switchThemeEventSet . add ( this . _mapboxOnSwitchTheme ) ;
}
}
} , {
key : "initTypeit" ,
value : function initTypeit ( ) {
2022-05-06 19:20:39 +02:00
var _this10 = this ;
2022-05-03 12:05:41 +02:00
if ( this . config . typeit ) {
var typeitConfig = this . config . typeit ;
var speed = typeitConfig . speed ? typeitConfig . speed : 100 ;
var cursorSpeed = typeitConfig . cursorSpeed ? typeitConfig . cursorSpeed : 1000 ;
var cursorChar = typeitConfig . cursorChar ? typeitConfig . cursorChar : '|' ;
Object . values ( typeitConfig . data ) . forEach ( function ( group ) {
var typeone = function typeone ( i ) {
var id = group [ i ] ;
var instance = new TypeIt ( "#" . concat ( id ) , {
2022-05-06 19:20:39 +02:00
strings : _this10 . data [ id ] ,
2022-05-03 12:05:41 +02:00
speed : speed ,
lifeLike : true ,
cursorSpeed : cursorSpeed ,
cursorChar : cursorChar ,
waitUntilVisible : true ,
afterComplete : function afterComplete ( ) {
if ( i === group . length - 1 ) {
if ( typeitConfig . duration >= 0 ) window . setTimeout ( function ( ) {
instance . destroy ( ) ;
} , typeitConfig . duration ) ;
return ;
}
instance . destroy ( ) ;
typeone ( i + 1 ) ;
}
} ) . go ( ) ;
} ;
typeone ( 0 ) ;
} ) ;
}
}
} , {
key : "initComment" ,
value : function initComment ( ) {
2022-05-06 19:20:39 +02:00
var _this11 = this ;
2022-05-03 12:05:41 +02:00
if ( this . config . comment ) {
if ( this . config . comment . gitalk ) {
this . config . comment . gitalk . body = decodeURI ( window . location . href ) ;
var gitalk = new Gitalk ( this . config . comment . gitalk ) ;
gitalk . render ( 'gitalk' ) ;
}
if ( this . config . comment . valine ) new Valine ( this . config . comment . valine ) ;
if ( this . config . comment . utterances ) {
var utterancesConfig = this . config . comment . utterances ;
var script = document . createElement ( 'script' ) ;
script . src = 'https://utteranc.es/client.js' ;
script . type = 'text/javascript' ;
script . setAttribute ( 'repo' , utterancesConfig . repo ) ;
script . setAttribute ( 'issue-term' , utterancesConfig . issueTerm ) ;
if ( utterancesConfig . label ) script . setAttribute ( 'label' , utterancesConfig . label ) ;
script . setAttribute ( 'theme' , this . isDark ? utterancesConfig . darkTheme : utterancesConfig . lightTheme ) ;
script . crossOrigin = 'anonymous' ;
script . async = true ;
document . getElementById ( 'utterances' ) . appendChild ( script ) ;
this . _utterancesOnSwitchTheme = this . _utterancesOnSwitchTheme || function ( ) {
var message = {
type : 'set-theme' ,
2022-05-06 19:20:39 +02:00
theme : _this11 . isDark ? utterancesConfig . darkTheme : utterancesConfig . lightTheme
2022-05-03 12:05:41 +02:00
} ;
var iframe = document . querySelector ( '.utterances-frame' ) ;
iframe . contentWindow . postMessage ( message , 'https://utteranc.es' ) ;
} ;
this . switchThemeEventSet . add ( this . _utterancesOnSwitchTheme ) ;
}
}
}
} , {
key : "initCookieconsent" ,
value : function initCookieconsent ( ) {
if ( this . config . cookieconsent ) cookieconsent . initialise ( this . config . cookieconsent ) ;
}
} , {
key : "onScroll" ,
value : function onScroll ( ) {
2022-05-06 19:20:39 +02:00
var _this12 = this ;
2022-05-03 12:05:41 +02:00
var $headers = [ ] ;
if ( document . body . getAttribute ( 'data-header-desktop' ) === 'auto' ) $headers . push ( document . getElementById ( 'header-desktop' ) ) ;
if ( document . body . getAttribute ( 'data-header-mobile' ) === 'auto' ) $headers . push ( document . getElementById ( 'header-mobile' ) ) ;
if ( document . getElementById ( 'comments' ) ) {
var $viewComments = document . getElementById ( 'view-comments' ) ;
$viewComments . href = "#comments" ;
$viewComments . style . display = 'block' ;
}
var $fixedButtons = document . getElementById ( 'fixed-buttons' ) ;
var ACCURACY = 20 ,
MINIMUM = 100 ;
window . addEventListener ( 'scroll' , function ( ) {
2022-05-06 19:20:39 +02:00
_this12 . newScrollTop = _this12 . util . getScrollTop ( ) ;
var scroll = _this12 . newScrollTop - _this12 . oldScrollTop ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
var isMobile = _this12 . util . isMobile ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this12 . util . forEach ( $headers , function ( $header ) {
2022-05-03 12:05:41 +02:00
if ( scroll > ACCURACY ) {
2022-05-06 20:22:58 +02:00
$header . classList . remove ( 'animate__fadeInDown' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 20:22:58 +02:00
_this12 . util . animateCSS ( $header , [ 'animate__fadeOutUp' , 'animate__faster' ] , true ) ;
2022-05-03 12:05:41 +02:00
} else if ( scroll < - ACCURACY ) {
2022-05-06 20:22:58 +02:00
$header . classList . remove ( 'animate__fadeOutUp' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 20:22:58 +02:00
_this12 . util . animateCSS ( $header , [ 'animate__fadeInDown' , 'animate__faster' ] , true ) ;
2022-05-03 12:05:41 +02:00
}
} ) ;
2022-05-06 19:20:39 +02:00
if ( _this12 . newScrollTop > MINIMUM ) {
2022-05-03 12:05:41 +02:00
if ( isMobile && scroll > ACCURACY ) {
2022-05-06 20:22:58 +02:00
$fixedButtons . classList . remove ( 'animate__fadeIn' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 20:22:58 +02:00
_this12 . util . animateCSS ( $fixedButtons , [ 'animate__fadeOut' , 'animate__faster' ] , true ) ;
2022-05-03 12:05:41 +02:00
} else if ( ! isMobile || scroll < - ACCURACY ) {
$fixedButtons . style . display = 'block' ;
2022-05-06 20:22:58 +02:00
$fixedButtons . classList . remove ( 'animate__fadeOut' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 20:22:58 +02:00
_this12 . util . animateCSS ( $fixedButtons , [ 'animate__fadeIn' , 'animate__faster' ] , true ) ;
2022-05-03 12:05:41 +02:00
}
} else {
if ( ! isMobile ) {
2022-05-06 20:22:58 +02:00
$fixedButtons . classList . remove ( 'animate__fadeIn' ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 20:22:58 +02:00
_this12 . util . animateCSS ( $fixedButtons , [ 'animate__fadeOut' , 'animate__faster' ] , true ) ;
2022-05-03 12:05:41 +02:00
}
$fixedButtons . style . display = 'none' ;
}
2022-05-06 19:20:39 +02:00
var _iterator2 = _createForOfIteratorHelper ( _this12 . scrollEventSet ) ,
2022-05-03 12:05:41 +02:00
_step2 ;
try {
2022-05-07 09:36:44 +02:00
for ( _iterator2 . s ( ) ; ! ( _step2 = _iterator2 . n ( ) ) . done ; ) {
2022-05-10 15:59:42 +02:00
var event = _step2 . value ;
event ( ) ;
2022-05-03 12:05:41 +02:00
}
} catch ( err ) {
_iterator2 . e ( err ) ;
} finally {
_iterator2 . f ( ) ;
}
2022-05-06 19:20:39 +02:00
_this12 . oldScrollTop = _this12 . newScrollTop ;
2022-05-03 12:05:41 +02:00
} , false ) ;
}
} , {
key : "onResize" ,
value : function onResize ( ) {
2022-05-06 19:20:39 +02:00
var _this13 = this ;
2022-05-03 12:05:41 +02:00
window . addEventListener ( 'resize' , function ( ) {
2022-05-06 19:20:39 +02:00
if ( ! _this13 . _resizeTimeout ) {
_this13 . _resizeTimeout = window . setTimeout ( function ( ) {
_this13 . _resizeTimeout = null ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
var _iterator3 = _createForOfIteratorHelper ( _this13 . resizeEventSet ) ,
2022-05-03 12:05:41 +02:00
_step3 ;
try {
for ( _iterator3 . s ( ) ; ! ( _step3 = _iterator3 . n ( ) ) . done ; ) {
var event = _step3 . value ;
event ( ) ;
}
} catch ( err ) {
_iterator3 . e ( err ) ;
} finally {
_iterator3 . f ( ) ;
}
2022-05-06 19:20:39 +02:00
_this13 . initToc ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this13 . initMermaid ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this13 . initSearch ( ) ;
2022-05-03 12:05:41 +02:00
} , 100 ) ;
}
} , false ) ;
}
} , {
key : "onClickMask" ,
value : function onClickMask ( ) {
2022-05-06 19:20:39 +02:00
var _this14 = this ;
2022-05-03 12:05:41 +02:00
document . getElementById ( 'mask' ) . addEventListener ( 'click' , function ( ) {
2022-05-06 19:20:39 +02:00
var _iterator4 = _createForOfIteratorHelper ( _this14 . clickMaskEventSet ) ,
2022-05-03 12:05:41 +02:00
_step4 ;
try {
for ( _iterator4 . s ( ) ; ! ( _step4 = _iterator4 . n ( ) ) . done ; ) {
var event = _step4 . value ;
event ( ) ;
}
} catch ( err ) {
_iterator4 . e ( err ) ;
} finally {
_iterator4 . f ( ) ;
}
document . body . classList . remove ( 'blur' ) ;
} , false ) ;
}
} , {
key : "init" ,
value : function init ( ) {
2022-05-06 19:20:39 +02:00
var _this15 = this ;
2022-05-03 12:05:41 +02:00
try {
2022-05-06 19:20:39 +02:00
this . initRaw ( ) ;
2022-05-03 12:05:41 +02:00
this . initSVGIcon ( ) ;
this . initTwemoji ( ) ;
this . initMenuMobile ( ) ;
this . initSwitchTheme ( ) ;
this . initSearch ( ) ;
this . initDetails ( ) ;
this . initLightGallery ( ) ;
this . initHighlight ( ) ;
this . initTable ( ) ;
this . initHeaderLink ( ) ;
this . initMath ( ) ;
this . initMermaid ( ) ;
this . initEcharts ( ) ;
this . initTypeit ( ) ;
this . initMapbox ( ) ;
this . initCookieconsent ( ) ;
} catch ( err ) {
console . error ( err ) ;
}
window . setTimeout ( function ( ) {
2022-05-06 19:20:39 +02:00
_this15 . initToc ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this15 . initComment ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this15 . onScroll ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this15 . onResize ( ) ;
2022-05-03 12:05:41 +02:00
2022-05-06 19:20:39 +02:00
_this15 . onClickMask ( ) ;
2022-05-03 12:05:41 +02:00
} , 100 ) ;
}
} ] ) ;
return Theme ;
} ( ) ;
var themeInit = function themeInit ( ) {
var theme = new Theme ( ) ;
theme . init ( ) ;
} ;
if ( document . readyState !== 'loading' ) {
themeInit ( ) ;
} else {
document . addEventListener ( 'DOMContentLoaded' , themeInit , false ) ;
}