美文网首页
hexo-pagination函数释义

hexo-pagination函数释义

作者: 这是我用来记录技术的一个博客 | 来源:发表于2019-01-10 15:03 被阅读17次

hexo-pagination是hexo的内部工具函数。
源码在此

前言:

这个分页函数是所有其他插件的基础,充分理解pagination函数,有助于我们随心所欲的创建自己想要的页面。
我们不关心hexo的内核是如何实现逻辑,我们更关心hexo需要什么样的数据,我们如何操控它。

开明宗义:

pagination函数返回值类似这样:

{
      path: xxxDir,     // 路径
      layout: ['layout1', 'layout2', 'layout3', 'layout4'],  //指定布局,首先找有没有1模板 没有依次往下找
      data: {
        base: xxxDir,
        total: 1,
        current: 1,
        current_url: tagDir,
        posts: locals.posts,
        prev: 0,
        prev_link: '',
        next: 0,
        next_link: '',
        tags: tags
      }

以这种形式return出来的值,hexo接受后,会生成一个指定layout的,在xxxDir文件夹位置的页面,其url为localhost:4000/xxxDir,内部可调用的数据便是data里面的值。(xxxDir==base,是一开始就带入的参数)
这样一说,整体就清晰了,你可以利用pagination来创建任意路径,任意布局,带入任意的data的页面了

pagination(base, posts, [options])

option对象 描述 缺省
perPage 每页展示文章 10
format URL 格式 page/%d/
layout 布局, 可以是string或array. ['archive', 'index']
data 额外的data

示例:

var pagination = require('hexo-pagination');

pagination('/tags/hexo', [], {
  perPage: 10,
  format: 'page/%d/',
  layout: ['archive', 'index'], // 同时设定了两个布局,当 archive 布局不存在时,会继续尝试 index 布局。
  data: {
    tag: 'hexo'
  }
});

这个function返回一个包含path, layout, data的数组
源码

 if (perPage) {
    for (let i = 1; i <= total; i++) {
      result.push({
        path: formatURL(i),
        layout,
        data: Object.assign(makeData(i), data)
      });
    }
  } else {
    result.push({
      path: base,
      layout,
      data: Object.assign(makeData(1), data)
    });
  }

  return result;

如果有分页 则result是一个数组集

其中data对象里面包含

Data Description
base Base URL
total 总共多少页
current 当前页码
current_url 当前页路径 (与path相同)
posts 当前页面文章数(被切割后的文章数)
prev 上一页(数字)
prev_link 上一页链接
next 下一页(数字)
next_link 下一页链接

其中,data是可以扩展的,内部是用了Object.assign,除了以上的9个键,你也可以自定义键值对往里面塞,也同样会显示在页面中

源码整体释义

'use strict';

const util = require('util');

function pagination(base, posts, options) {
  if (typeof base !== 'string') throw new TypeError('base must be a string!');
  if (!posts) throw new TypeError('posts is required!');
  options = options || {};

  if (base && base[base.length - 1] !== '/') base += '/';

  const length = posts.length;
  const perPage = options.hasOwnProperty('perPage') ? +options.perPage : 10;
  const total = perPage ? Math.ceil(length / perPage) : 1;
  const format = options.format || 'page/%d/';
  const layout = options.layout || ['archive', 'index'];
  const data = options.data || {};
  const result = [];
  const urlCache = {};

  function formatURL(i) {  //代入1,2,3,4..total   返回
    if (urlCache[i]) return urlCache[i];

    let url = base;
    if (i > 1) url += util.format(format, i); //node的util库方法,%d被i替换为具体数值
    urlCache[i] = url;

    return url;
  }

  function makeData(i) { 
    const data = {   //这是i=1的情况 里面都是缺省值
      base,
      total,
      current: i,
      current_url: formatURL(i),
      posts: perPage ? posts.slice(perPage * (i - 1), perPage * i) : posts, //含头不含尾的截取数组
      prev: 0,
      prev_link: '',
      next: 0,
      next_link: ''
    };

    if (i > 1) {   //第二页开始 记录prev
      data.prev = i - 1;
      data.prev_link = formatURL(data.prev);
    }

    if (i < total) { //记录next
      data.next = i + 1;
      data.next_link = formatURL(data.next);
    }

    return data;
  }

  if (perPage) {     //如果有分页
    for (let i = 1; i <= total; i++) {
      result.push({
        path: formatURL(i),
        layout,
        data: Object.assign(makeData(i), data) //合并data 让自定义字段流入
      });
    }   //最后的结果是一个包含很多对象的数组,每个对象就代表一个页面
  } else {
    result.push({
      path: base,
      layout,
      data: Object.assign(makeData(1), data) //合并data 让自定义字段流入
    }); // path用base的一个单页面
  }

  return result;
}

module.exports = pagination;

相关文章

  • hexo-pagination函数释义

    hexo-pagination是hexo的内部工具函数。源码在此 前言: 这个分页函数是所有其他插件的基础,充分理...

  • hexo-generator-category 源码分析

    相关文章 请按顺序阅读hexo-pagination函数释义hexo-generator-index 源码分析he...

  • hexo-generator-index 源码分析

    相关文章 请按顺序阅读hexo-pagination函数释义hexo-generator-index 源码分析he...

  • hexo-generator-tag 源码分析

    前两篇在这里hexo-pagination函数释义hexo-generator-index 源码分析 这是第三篇 ...

  • lua闭包函数

    简单释义:函数里套函数,里层函数可以访问外层函数的所有局部 变量 1,lua中函数是第一类值 (他们可以存储在变量...

  • 单词快速记忆

    英文释义bundle包bundler打包器handler处理函数dependency graph关系图alias别...

  • 【EXCEL系列】函数-统计函数-average

    今天看下另外一个统计函数,average。 看函数名称就知道是计算平均值的了吧。 看下wps的释义: 返回参数的平...

  • PHP之自带过滤和转义函数

    函数名释义介绍htmlspecialchars将与、单双引号、大于和小于号化成HTML格式图1htmlentiti...

  • 02-C语言的指针

    02-C语言的指针 目标 C语言指针释义 指针用法 指针与数组 指针与函数的参数 二级指针 函数指针 指针在C中很...

  • 【Axure学习】基本函数通俗版释义整理

    文:小欧 小欧还是运营的时候有刷朋友给的视频学过Axure函数,不过当时就走马观花看了视频,没有对着视频进行实操过...

网友评论

      本文标题:hexo-pagination函数释义

      本文链接:https://www.haomeiwen.com/subject/ltrarqtx.html