ab4c01118bb23780cc609fdf316e758a563894f7.svn-base
1.47 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'use strict';
const ansiEscapes = require('ansi-escapes');
const cliCursor = require('cli-cursor');
const wrapAnsi = require('wrap-ansi');
const getWidth = stream => {
	const {columns} = stream;
	if (!columns) {
		return 80;
	}
	return columns;
};
const main = (stream, options) => {
	options = Object.assign({
		showCursor: false
	}, options);
	let previousLineCount = 0;
	let previousWidth = getWidth(stream);
	let previousOutput = '';
	const render = (...args) => {
		if (!options.showCursor) {
			cliCursor.hide();
		}
		let output = args.join(' ') + '\n';
		const width = getWidth(stream);
		if (output === previousOutput && previousWidth === width) {
			return;
		}
		previousOutput = output;
		previousWidth = width;
		output = wrapAnsi(output, width, {
			trim: false,
			hard: true,
			wordWrap: false
		});
		stream.write(ansiEscapes.eraseLines(previousLineCount) + output);
		previousLineCount = output.split('\n').length;
	};
	render.clear = () => {
		stream.write(ansiEscapes.eraseLines(previousLineCount));
		previousOutput = '';
		previousWidth = getWidth(stream);
		previousLineCount = 0;
	};
	render.done = () => {
		previousOutput = '';
		previousWidth = getWidth(stream);
		previousLineCount = 0;
		if (!options.showCursor) {
			cliCursor.show();
		}
	};
	return render;
};
module.exports = main(process.stdout);
// TODO: Remove this for the next major release
module.exports.default = module.exports;
module.exports.stderr = main(process.stderr);
module.exports.create = main;