prettier/website/playground/index.js

694 lines
18 KiB
JavaScript
Raw Normal View History

/* eslint-env browser */
/* eslint no-var: off, strict: off, prefer-arrow-callback: off */
2018-04-11 20:29:07 +03:00
/* global Clipboard CodeMirror formatMarkdown LZString preact */
2018-04-11 20:29:07 +03:00
var h = preact.h;
2018-04-11 20:29:07 +03:00
var CATEGORIES = ["Global", "JavaScript", "Markdown", "Special"];
2017-09-13 22:14:51 +03:00
var OPTIONS = [
2018-04-11 20:29:07 +03:00
"parser",
2017-09-13 22:14:51 +03:00
"printWidth",
"tabWidth",
2018-04-11 20:29:07 +03:00
"useTabs",
{ name: "semi", inverted: true },
2017-09-13 22:14:51 +03:00
"singleQuote",
2018-04-11 20:29:07 +03:00
{ name: "bracketSpacing", inverted: true },
2017-09-13 22:14:51 +03:00
"jsxBracketSameLine",
"arrowParens",
2018-04-11 20:29:07 +03:00
"trailingComma",
"proseWrap",
"insertPragma",
"requirePragma"
2017-09-13 22:14:51 +03:00
];
2018-04-11 20:29:07 +03:00
// ---------- Options components -----------
2018-04-11 20:29:07 +03:00
function BooleanOption(props) {
function maybeInvert(value) {
return props.option.inverted ? !value : value;
}
return h(
"label",
null,
h("input", {
type: "checkbox",
checked: maybeInvert(props.value),
onChange: function(ev) {
props.onOptionChange(props.option, maybeInvert(ev.target.checked));
}
2018-04-11 20:29:07 +03:00
}),
" ",
props.option.cliName
);
}
2018-04-11 20:29:07 +03:00
function ChoiceOption(props) {
return h(
"label",
null,
props.option.cliName,
" ",
h(
"select",
{
onChange: function(ev) {
props.onOptionChange(props.option, ev.target.value);
}
2018-04-11 20:29:07 +03:00
},
props.option.choices.map(function(choice) {
return h(
"option",
{ value: choice.value, selected: choice.value === props.value },
choice.value
);
})
)
);
}
2018-04-11 20:29:07 +03:00
function NumberOption(props) {
return h(
"label",
null,
props.option.cliName,
" ",
h("input", {
type: "number",
min: props.option.range.start,
max: props.option.range.end,
step: props.option.range.step,
value: props.value,
onChange: function(ev) {
props.onOptionChange(props.option, parseInt(ev.target.value, 10));
}
2018-04-11 20:29:07 +03:00
})
);
}
2018-04-11 20:29:07 +03:00
function Options(props) {
var optionsByCategory = props.availableOptions.reduce(function(acc, opt) {
acc[opt.category] = opts = acc[opt.category] || [];
opts.push(opt);
return acc;
}, {});
return h(
"div",
{ className: "options-container" + (props.open ? " open" : "") },
h(
"div",
{ className: "options" },
CATEGORIES.map(function(category) {
return h(
"details",
{ className: "sub-options", open: "true" },
h("summary", null, category),
(optionsByCategory[category] || []).map(function(opt) {
return h(getComponentByOptionType(opt), {
option: opt,
value: props.options[opt.name],
onOptionChange: props.onOptionChange
});
})
);
})
)
);
}
2018-04-11 20:29:07 +03:00
// ---------- Editor components -----------
var Editor = createClass({
componentDidMount: function() {
this._codeMirror = CodeMirror.fromTextArea(this._ref, this.props.options);
this._codeMirror.on("change", this.handleChange.bind(this));
this._codeMirror.setValue(this.props.value || "");
},
handleChange: function(doc, change) {
if (change.origin !== "setValue") {
this.props.onChange(doc.getValue());
}
2018-04-11 20:29:07 +03:00
},
componentWillReceiveProps(nextProps) {
if (
nextProps.value &&
nextProps.value !== this.props.value &&
this._codeMirror.getValue() !== nextProps.value
) {
this._codeMirror.setValue(nextProps.value);
} else if (!nextProps.value) {
this._codeMirror.setValue("");
}
2018-04-11 20:29:07 +03:00
},
render: function(props) {
return h(
"div",
{ className: "editor input" },
h("textarea", {
ref: function(ref) {
this._ref = ref;
}.bind(this)
})
);
}
});
2018-04-11 20:29:07 +03:00
function InputEditor(props) {
return h(Editor, {
options: {
lineNumbers: true,
2018-04-11 20:29:07 +03:00
keyMap: "sublime",
autoCloseBrackets: true,
matchBrackets: true,
showCursorWhenSelecting: true,
tabWidth: 2,
mode: props.mode
},
value: props.value,
onChange: props.onChange
});
}
function OutputEditor(props) {
return h(Editor, {
options: {
readOnly: true,
lineNumbers: true,
2018-04-11 20:29:07 +03:00
mode: props.mode
},
value: props.value
});
}
function Button(props) {
return h("button", Object.assign({ type: "button", class: "btn" }, props));
}
function BottomBar(props) {
return h(
"div",
{ class: "bottom-bar" },
h(
"div",
{ class: "bottom-bar-buttons" },
h(
Button,
{ onClick: props.onShowOptionsClick },
props.optionsOpen ? "Hide options" : "Show options"
),
h(Button, { onClick: props.onClearClick }, "Clear")
),
h(
"div",
{ class: "bottom-bar-buttons bottom-bar-buttons-right" },
h(Button, null, "Copy Link"),
h(Button, null, "Copy markdown"),
h(
"a",
{
href:
"https://github.com/prettier/prettier/issues/new?body=" +
encodeURIComponent(props.reportBody),
target: "_blank",
rel: "noopener",
class: "btn"
},
"Report issue"
)
)
);
2018-04-11 20:29:07 +03:00
}
var App = createClass({
state: Object.assign({ loaded: false, formatted: "" }, loadPersistedState()),
2018-04-11 20:29:07 +03:00
_format: function() {
this._worker.postMessage(
{ type: "format", code: this.state.content, options: this.state.options },
function(message) {
this.setState({ formatted: message.formatted });
}.bind(this)
);
persistState(this.state);
},
handleOptionChange: function(option, value) {
this.setState(function(state) {
return {
options: Object.assign({}, state.options, { [option.name]: value })
};
}, this._format.bind(this));
},
handleOptionsOpen: function() {
this.setState(
function(state) {
return {
editorState: Object.assign({}, state.editorState, {
optionsOpen: !state.editorState.optionsOpen
})
};
},
function() {
persistState(this.state);
}
);
},
handleContentChange: function(value) {
this.setState({ content: value }, this._format.bind(this));
},
componentDidMount: function() {
this._worker = new WorkerApi("/worker2.js");
this._worker.postMessage(
{ type: "meta" },
function(message) {
var availableOptions = getOptions(message.supportInfo.options);
var options =
this.state.options ||
availableOptions.reduce(function(options, opt) {
options[opt.name] = opt.default;
return options;
}, {});
this.setState({
loaded: true,
version: message.version,
availableOptions: availableOptions,
options: options
});
}.bind(this)
);
this._format();
},
render: function(props, state) {
if (!state.loaded) {
return "Loading...";
}
var editorState = state.editorState;
return h(
"div",
{ className: "playground-container" },
h(
"div",
{ className: "editors-container" },
h(Options, {
availableOptions: state.availableOptions,
options: state.options,
open: editorState.optionsOpen,
onOptionChange: this.handleOptionChange.bind(this)
}),
h(
"div",
{ className: "editors" },
h(InputEditor, {
mode: getCodemirrorMode(state.options),
value: state.content,
onChange: this.handleContentChange.bind(this)
}),
h(OutputEditor, {
mode: getCodemirrorMode(state.options),
value: state.formatted
})
)
),
h(BottomBar, {
optionsOpen: editorState.optionsOpen,
onShowOptionsClick: this.handleOptionsOpen.bind(this),
onClearClick: function() {
this.handleContentChange("");
}.bind(this),
reportBody: formatMarkdown(
state.content,
state.formatted,
"",
state.version,
window.location.href,
state.options,
state.availableOptions.reduce(function(cliOptions, option) {
var value = state.options[option.name];
if (option.type === "boolean") {
if ((value && !option.inverted) || (!value && option.inverted)) {
cliOptions.push([option.cliName, true]);
}
} else if (value !== option.default) {
cliOptions.push([option.cliName, value]);
}
return cliOptions;
}, [])
)
})
);
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
});
2018-04-11 20:29:07 +03:00
window.onload = function() {
preact.render(h(App), document.getElementById("root"));
};
2018-04-11 20:29:07 +03:00
// -------- Worker API -------------
2018-04-11 20:29:07 +03:00
function WorkerApi(source) {
var worker = new Worker(source);
var counter = 0;
var handlers = {};
2018-04-11 20:29:07 +03:00
worker.onmessage = function(event) {
var uid = event.data.uid;
var message = event.data.message;
if (handlers[uid]) {
var handler = handlers[uid];
delete handlers[uid];
2017-09-13 22:14:51 +03:00
2018-04-11 20:29:07 +03:00
handler(message);
}
};
2018-04-11 20:29:07 +03:00
function postMessage(message, handler) {
var uid = ++counter;
handlers[uid] = handler;
worker.postMessage({
uid: uid,
message: message
});
}
2018-04-11 20:29:07 +03:00
return { postMessage: postMessage };
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
// -------- UTILITY FUNCTIONS --------
function loadPersistedState() {
var editorState = { optionsOpen: false };
try {
Object.assign(
editorState,
JSON.parse(window.localStorage.getItem("editorState"))
);
} catch (error) {
// noop
}
var queryState = parseQuery() || {};
return {
editorState: editorState,
content: typeof queryState.content === "string" ? queryState.content : "",
options: queryState.options
};
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
function persistState(state) {
try {
window.localStorage.setItem(
"editorState",
JSON.stringify(state.editorState)
);
} catch (_) {
// noop
}
saveQuery({ content: state.content, options: state.options });
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
function getComponentByOptionType(option) {
switch (option.type) {
case "boolean":
return BooleanOption;
case "int":
return NumberOption;
case "choice":
return ChoiceOption;
default:
throw new Error("unsupported type");
2017-09-13 22:14:51 +03:00
}
}
2017-09-14 01:14:35 +03:00
function getCodemirrorMode(options) {
switch (options.parser) {
case "css":
case "less":
case "scss":
2017-09-14 01:14:35 +03:00
return "css";
case "markdown":
return "markdown";
2017-09-14 01:14:35 +03:00
default:
return "jsx";
2017-09-14 01:14:35 +03:00
}
}
2018-04-11 20:29:07 +03:00
function getOptions(supportedOptions) {
supportedOptions = supportedOptions.reduce(function(acc, opt) {
acc[opt.name] = opt;
return acc;
}, {});
2018-04-11 20:29:07 +03:00
return OPTIONS.reduce(function(options, opt) {
opt = typeof opt === "string" ? { name: opt } : opt;
if (!supportedOptions[opt.name]) {
return options;
}
2017-09-13 22:14:51 +03:00
2018-04-11 20:29:07 +03:00
var modified = Object.assign({}, opt, supportedOptions[opt.name]);
modified.cliName =
"--" +
(opt.inverted ? "no-" : "") +
opt.name.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase();
if (modified.type === "boolean" && opt.inverted) {
modified.default = !modified.default;
}
2018-04-11 20:29:07 +03:00
options.push(modified);
return options;
}, []);
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
// Parse the URL hash as a config object
function parseQuery() {
var hash = document.location.hash.slice(1);
try {
// providing backwards support for old json encoded URIComponent
if (hash.indexOf("%7B%22") !== -1) {
return JSON.parse(decodeURIComponent(hash));
}
return JSON.parse(LZString.decompressFromEncodedURIComponent(hash));
} catch (error) {
return {};
}
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
function saveQuery(state) {
var hash = LZString.compressToEncodedURIComponent(JSON.stringify(state));
if (
typeof URL === "function" &&
typeof history === "object" &&
typeof history.replaceState === "function"
) {
var url = new URL(location);
url.hash = hash;
history.replaceState(null, null, url);
} else {
location.hash = hash;
}
2017-09-13 22:14:51 +03:00
}
2018-04-11 20:29:07 +03:00
function getCodeExample(parser) {
switch (parser) {
case "babylon":
return [
'function HelloWorld({greeting = "hello", greeted = \'"World"\', silent = false, onMouseOver,}) {',
"",
" if(!greeting){return null};",
"",
" // TODO: Don't use random in render",
' let num = Math.floor (Math.random() * 1E+7).toString().replace(/\\.\\d+/ig, "")',
"",
" return <div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}>",
"",
" <strong>{ greeting.slice( 0, 1 ).toUpperCase() + greeting.slice(1).toLowerCase() }</strong>",
' {greeting.endsWith(",") ? " " : <span style={{color: \'\\grey\'}}>", "</span> }',
" <em>",
"\t{ greeted }",
"\t</em>",
" { (silent)",
' ? "."',
' : "!"}',
"",
" </div>;",
"",
"}"
].join("\n");
case "flow":
return [
"declare export function graphql<Props, Variables, Component: React$ComponentType<Props>>",
" (query: GQLDocument, config?: Config<Props, QueryConfigOptions<Variables>>):",
" (Component: Component) => React$ComponentType<$Diff<React$ElementConfig<Component>, {",
" data: Object|void,",
" mutate: Function|void",
" }>>",
"",
'declare type FetchPolicy = "cache-first" | "cache-and-network" | "network-only" | "cache-only"'
].join("\n");
case "typescript":
return [
"interface MyInterface {",
" foo(): string,",
" bar: Array<number>,",
"}",
"",
"export abstract class Foo implements MyInterface {",
" foo() {",
" // TODO: return an actual value here",
" return 'hello'",
" }",
" get bar() {",
" return [ 1,",
"",
" 2, 3,",
" ]",
" }",
"}",
"",
"type RequestType = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'OPTIONS' | 'CONNECT' | 'DELETE' | 'TRACE'"
].join("\n");
case "css":
// Excerpted from the Bootstrap source, which is licensed under the MIT license:
// https://github.com/twbs/bootstrap/blob/v4.0.0-beta.3/LICENSE
return [
"@media (max-width: 480px) {",
" .bd-examples {margin-right: -.75rem;margin-left: -.75rem",
" }",
" ",
' .bd-examples>[class^="col-"] {',
" padding-right: .75rem;",
" padding-left: .75rem;",
" ",
" }",
"}"
].join("\n");
case "scss":
// Excerpted from the Bootstrap source, which is licensed under the MIT license:
// https://github.com/twbs/bootstrap/blob/v4.0.0-beta.3/LICENSE
return [
"@function color-yiq($color) {",
" $r: red($color);$g: green($color);$b: blue($color);",
"",
" $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;",
"",
" @if ($yiq >= $yiq-contrasted-threshold) {",
" @return $yiq-text-dark;",
"} @else {",
" @return $yiq-text-light;",
" }",
"}",
"",
"@each $color, $value in $colors {",
" .swatch-#{$color} {",
" color: color-yiq($value);",
" background-color: #{$value};",
" }",
"}"
].join("\n");
case "less":
// Copied from http://lesscss.org/features/#detached-rulesets-feature
return [
"@my-ruleset: {",
" .my-selector {",
" @media tv {",
" background-color: black;",
" }",
" }",
" };",
"@media (orientation:portrait) {",
" @my-ruleset();",
"}"
].join("\n");
case "json":
// Excerpted & adapted from Wikipedia, under the Creative Commons Attribution-ShareAlike License
// https://en.wikipedia.org/wiki/JSON#Example
return [
'{"allOn": "Single", "Line": "example",',
'"noSpace":true,',
' "quote": {',
" 'singleQuote': 'example',",
' "indented": true,',
" },",
' "phoneNumbers": [',
' {"type": "home",',
' "number": "212 555-1234"},',
' {"type": "office",',
' "trailing": "commas by accident"},',
" ],",
"}"
].join("\n");
case "graphql":
return [
"query Browse($offset: Int, $limit: Int, $categories: [String!], $search: String) {",
" browse(limit: $limit, offset: $offset, categories: $categories, search: $search) {",
" total,",
" results {",
" title",
" price",
" }",
" }",
"}"
].join("\n");
case "markdown":
return [
"Header",
"======",
"",
"_Look,_ code blocks are formatted *too!*",
"",
"``` js",
"function identity(x) { return x }",
"```",
"",
"Pilot|Airport|Hours",
"--|:--:|--:",
"John Doe|SKG|1338",
"Jane Roe|JFK|314",
"",
"- - - - - - - - - - - - - - -",
"",
"+ List",
" + with a [link] (/to/somewhere)",
"+ and [another one]",
"",
"",
" [another one]: http://example.com 'Example title'",
"",
"Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"Curabitur consectetur maximus risus, sed maximus tellus tincidunt et."
].join("\n");
case "vue":
return [
"<template>",
" <p>Templates are not formatted yet ...",
" </p>",
"</template>",
"",
"<script>",
"let Prettier = format => { your.js('though') }",
"</script>",
"",
"<style>",
".and { css: too! important }",
"</style>"
].join("\n");
default:
return "";
}
}
2018-04-11 20:29:07 +03:00
// Preact without ES6 classes
function createClass(obj) {
function F() {
preact.Component.call(this);
}
var p = (F.prototype = new preact.Component());
for (var i in obj) {
p[i] = obj[i];
}
return (p.constructor = F);
}