Server IP : 85.214.239.14 / Your IP : 3.23.129.149 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/task/3/root/proc/2/cwd/lib/node_modules/pm2/node_modules/enquirer/lib/ |
Upload File : |
'use strict'; const utils = require('./utils'); /** * Render a placeholder value with cursor and styling based on the * position of the cursor. * * @param {Object} `prompt` Prompt instance. * @param {String} `input` Input string. * @param {String} `initial` The initial user-provided value. * @param {Number} `pos` Current cursor position. * @param {Boolean} `showCursor` Render a simulated cursor using the inverse primary style. * @return {String} Returns the styled placeholder string. * @api public */ module.exports = (prompt, options = {}) => { prompt.cursorHide(); let { input = '', initial = '', pos, showCursor = true, color } = options; let style = color || prompt.styles.placeholder; let inverse = utils.inverse(prompt.styles.primary); let blinker = str => inverse(prompt.styles.black(str)); let output = input; let char = ' '; let reverse = blinker(char); if (prompt.blink && prompt.blink.off === true) { blinker = str => str; reverse = ''; } if (showCursor && pos === 0 && initial === '' && input === '') { return blinker(char); } if (showCursor && pos === 0 && (input === initial || input === '')) { return blinker(initial[0]) + style(initial.slice(1)); } initial = utils.isPrimitive(initial) ? `${initial}` : ''; input = utils.isPrimitive(input) ? `${input}` : ''; let placeholder = initial && initial.startsWith(input) && initial !== input; let cursor = placeholder ? blinker(initial[input.length]) : reverse; if (pos !== input.length && showCursor === true) { output = input.slice(0, pos) + blinker(input[pos]) + input.slice(pos + 1); cursor = ''; } if (showCursor === false) { cursor = ''; } if (placeholder) { let raw = prompt.styles.unstyle(output + cursor); return output + cursor + style(initial.slice(raw.length)); } return output + cursor; };