mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
0dcaea72ae
This commit adds "alert", "confirm" and "prompt" functions from web standards.
66 lines
1.4 KiB
JavaScript
66 lines
1.4 KiB
JavaScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
((window) => {
|
|
const { stdin, stdout } = window.__bootstrap.files;
|
|
const { isatty } = window.__bootstrap.tty;
|
|
const LF = "\n".charCodeAt(0);
|
|
const encoder = new TextEncoder();
|
|
const decoder = new TextDecoder();
|
|
|
|
function alert(message = "Alert") {
|
|
if (!isatty(stdin.rid)) {
|
|
return;
|
|
}
|
|
|
|
stdout.writeSync(encoder.encode(`${message} [Enter] `));
|
|
|
|
readLineFromStdinSync();
|
|
}
|
|
|
|
function confirm(message = "Confirm") {
|
|
if (!isatty(stdin.rid)) {
|
|
return false;
|
|
}
|
|
|
|
stdout.writeSync(encoder.encode(`${message} [y/N] `));
|
|
|
|
const answer = readLineFromStdinSync();
|
|
|
|
return answer === "Y" || answer === "y";
|
|
}
|
|
|
|
function prompt(message = "Prompt", defaultValue) {
|
|
defaultValue ??= null;
|
|
|
|
if (!isatty(stdin.rid)) {
|
|
return null;
|
|
}
|
|
|
|
stdout.writeSync(encoder.encode(`${message} `));
|
|
|
|
if (defaultValue) {
|
|
stdout.writeSync(encoder.encode(`[${defaultValue}] `));
|
|
}
|
|
|
|
return readLineFromStdinSync() || defaultValue;
|
|
}
|
|
|
|
function readLineFromStdinSync() {
|
|
const c = new Uint8Array(1);
|
|
const buf = [];
|
|
|
|
while (true) {
|
|
const n = stdin.readSync(c);
|
|
if (n === 0 || c[0] === LF) {
|
|
break;
|
|
}
|
|
buf.push(c[0]);
|
|
}
|
|
return decoder.decode(new Uint8Array(buf));
|
|
}
|
|
|
|
window.__bootstrap.prompt = {
|
|
alert,
|
|
confirm,
|
|
prompt,
|
|
};
|
|
})(this);
|