<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
這一段時間一直在做一個部落格專案 Kila Kila Blog,找了一圈發現沒有特別滿足自己需求的目錄元件,所以決定自己動手,完成一個滿足以下預期目標的目錄元件:
完成後的目錄元件如下圖左側所示:
由於標題之間有父子的關係,所以我們應該用樹資料結構來解決這個問題。我們遍歷文章容器中的所有標籤,如果遇到 <h1>
、<h2>
這類標籤,就建立一個節點,將其放到列表中,之後使用 v-for
指令來生成目錄就行了。下面分析一下每個節點需要有哪些屬性。
一個樹的節點,應該具有的屬性包括:父節點的指標 parent
、子節點的指標列表 children
,因為一個節點代表一個標題,所以還要包含:標題的 ID號 id
(用於 v-for
的 key
),標題名 name
(新增了標題的序號)、原始標題名 rawName
和標題的可見性 isVisible
,當我們點選標題時,應該捲動到標題的位置,所以還要有 scrollTop
屬性。在我們遍歷文章容器中的所有標籤時,需要判斷當前遇到的標籤和上一個標籤之間的父子關係,所以要有一個 level
屬性代表每一個節點的等級。下面是具體實現程式碼:
<template> <div class="catalog-card" v-if="Object.keys(titles).length > 0"> <div class="catalog-card-header"> <div> <span ><font-awesome-icon :icon="['fas', 'bars-staggered']" class="catalog-icon" /></span> <span>目錄</span> </div> <span class="progress">{{ progress }}</span> </div> <div class="catalog-content"> <div v-for="title in titles" :key="title.id" @click="scrollToView(title.scrollTop)" :class="[ 'catalog-item', currentTitle.id == title.id ? 'active' : 'not-active', ]" :style="{ marginLeft: title.level * 20 + 'px' }" v-show="title.isVisible" :title="title.rawName" > {{ title.name }} </div> </div> </div> </template> <script> import { reactive, ref } from "vue"; export default { name: "KilaKilaCatalog", setup(props) { let titles = reactive(getTitles()); let currentTitle = reactive({}); let progress = ref(0); // 獲取目錄的標題 function getTitles() { let titles = []; let levels = ["h1", "h2", "h3"]; let articleElement = document.querySelector(props.container); if (!articleElement) { return titles; } let elements = Array.from(articleElement.querySelectorAll("*")); // 調整標籤等級 let tagNames = new Set( elements.map((el) => el.tagName.toLowerCase()) ); for (let i = levels.length - 1; i >= 0; i--) { if (!tagNames.has(levels[i])) { levels.splice(i, 1); } } let serialNumbers = levels.map(() => 0); for (let i = 0; i < elements.length; i++) { const element = elements[i]; let tagName = element.tagName.toLowerCase(); let level = levels.indexOf(tagName); if (level == -1) continue; let id = tagName + "-" + element.innerText + "-" + i; let node = { id, level, parent: null, children: [], rawName: element.innerText, scrollTop: element.offsetTop, }; if (titles.length > 0) { let lastNode = titles.at(-1); // 遇到子標題 if (lastNode.level < node.level) { node.parent = lastNode; lastNode.children.push(node); } // 遇到上一級標題 else if (lastNode.level > node.level) { serialNumbers.fill(0, level + 1); let parent = lastNode.parent; while (parent) { if (parent.level < node.level) { parent.children.push(node); node.parent = parent; break; } parent = parent.parent; } } // 遇到平級 else if (lastNode.parent) { node.parent = lastNode.parent; lastNode.parent.children.push(node); } } serialNumbers[level] += 1; let serialNumber = serialNumbers.slice(0, level + 1).join("."); node.isVisible = node.parent == null; node.name = serialNumber + ". " + element.innerText; titles.push(node); } return titles; } // 監聽捲動事件並更新樣式 window.addEventListener("scroll", function () { progress.value = parseInt( (window.scrollY / document.documentElement.scrollHeight) * 100 ) + "%"; let visibleTitles = []; for (let i = titles.length - 1; i >= 0; i--) { const title = titles[i]; if (title.scrollTop <= window.scrollY) { if (currentTitle.id === title.id) return; Object.assign(currentTitle, title); // 展開節點 setChildrenVisible(title, true); visibleTitles.push(title); // 展開父節點 let parent = title.parent; while (parent) { setChildrenVisible(parent, true); visibleTitles.push(parent); parent = parent.parent; } // 摺疊其餘節點 for (const t of titles) { if (!visibleTitles.includes(t)) { setChildrenVisible(t, false); } } return; } } }); // 設定子節點的可見性 function setChildrenVisible(title, isVisible) { for (const child of title.children) { child.isVisible = isVisible; } } // 捲動到指定的位置 function scrollToView(scrollTop) { window.scrollTo({ top: scrollTop, behavior: "smooth" }); } return { titles, currentTitle, progress, scrollToView }; }, props: { container: { type: String, default: ".post-body .article-content", }, }, }; </script> <style lang="less" scoped> .catalog-card { background: white; border-radius: 8px; box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.05); padding: 20px 24px; width: 100%; margin-top: 25px; box-sizing: border-box; } .catalog-card-header { text-align: left !important; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; } .catalog-icon { font-size: 18px; margin-right: 10px; color: dodgerblue; } .catalog-card-header div > span { font-size: 17px; color: #4c4948; } .progress { color: #a9a9a9; font-style: italic; font-size: 140%; } .catalog-content { max-height: calc(100vh - 120px); overflow: auto; margin-right: -24px; padding-right: 20px; } .catalog-item { color: #666261; margin: 5px 0; line-height: 28px; cursor: pointer; transition: all 0.2s ease-in-out; font-size: 14px; padding: 2px 6px; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; &:hover { color: #1892ff; } } .active { background-color: #; color: white; &:hover { background-color: #0c82e9; color: white; } } </style>
到此這篇關於使用 Vue3 實現文章目錄功能的文章就介紹到這了,更多相關Vue3文章目錄內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45