mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
|
/**
|
||
|
* Copyright 2016 IBM Corp.
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
**/
|
||
|
RED.bidi.baseTextDir = (function() {
|
||
|
var LRE = "\u202A",
|
||
|
RLE = "\u202B",
|
||
|
PDF = "\u202C";
|
||
|
|
||
|
function _isRTLValue(stringValue) {
|
||
|
var length = stringValue.length;
|
||
|
for (var i = 0 ; i < length; i++) {
|
||
|
if (_isBidiChar(stringValue.charCodeAt(i))) {
|
||
|
return true;
|
||
|
} else if (_isLatinChar(stringValue.charCodeAt(i))) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return RED.bidi.isMirroringEnabled();
|
||
|
}
|
||
|
|
||
|
function _isBidiChar(c) {
|
||
|
return (c >= 0x05d0 && c <= 0x05ff)||
|
||
|
(c >= 0x0600 && c <= 0x065f)||
|
||
|
(c >= 0x066a && c <= 0x06ef)||
|
||
|
(c >= 0x06fa && c <= 0x07ff)||
|
||
|
(c >= 0xfb1d && c <= 0xfdff)||
|
||
|
(c >= 0xfe70 && c <= 0xfefc);
|
||
|
}
|
||
|
|
||
|
function _isLatinChar(c) {
|
||
|
return (c > 64 && c < 91) || (c > 96 && c < 123);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Enforces the text direction of a given string by adding
|
||
|
* UCC (Unicode Control Characters)
|
||
|
* @param value - the string
|
||
|
*/
|
||
|
function _enforceTextDirectionWithUCC(value) {
|
||
|
if (value) {
|
||
|
var dir = RED.bidi.resolveBaseTextDir(value);
|
||
|
if (dir == "ltr") {
|
||
|
return LRE + value + PDF;
|
||
|
} else if (dir == "rtl") {
|
||
|
return RLE + value + PDF;
|
||
|
}
|
||
|
}
|
||
|
return value;
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
enforceTextDirectionWithUCC: _enforceTextDirectionWithUCC,
|
||
|
isRTLValue : _isRTLValue
|
||
|
}
|
||
|
})();
|