js-beautify/web/common-function.js

392 lines
12 KiB
JavaScript
Raw Normal View History

/*jshint strict:false, node:false */
2022-06-27 13:16:27 +00:00
/*exported run_tests, read_settings_from_cookie, beautify, submitIssue, copyText, selectAll, clearAll, changeToFileContent, setPreferredColorScheme*/
var the = {
2018-07-07 02:14:50 +00:00
use_codemirror: !window.location.href.match(/without-codemirror/),
2018-07-06 20:30:55 +00:00
beautifier_file: window.location.href.match(/debug/) ? 'beautifier' : './beautifier.min',
beautifier: null,
2018-07-07 02:14:50 +00:00
beautify_in_progress: false,
editor: null // codemirror editor
};
2018-07-06 20:30:55 +00:00
requirejs.config({
//By default load any module IDs from js/lib
baseUrl: 'js/lib',
paths: {
2018-07-11 00:16:42 +00:00
'beautifier': the.beautifier_file
2018-07-06 20:30:55 +00:00
}
});
requirejs(['beautifier'],
function(beautifier) {
the.beautifier = beautifier;
});
2018-07-06 20:30:55 +00:00
function any(a, b) {
return a || b;
}
function set_editor_mode() {
if (the.editor) {
var language = $('#language').val();
var mode = 'javascript';
if (language === 'js') {
mode = 'javascript';
} else if (language === 'html') {
mode = 'htmlmixed';
} else if (language === 'css') {
mode = 'css';
}
the.editor.setOption("mode", mode);
}
}
function run_tests() {
2018-07-07 02:14:50 +00:00
$.when($.getScript("js/test/sanitytest.js"),
$.getScript("js/test/generated/beautify-javascript-tests.js"),
$.getScript("js/test/generated/beautify-css-tests.js"),
$.getScript("js/test/generated/beautify-html-tests.js"))
2018-06-30 06:26:50 +00:00
.done(function() {
2018-07-07 02:14:50 +00:00
var st = new SanityTest();
2018-07-06 20:30:55 +00:00
run_javascript_tests(st, Urlencoded, the.beautifier.js, the.beautifier.html, the.beautifier.css);
run_css_tests(st, Urlencoded, the.beautifier.js, the.beautifier.html, the.beautifier.css);
run_html_tests(st, Urlencoded, the.beautifier.js, the.beautifier.html, the.beautifier.css);
2018-07-07 02:14:50 +00:00
JavascriptObfuscator.run_tests(st);
P_A_C_K_E_R.run_tests(st);
Urlencoded.run_tests(st);
MyObfuscate.run_tests(st);
var results = st.results_raw()
.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/ /g, '&nbsp;')
.replace(/\r/g, '·')
.replace(/\n/g, '<br>');
$('#testresults').html(results).show();
2018-06-30 06:26:50 +00:00
});
}
function read_settings_from_cookie() {
2018-07-06 20:30:55 +00:00
$('#tabsize').val(any(Cookies.get('tabsize'), '4'));
$('#brace-style').val(any(Cookies.get('brace-style'), 'collapse'));
2023-08-10 13:34:15 +00:00
$('#detect-packers').prop('checked', Cookies.get('detect-packers') === 'on');
2018-07-06 20:30:55 +00:00
$('#max-preserve-newlines').val(any(Cookies.get('max-preserve-newlines'), '5'));
$('#keep-array-indentation').prop('checked', Cookies.get('keep-array-indentation') === 'on');
$('#break-chained-methods').prop('checked', Cookies.get('break-chained-methods') === 'on');
$('#indent-scripts').val(any(Cookies.get('indent-scripts'), 'normal'));
$('#additional-options').val(any(Cookies.get('additional-options'), '{}'));
$('#space-before-conditional').prop('checked', Cookies.get('space-before-conditional') !== 'off');
$('#wrap-line-length').val(any(Cookies.get('wrap-line-length'), '0'));
$('#unescape-strings').prop('checked', Cookies.get('unescape-strings') === 'on');
$('#jslint-happy').prop('checked', Cookies.get('jslint-happy') === 'on');
$('#end-with-newline').prop('checked', Cookies.get('end-with-newline') === 'on');
$('#indent-inner-html').prop('checked', Cookies.get('indent-inner-html') === 'on');
$('#comma-first').prop('checked', Cookies.get('comma-first') === 'on');
$('#e4x').prop('checked', Cookies.get('e4x') === 'on');
$('#language').val(any(Cookies.get('language'), 'js'));
$('#indent-empty-lines').prop('checked', Cookies.get('indent-empty-lines') === 'on');
}
function store_settings_to_cookie() {
2018-07-07 02:14:50 +00:00
var opts = {
expires: 360
};
2018-07-06 20:30:55 +00:00
Cookies.set('tabsize', $('#tabsize').val(), opts);
Cookies.set('brace-style', $('#brace-style').val(), opts);
Cookies.set('detect-packers', $('#detect-packers').prop('checked') ? 'on' : 'off', opts);
Cookies.set('max-preserve-newlines', $('#max-preserve-newlines').val(), opts);
Cookies.set('keep-array-indentation', $('#keep-array-indentation').prop('checked') ? 'on' : 'off', opts);
Cookies.set('break-chained-methods', $('#break-chained-methods').prop('checked') ? 'on' : 'off', opts);
Cookies.set('space-before-conditional', $('#space-before-conditional').prop('checked') ? 'on' : 'off',
2018-07-07 02:14:50 +00:00
opts);
2018-07-06 20:30:55 +00:00
Cookies.set('unescape-strings', $('#unescape-strings').prop('checked') ? 'on' : 'off', opts);
Cookies.set('jslint-happy', $('#jslint-happy').prop('checked') ? 'on' : 'off', opts);
Cookies.set('end-with-newline', $('#end-with-newline').prop('checked') ? 'on' : 'off', opts);
Cookies.set('wrap-line-length', $('#wrap-line-length').val(), opts);
Cookies.set('indent-scripts', $('#indent-scripts').val(), opts);
Cookies.set('additional-options', $('#additional-options').val(), opts);
Cookies.set('indent-inner-html', $('#indent-inner-html').prop('checked') ? 'on' : 'off', opts);
Cookies.set('comma-first', $('#comma-first').prop('checked') ? 'on' : 'off', opts);
Cookies.set('e4x', $('#e4x').prop('checked') ? 'on' : 'off', opts);
Cookies.set('language', $('#language').val(), opts);
Cookies.set('indent-empty-lines', $('#indent-empty-lines').prop('checked') ? 'on' : 'off', opts);
}
function unpacker_filter(source) {
var leading_comments = '',
2018-07-07 02:14:50 +00:00
comment = '',
unpacked = '',
found = false;
// cuts leading comments
2018-07-07 02:14:50 +00:00
do {
found = false;
if (/^\s*\/\*/.test(source)) {
found = true;
comment = source.substr(0, source.indexOf('*/') + 2);
source = source.substr(comment.length);
leading_comments += comment;
2018-07-07 02:14:50 +00:00
} else if (/^\s*\/\//.test(source)) {
found = true;
comment = source.match(/^\s*\/\/.*/)[0];
source = source.substr(comment.length);
leading_comments += comment;
}
2018-07-07 02:14:50 +00:00
} while (found);
leading_comments += '\n';
source = source.replace(/^\s+/, '');
2018-07-07 02:14:50 +00:00
var unpackers = [P_A_C_K_E_R, Urlencoded, JavascriptObfuscator /*, MyObfuscate*/ ];
for (var i = 0; i < unpackers.length; i++) {
if (unpackers[i].detect(source)) {
unpacked = unpackers[i].unpack(source);
2018-07-11 00:16:42 +00:00
if (unpacked !== source) {
2018-07-07 02:14:50 +00:00
source = unpacker_filter(unpacked);
}
}
}
return leading_comments + source;
}
function beautify() {
2018-07-11 00:16:42 +00:00
if (the.beautify_in_progress) {
return;
}
2018-07-07 02:14:50 +00:00
store_settings_to_cookie();
the.beautify_in_progress = true;
var source = the.editor ? the.editor.getValue() : $('#source').val(),
output,
opts = {};
the.lastInput = source;
var additional_options = $('#additional-options').val();
var language = $('#language').val();
the.language = $('#language option:selected').text();
opts.indent_size = $('#tabsize').val();
2018-08-08 17:05:51 +00:00
opts.indent_char = parseInt(opts.indent_size, 10) === 1 ? '\t' : ' ';
2018-07-07 02:14:50 +00:00
opts.max_preserve_newlines = $('#max-preserve-newlines').val();
opts.preserve_newlines = opts.max_preserve_newlines !== "-1";
opts.keep_array_indentation = $('#keep-array-indentation').prop('checked');
opts.break_chained_methods = $('#break-chained-methods').prop('checked');
opts.indent_scripts = $('#indent-scripts').val();
opts.brace_style = $('#brace-style').val() + ($('#brace-preserve-inline').prop('checked') ? ",preserve-inline" : "");
opts.space_before_conditional = $('#space-before-conditional').prop('checked');
opts.unescape_strings = $('#unescape-strings').prop('checked');
opts.jslint_happy = $('#jslint-happy').prop('checked');
opts.end_with_newline = $('#end-with-newline').prop('checked');
opts.wrap_line_length = $('#wrap-line-length').val();
opts.indent_inner_html = $('#indent-inner-html').prop('checked');
opts.comma_first = $('#comma-first').prop('checked');
opts.e4x = $('#e4x').prop('checked');
opts.indent_empty_lines = $('#indent-empty-lines').prop('checked');
2018-07-07 02:14:50 +00:00
$('#additional-options-error').hide();
$('#open-issue').hide();
if (additional_options && additional_options !== '{}') {
try {
additional_options = JSON.parse(additional_options);
opts = mergeObjects(opts, additional_options);
} catch (e) {
2018-07-07 02:14:50 +00:00
$('#additional-options-error').show();
}
2018-07-07 02:14:50 +00:00
}
var selectedOptions = JSON.stringify(opts, null, 2);
$('#options-selected').val(selectedOptions);
if (language === 'html') {
2018-07-06 20:30:55 +00:00
output = the.beautifier.html(source, opts);
2018-07-07 02:14:50 +00:00
} else if (language === 'css') {
2018-07-06 20:30:55 +00:00
output = the.beautifier.css(source, opts);
2018-07-07 02:14:50 +00:00
} else {
if ($('#detect-packers').prop('checked')) {
source = unpacker_filter(source);
}
2018-07-06 20:30:55 +00:00
output = the.beautifier.js(source, opts);
2018-07-07 02:14:50 +00:00
}
2018-06-29 21:07:51 +00:00
2018-07-07 02:14:50 +00:00
if (the.editor) {
the.editor.setValue(output);
} else {
$('#source').val(output);
}
2018-07-07 02:14:50 +00:00
the.lastOutput = output;
the.lastOpts = selectedOptions;
2018-06-27 22:08:59 +00:00
2019-05-06 18:31:00 +00:00
$('#open-issue').show();
set_editor_mode();
2019-05-06 18:31:00 +00:00
2018-07-07 02:14:50 +00:00
the.beautify_in_progress = false;
}
function mergeObjects(allOptions, additionalOptions) {
2018-07-07 02:14:50 +00:00
var finalOpts = {};
var name;
for (name in allOptions) {
finalOpts[name] = allOptions[name];
}
for (name in additionalOptions) {
finalOpts[name] = additionalOptions[name];
}
return finalOpts;
}
2018-06-27 22:08:59 +00:00
function submitIssue() {
var url = 'https://github.com/beautifier/js-beautify/issues/new?';
2019-05-06 18:31:00 +00:00
var encoded = encodeURIComponent(getSubmitIssueBody()).replace(/%20/g, "+");
if (encoded.length > 7168) {
var confirmText = [
'The sample text is too long for automatic template creation.',
'',
'Click OK to continue and create an issue starting with template defaults.',
'Click CANCEL to return to the beautifier and try beautifying a shorter sample.'
];
if (!confirm(confirmText.join('\n'))) {
$('#open-issue').hide();
return;
}
encoded = encodeURIComponent(getSubmitIssueBody(true)).replace(/%20/g, "+");
}
url += 'body=' + encoded;
console.log(url);
console.log(url.length);
window.open(url, '_blank').focus();
}
function getSubmitIssueBody(trucate) {
var input = the.lastInput;
var output = the.lastOutput;
if (trucate) {
input = '/* Your input text */';
output = '/* Output text currently returned by the beautifier */';
}
var submit_body = [
'# Description',
2019-05-06 18:31:00 +00:00
'<!-- Describe your scenario here -->',
'',
2019-05-06 18:31:00 +00:00
'## Input',
'The code looked like this before beautification:',
'```',
2019-05-06 18:31:00 +00:00
input,
'```',
'',
2019-05-06 18:31:00 +00:00
'## Current Output',
'The code actually looked like this after beautification:',
'```',
2019-05-06 18:31:00 +00:00
output,
'```',
'',
2019-05-06 18:31:00 +00:00
'## Expected Output',
'The code should have looked like this after beautification:',
'```',
2019-05-06 18:31:00 +00:00
'/* Your desired output text */',
'```',
'',
2019-05-06 18:31:00 +00:00
'# Environment',
'',
'## Browser User Agent:',
navigator.userAgent,
'',
'Language Selected:',
the.language,
'',
'## Settings',
'```json',
the.lastOpts,
'```',
2018-07-09 22:03:25 +00:00
''
];
2019-05-06 18:31:00 +00:00
return submit_body.join('\n');
2018-10-08 17:10:39 +00:00
}
function copyText() {
if (the.editor) {
the.editor.execCommand('selectAll');
var currentText = the.editor.getValue();
var copyArea = $('<textarea />')
.text(currentText)
.attr('readonly', '')
.css({ 'position': 'absolute', 'left': '-9999px' });
$('body').append(copyArea);
copyArea.select();
document.execCommand('copy');
copyArea.remove();
} else {
$('#source').select();
document.execCommand('copy');
}
}
function selectAll() {
if (the.editor) {
the.editor.execCommand('selectAll');
} else {
$('#source').select();
}
}
2021-05-04 15:56:07 +00:00
function clearAll() {
if (the.editor) {
the.editor.setValue('');
} else {
$('#source').val('');
}
}
function changeToFileContent(input) {
var file = input.files[0];
if (file) {
var reader = new FileReader();
reader.readAsText(file, "UTF-8");
reader.onload = function(event) {
if (the.editor) {
the.editor.setValue(event.target.result);
} else {
$('#source').val(event.target.result);
}
};
}
}
2022-06-27 13:16:27 +00:00
function setPreferredColorScheme() {
2022-07-17 18:55:25 +00:00
var themeToggleBtn = document.querySelector('#theme-toggle-btn');
themeToggleBtn.addEventListener('change', switchTheme, false);
2022-06-27 13:16:27 +00:00
var isPreferredColorSchemeDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (isPreferredColorSchemeDark) {
2022-07-17 18:55:25 +00:00
themeToggleBtn.checked = true;
2022-06-27 13:16:27 +00:00
$('.CodeMirror').addClass('cm-s-darcula');
$('body').addClass('dark-mode');
$('.logo').children('img').attr("src", "web/banner-dark.svg");
}
}
2022-07-17 18:55:25 +00:00
function switchTheme(themeToggleEvent) {
if (themeToggleEvent.target.checked) {
$('.CodeMirror').addClass('cm-s-darcula');
$('body').addClass('dark-mode');
$('.logo').children('img').attr("src", "web/banner-dark.svg");
2022-08-07 06:26:58 +00:00
} else {
2022-07-17 18:55:25 +00:00
$('.CodeMirror').removeClass('cm-s-darcula');
$('body').removeClass('dark-mode');
$('.logo').children('img').attr("src", "web/banner-light.svg");
}
2022-08-07 06:26:58 +00:00
}