快轉到主要內容

使用FullCalendar給Hugo網站加入活動月曆,紀錄發文歷程

分類   資訊科技 Hugo網站架設
標籤   JavaScript Library
🗓️ 民國113年 甲辰年
✍ 切換正體/簡體字
目錄

Add events calendar view to Hugo website.

辦桌二人組 - 今仔日

一直以來,要紀錄自己成長的軌跡,我會去翻Github Activity,就是會在首頁顯示開發活動的歷程的圖表。不過老實說這個一點都不準確,這個圖表是以儲存庫更新的次數計算的,這樣頂多知道哪幾天有推送部落格原始碼更新而已,不能準確的查到我在過去哪天寫了什麼文章。

萬一哪天我認真參與開發專案(是的現在更新Github儲存庫我大多是寫文章而非寫code),這個活動歷程也就不能當我發文歷史的參考了。

因此想到要給Hugo網站加一個日曆/月曆/年曆功能。它必須要有標準日期檢視功能,並且可以快速跳轉月份、年份的按鈕。最為重要的是,該月曆不是手動排行程的行事曆,而是自動抓取Hugo網站所有發表的文章,並將超連結渲染在日期格子上。

至於要怎麼做月曆,不必手刻,網路上已經有現成的函式庫FullCalendar能用了,只要將Hugo的文章列表作為JSON資料餵給FullCalendar,它就會自動產生一個互動式的月曆。

成品如下:

1. 建立專門的月曆頁面
#

採用page layout的作法來做一個專門放月曆的頁面。

  1. 新增放月曆的頁面,放在網站根目錄/content/postscalendar/index.md,程式碼只有以下幾行
---
title: "月曆"
description: ""
layout: "postscalendar"
---
  1. 接著製作真正的layout page,放在網站根目錄/layouts/page/postscalendar.html

2. 加入FullCalendar元素
#

  1. 首先讓網站根目錄/layouts/page/postscalendar.html頁面繼承Blowfish主題的header與footer
{{ define "main" }}

//程式碼

{{ end }}
  1. 定義FullCalendar的CSS
<style>
    #calendar {
        max-width: 800px;
        margin: 50px auto;
        padding: 0 10px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .fc-toolbar-title {
        font-size: 1.5em;
        font-weight: bold;
    }

    .fc-event {
        font-size: 0.8em;
        border-radius: 4px;
        padding: 2px;
    }

    .fc-header-toolbar {
        padding: 10px 0;
    }

    .fc-button {
        background-color: #007bff;
        border: none;
        border-radius: 4px;
        color: white;
        padding: 5px 10px;
        font-size: 0.9em;
        cursor: pointer;
    }

    .fc-button:hover {
        background-color: #0056b3;
    }

    .fc-button:disabled {
        background-color: #e0e0e0;
        color: #757575;
    }

    .event-tooltip {
        position: absolute;
        z-index: 10001;
        background-color:rgba(0, 0, 0, 0.5);
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        font-size: 0.9em;
    }
    }
</style>
  1. 加入FullCalendar的程式碼。官方文件有很多細項可以調整,這裡就只製作基本的功能。
<div id='calendar'></div>
<script src='https://cdn.jsdelivr.net/npm/fullcalendar/index.global.min.js'></script>

<script>
    document.addEventListener('DOMContentLoaded', function () {
        const calendarEl = document.getElementById('calendar');
        const calendar = new FullCalendar.Calendar(calendarEl, {
            initialView: 'dayGridMonth', // 預設檢視模式
            locale: "zh-tw",   // 預設語言
            contentHeight: 800,
            headerToolbar: { // 工具列
                left: 'prevYear, prev, next, nextYear, today',
                center: 'title',
                right: 'dayGridMonth,timeGridWeek'
            },
            buttonText: {  // 自訂翻譯
                today: '今仔日',
                month: '月',
                week: '週'
            },
            events: [
                {{ range .Site.RegularPages }} // 讀取所有已發表的文章,變成JSON陣列
            {
                title: '{{ .Title }}',
                start: '{{ .Date.Format "2006-01-02" }}',
                url: '{{ .RelPermalink }}'
            },
            {{ end }}
        ],
        eventMouseEnter: function (info) { // 加入滑鼠懸浮就顯示完整標題的功能
            const tooltip = document.createElement('div');
            tooltip.className = 'event-tooltip';
            tooltip.innerHTML = `<strong>${info.event.title}</strong>`;
            document.body.appendChild(tooltip);

            tooltip.style.left = info.jsEvent.pageX + 'px';
            tooltip.style.top = info.jsEvent.pageY + 'px';

            info.el.addEventListener('mouseleave', function () {
                tooltip.remove();
            });
        }
    });
    calendar.render();
});
</script>
  1. 嘗試預覽網站。由於這是個獨立頁面,故需要打http://localhost:1313/postcalendar才能看到月曆。

FullCalendar的隱憂:

  • 把所有文章讀取並存成一個超長的陣列很難看,還是嵌在網頁裡的。
  • 不適合手機閱讀。

參考資料
#

相關文章

製作Hugo靜態網頁相簿畫廊 (使用nanogallery2 JQuery函式庫)
分類   資訊科技 Hugo網站架設
標籤   JavaScript Library
Hugo網站如何加入Search Console與Google Analytics
分類   資訊科技 Hugo網站架設
標籤   Google Analytics
hugo-shortcode-gallery,給Hugo靜態網頁嵌入圖片畫廊
分類   資訊科技 Hugo網站架設
標籤   Hugo Shortcode Hugo Theme JavaScript Library

留言板

此處提供二種留言板。點選按鈕,選擇您覺得方便的留言板。要討論程式碼請用Giscus,匿名討論請用Disqus。

這是Giscus留言板,需要Github帳號才能留言。支援markdown語法,若要上傳圖片請貼Imgur或Postimages。您的留言會在Github Discussions向所有人公開。

這是Disqus留言板,您可能會看到Disqus強制投放的廣告。為防止垃圾內容,有時留言可能會被系統判定需審核,導致延遲顯示,請見諒。若要上傳圖片請善用圖床網站。