| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- global CodeMirror loadScript css_beautify
- global editors getSectionForChild showHelp
- */
- 'use strict';
- function beautify(event) {
- loadScript('/vendor-overwrites/beautify/beautify-css-mod.js')
- .then(() => {
- if (!window.css_beautify && window.exports) {
- window.css_beautify = window.exports.css_beautify;
- }
- })
- .then(doBeautify);
- function doBeautify() {
- const tabs = prefs.get('editor.indentWithTabs');
- const options = prefs.get('editor.beautify');
- options.indent_size = tabs ? 1 : prefs.get('editor.tabSize');
- options.indent_char = tabs ? '\t' : ' ';
- const section = getSectionForChild(event.target);
- const scope = section ? [section.CodeMirror] : editors;
- showHelp(t('styleBeautify'), '<div class="beautify-options">' +
- optionHtml('.selector1,', 'selector_separator_newline') +
- optionHtml('.selector2,', 'newline_before_open_brace') +
- optionHtml('{', 'newline_after_open_brace') +
- optionHtml('border: none;', 'newline_between_properties', true) +
- optionHtml('display: block;', 'newline_before_close_brace', true) +
- optionHtml('}', 'newline_between_rules') +
- `<label style="display: block; clear: both;">
- <input data-option="indent_conditional" type="checkbox"
- ${options.indent_conditional !== false ? 'checked' : ''}>
- <svg class="svg-icon checked"><use xlink:href="#svg-icon-checked"/></svg>` +
- t('styleBeautifyIndentConditional') + '</label>' +
- '</div>' +
- '<div><button role="undo"></button></div>');
- $('#help-popup').className = 'wide';
- const undoButton = $('#help-popup button[role="undo"]');
- undoButton.textContent = t(scope.length === 1 ? 'undo' : 'undoGlobal');
- undoButton.addEventListener('click', () => {
- let undoable = false;
- scope.forEach(cm => {
- if (cm.beautifyChange && cm.beautifyChange[cm.changeGeneration()]) {
- delete cm.beautifyChange[cm.changeGeneration()];
- cm.undo();
- cm.scrollIntoView(cm.getCursor());
- undoable |= cm.beautifyChange[cm.changeGeneration()];
- }
- });
- undoButton.disabled = !undoable;
- });
- scope.forEach(cm => {
- setTimeout(() => {
- const pos = options.translate_positions =
- [].concat.apply([], cm.doc.sel.ranges.map(r =>
- [Object.assign({}, r.anchor), Object.assign({}, r.head)]));
- const text = cm.getValue();
- const newText = css_beautify(text, options);
- if (newText !== text) {
- if (!cm.beautifyChange || !cm.beautifyChange[cm.changeGeneration()]) {
- // clear the list if last change wasn't a css-beautify
- cm.beautifyChange = {};
- }
- cm.setValue(newText);
- const selections = [];
- for (let i = 0; i < pos.length; i += 2) {
- selections.push({anchor: pos[i], head: pos[i + 1]});
- }
- cm.setSelections(selections);
- cm.beautifyChange[cm.changeGeneration()] = true;
- undoButton.disabled = false;
- }
- }, 0);
- });
- $('.beautify-options').onchange = ({target}) => {
- const value = target.type === 'checkbox' ? target.checked : target.selectedIndex > 0;
- prefs.set('editor.beautify', Object.assign(options, {[target.dataset.option]: value}));
- if (target.parentNode.hasAttribute('newline')) {
- target.parentNode.setAttribute('newline', value.toString());
- }
- doBeautify();
- };
- function optionHtml(label, optionName, indent) {
- const value = options[optionName];
- return '<div newline="' + value.toString() + '">' +
- '<span' + (indent ? ' indent' : '') + '>' + label + '</span>' +
- '<div class="select-resizer">' +
- '<select data-option="' + optionName + '">' +
- '<option' + (value ? '' : ' selected') + '> </option>' +
- '<option' + (value ? ' selected' : '') + '>\\n</option>' +
- '</select>' +
- '<svg class="svg-icon select-arrow" viewBox="0 0 1792 1792">' +
- '<path fill-rule="evenodd" d="M1408 704q0 26-19 45l-448 448q-19 19-45 ' +
- '19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"/>' +
- '</svg>' +
- '</div>' +
- '</div>';
- }
- }
- }
|