Skip to content

Commit

Permalink
Adding bidi preferences (#1375)
Browse files Browse the repository at this point in the history
  • Loading branch information
wajnberg authored and knolleary committed Sep 17, 2017
1 parent a844ca1 commit 1532d9b
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 6 deletions.
47 changes: 42 additions & 5 deletions editor/js/text/bidi.js
Expand Up @@ -15,7 +15,9 @@
**/
RED.text = {};
RED.text.bidi = (function() {
var textDir = "";
var textDir = "";
var textDirPref = "auto";
var bidiEnabled = false;
var LRE = "\u202A",
RLE = "\u202B",
PDF = "\u202C";
Expand Down Expand Up @@ -110,8 +112,8 @@ RED.text.bidi = (function() {
}

/**
* Sets the text direction preference
* @param dir - the text direction preference
* Sets the text direction
* @param dir - the actual text direction
*/
function setTextDirection(dir) {
textDir = dir;
Expand All @@ -120,9 +122,44 @@ RED.text.bidi = (function() {
RED.palette.refresh();
enforceTextDirectionOnPage();
}


/**
* Gets the bidi enabled preference
*/
function getBidiEnabled() {
return bidiEnabled;
}

/**
* Sets the bidi enabled preference
* @param state - the bidi enabled preference
*/
function setBidiEnabled(state) {
bidiEnabled = state;
setTextDirection((state ? textDirPref : ""));
}

/**
* Gets the text direction preference
*/
function getTextDirPref() {
return textDirPref;
}

/**
* Sets the text direction preference
* @param dirPref - text direction preference
*/
function setTextDirPref(dirPref) {
textDirPref = dirPref;
setTextDirection(textDirPref);
}

return {
setTextDirection: setTextDirection,
setBidiEnabled: setBidiEnabled,
setTextDirPref: setTextDirPref,
getBidiEnabled: getBidiEnabled,
getTextDirPref: getTextDirPref,
enforceTextDirectionWithUCC: enforceTextDirectionWithUCC,
resolveBaseTextDir: resolveBaseTextDir,
prepareInput: prepareInput
Expand Down
26 changes: 26 additions & 0 deletions editor/js/ui/userSettings.js
Expand Up @@ -142,8 +142,34 @@ RED.userSettings = (function() {
}
});
})
addBidiPreferences(pane);
return pane;
}

function addBidiPreferences(pane) {
$('<h3></h3>').text(RED._("menu.label.bidi")).appendTo(pane);
var row;

// Bidi enabled toggle
row = $('<div class="user-settings-row"></div>').appendTo(pane);
var input = $('<label for="user-settings-view-bidi-enabled"><input id="user-settings-view-bidi-enabled" type="checkbox"> '+RED._("menu.label.bidiSupport") +'</label>').appendTo(row).find("input");
input.prop('checked',RED.text.bidi.getBidiEnabled());

// Text Direction combo
row = $('<div class="user-settings-row"></div>').appendTo(pane);
$('<label for="user-settings-view-text-direction">'+RED._("menu.label.view.textDir")+'</label>').appendTo(row);
var select = $('<select id="user-settings-view-text-direction"><option value="ltr">' + RED._("menu.label.view.ltr") + '</option><option value="rtl">' + RED._("menu.label.view.rtl") + '</option><option value="auto">' + RED._("menu.label.view.auto") + '</option></select>').appendTo(row);
select.val(RED.text.bidi.getTextDirPref());
select.prop('disabled', !RED.text.bidi.getBidiEnabled());

input.change(function() {
RED.text.bidi.setBidiEnabled(input.prop('checked'));
select.prop('disabled', !RED.text.bidi.getBidiEnabled());
});
select.change(function() {
RED.text.bidi.setTextDirPref(select.val());
});
}

function setSelected(id, value) {
var opt = allSettings[id];
Expand Down
4 changes: 3 additions & 1 deletion red/api/locales/en-US/editor.json
Expand Up @@ -67,7 +67,9 @@
"editPalette":"Manage palette",
"other": "Other",
"showTips": "Show tips",
"help": "Node-RED website"
"help": "Node-RED website",
"bidi": "Bidi",
"bidiSupport": "Enable Bidi support"
}
},
"user": {
Expand Down

0 comments on commit 1532d9b

Please sign in to comment.