Blame view

node_modules/inquirer/lib/utils/paginator.js 1.19 KB
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  'use strict';
  
  var _ = require('lodash');
  var chalk = require('chalk');
  
  /**
   * The paginator keeps track of a pointer index in a list and returns
   * a subset of the choices if the list is too long.
   */
  
  var Paginator = module.exports = function () {
    this.pointer = 0;
    this.lastIndex = 0;
  };
  
  Paginator.prototype.paginate = function (output, active, pageSize) {
    pageSize = pageSize || 7;
    var middleOfList = Math.floor(pageSize / 2);
    var lines = output.split('\n');
  
    // Make sure there's enough lines to paginate
    if (lines.length <= pageSize) {
      return output;
    }
  
    // Move the pointer only when the user go down and limit it to the middle of the list
    if (this.pointer < middleOfList && this.lastIndex < active && active - this.lastIndex < pageSize) {
      this.pointer = Math.min(middleOfList, this.pointer + active - this.lastIndex);
    }
    this.lastIndex = active;
  
    // Duplicate the lines so it give an infinite list look
    var infinite = _.flatten([lines, lines, lines]);
    var topIndex = Math.max(0, active + lines.length - this.pointer);
  
    var section = infinite.splice(topIndex, pageSize).join('\n');
    return section + '\n' + chalk.dim('(Move up and down to reveal more choices)');
  };