123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- // ******* Expr MANAGER ******** //
- $axure.internal(function($ax) {
- var _expr = $ax.expr = {};
- var _binOpHandlers = {
- '&&': function(left, right) { return $ax.getBool(left) && $ax.getBool(right); },
- '||': function(left, right) { return $ax.getBool(left) || $ax.getBool(right); },
- '==': function(left, right) { return isEqual(left, right); },
- '!=': function(left, right) { return !isEqual(left, right); },
- '>': function(left, right) { return left > Number(right); },
- '<': function(left, right) { return left < Number(right); },
- '>=': function(left, right) { return left >= Number(right); },
- '<=': function(left, right) { return left <= Number(right); }
- };
- var isEqual = function(left, right) {
- if(left instanceof Object && right instanceof Object) {
- var prop;
- // Go through all of lefts properties and compare them to rights.
- for(prop in left) {
- if(!left.hasOwnProperty(prop)) continue;
- // If left has a property that the right doesn't they are not equal.
- if(!right.hasOwnProperty(prop)) return false;
- // If any of their properties are not equal, they are not equal.
- if(!isEqual(left[prop], right[prop])) return false;
- }
- for(prop in right) {
- // final check to make sure right doesn't have some extra properties that make them not equal.
- if(left.hasOwnProperty(prop) != right.hasOwnProperty(prop)) return false;
- }
- return true;
- }
- return $ax.getBool(left) == $ax.getBool(right);
- };
- var _exprHandlers = {};
- _exprHandlers.array = function(expr, eventInfo) {
- var returnVal = [];
- for(var i = 0; i < expr.items.length; i++) {
- returnVal[returnVal.length] = _evaluateExpr(expr.items[i], eventInfo);
- }
- return returnVal;
- };
- _exprHandlers.binaryOp = function(expr, eventInfo) {
- var left = expr.leftExpr && _evaluateExpr(expr.leftExpr, eventInfo);
- var right = expr.rightExpr && _evaluateExpr(expr.rightExpr, eventInfo);
- if(left == undefined || right == undefined) return false;
- return _binOpHandlers[expr.op](left, right);
- };
- _exprHandlers.block = function(expr, eventInfo) {
- var subExprs = expr.subExprs;
- for(var i = 0; i < subExprs.length; i++) {
- _evaluateExpr(subExprs[i], eventInfo); //ignore the result
- }
- };
- _exprHandlers.booleanLiteral = function(expr) {
- return expr.value;
- };
- _exprHandlers.nullLiteral = function() { return null; };
- _exprHandlers.pathLiteral = function(expr, eventInfo) {
- if(expr.isThis) return [eventInfo.srcElement];
- if(expr.isFocused && window.lastFocusedControl) {
- window.lastFocusedControl.focus();
- return [window.lastFocusedControl.getAttribute('id')];
- }
- if(expr.isTarget) return [eventInfo.targetElement];
- return $ax.getElementIdsFromPath(expr.value, eventInfo);
- };
- _exprHandlers.panelDiagramLiteral = function(expr, eventInfo) {
- var elementIds = $ax.getElementIdsFromPath(expr.panelPath, eventInfo);
- var elementIdsWithSuffix = [];
- var suffix = '_state' + expr.panelIndex;
- for(var i = 0; i < elementIds.length; i++) {
- elementIdsWithSuffix[i] = $ax.repeater.applySuffixToElementId(elementIds[i], suffix);
- }
- return $jobj(elementIdsWithSuffix).data('label');
- };
- _exprHandlers.fcall = function(expr, eventInfo) {
- var oldTarget = eventInfo.targetElement;
- var targets = [];
- var fcallArgs = [];
- var exprArgs = expr.arguments;
- for(var i = 0; i < expr.arguments.length; i++) {
- var exprArg = exprArgs[i];
- var fcallArg = '';
- if(targets.length) {
- for(var j = 0; j < targets.length; j++) {
- eventInfo.targetElement = targets[j];
- fcallArgs[j][i] = _evaluateExpr(exprArg, eventInfo);
- }
- } else {
- fcallArg = _evaluateExpr(exprArg, eventInfo);
- fcallArgs[i] = fcallArg;
- }
- // We do support null exprArgs...
- // TODO: This makes 2 assumptions that may change in the future. 1. The pathLiteral is the always the first arg. 2. there is always only 1 pathLiteral
- if(exprArg && exprArg.exprType == 'pathLiteral') {
- targets = fcallArg;
- // fcallArgs is now an array of an array of args
- for(j = 0; j < targets.length; j++) fcallArgs[j] = [[fcallArg[j]]];
- }
- }
- // we want to preserve the target element from outside this function.
- eventInfo.targetElement = oldTarget;
- var retval = '';
- if(targets.length) {
- // Go backwards so retval is the first item.
- for(i = targets.length - 1; i >= 0; i--) {
- var args = fcallArgs[i];
- // Add event info to the end
- args[args.length] = eventInfo;
- retval = _exprFunctions[expr.functionName].apply(this, args);
- }
- } else fcallArgs[fcallArgs.length] = eventInfo;
- return targets.length ? retval : _exprFunctions[expr.functionName].apply(this, fcallArgs);
- };
- _exprHandlers.globalVariableLiteral = function(expr) {
- return expr.variableName;
- };
- _exprHandlers.keyPressLiteral = function(expr) {
- var keyInfo = {};
- keyInfo.keyCode = expr.keyCode;
- keyInfo.ctrl = expr.ctrl;
- keyInfo.alt = expr.alt;
- keyInfo.shift = expr.shift;
- return keyInfo;
- };
- _exprHandlers.adaptiveViewLiteral = function(expr) {
- return expr.id;
- };
- var _substituteSTOs = function(expr, eventInfo) {
- //first evaluate the local variables
- var scope = {};
- for(var varName in expr.localVariables) {
- scope[varName] = $ax.expr.evaluateExpr(expr.localVariables[varName], eventInfo);
- }
- // TODO: [ben] Date and data object (obj with info for url or image) both need to return non-strings.
- var i = 0;
- var retval;
- var retvalString = expr.value.replace(/\[\[(?!\[)(.*?)\]\](?=\]*)/g, function(match) {
- var sto = expr.stos[i++];
- if(sto.sto == 'error') return match;
- try {
- var result = $ax.evaluateSTO(sto, scope, eventInfo);
- } catch(e) {
- return match;
- }
- if((result instanceof Object) && i == 1 && expr.value.substring(0, 2) == '[[' &&
- expr.value.substring(expr.value.length - 2) == ']]') {
- // If the result was an object, this was the first result, and the whole thing was this expresion.
- retval = result;
- }
- return ((result instanceof Object) && (result.label || result.text)) || result;
- });
- // If more than one group returned, the object is not valid
- if(i != 1) retval = false;
- return retval || retvalString;
- };
- _exprHandlers.htmlLiteral = function(expr, eventInfo) {
- return _substituteSTOs(expr, eventInfo);
- };
- _exprHandlers.stringLiteral = function(expr, eventInfo) {
- return _substituteSTOs(expr, eventInfo);
- };
- var _exprFunctions = {};
- _exprFunctions.SetCheckState = function(elementIds, value) {
- var toggle = value == 'toggle';
- var boolValue = Boolean(value) && value != 'false';
- for(var i = 0; i < elementIds.length; i++) {
- var query = $ax('#' + elementIds[i]);
- query.selected(toggle ? !query.selected() : boolValue);
- }
- };
- _exprFunctions.SetSelectedOption = function(elementIds, value) {
- for(var i = 0; i < elementIds.length; i++) {
- var elementId = elementIds[i];
- var obj = $jobj($ax.INPUT(elementId));
- if(obj.val() == value) return;
- obj.val(value);
- if($ax.event.HasSelectionChanged($ax.getObjectFromElementId(elementId))) $ax.event.raiseSyntheticEvent(elementId, 'onSelectionChange');
- }
- };
- _exprFunctions.SetGlobalVariableValue = function(varName, value) {
- $ax.globalVariableProvider.setVariableValue(varName, value);
- };
- _exprFunctions.SetWidgetFormText = function(elementIds, value) {
- for(var i = 0; i < elementIds.length; i++) {
- var elementId = elementIds[i];
- var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input');
- var obj = $jobj(inputId);
- if(obj.val() == value || (value == '' && $ax.placeholderManager.isActive(elementId))) return;
- obj.val(value);
- $ax.placeholderManager.updatePlaceholder(elementId, !value);
- if($ax.event.HasTextChanged($ax.getObjectFromElementId(elementId))) $ax.event.TryFireTextChanged(elementId);
- }
- };
- _exprFunctions.SetFocusedWidgetText = function(elementId, value) {
- if(window.lastFocusedControl) {
- window.lastFocusedControl.focus();
- window.lastFocusedControl.value = value;
- }
- };
- _exprFunctions.GetRtfElementHeight = function(rtfElement) {
- if(rtfElement.innerHTML == '') rtfElement.innerHTML = ' ';
- return rtfElement.offsetHeight;
- };
- _exprFunctions.SetWidgetRichText = function(ids, value, plain) {
- // Converts dates, widgetinfo, and the like to strings.
- value = _exprFunctions.ToString(value);
- //Replace any newlines with line breaks
- value = value.replace(/\r\n/g, '<br>').replace(/\n/g, '<br>');
- for(var i = 0; i < ids.length; i++) {
- var id = ids[i];
- // If calling this on button shape, get the id of the rich text panel inside instead
- var type = $obj(id).type;
- if(type != 'richTextPanel' && type != 'hyperlink') {
- id = $jobj(id).find('.text')[0].id;
- }
- var element = window.document.getElementById(id);
- $ax.visibility.SetVisible(element, true);
- var spans = $jobj(id).find('span');
- if(plain) {
- // Wrap in span and p, style them accordingly.
- var span = $('<span></span>');
- if(spans.length > 0) {
- span.attr('style', $(spans[0]).attr('style'));
- span.attr('id', $(spans[0]).attr('id'));
- }
- span.html(value);
- var p = $('<p></p>');
- var ps = $jobj(id).find('p');
- if(ps.length > 0) {
- p.attr('style', $(ps[0]).attr('style'));
- p.attr('id', $(ps[0]).attr('id'));
- }
- p.append(span);
- value = $('<div></div>').append(p).html();
- }
- $ax.style.transformTextWithVerticalAlignment(id, function() {
- element.innerHTML = value;
- });
- if(!plain) $ax.style.CacheOriginalText(id, true);
- }
- };
- _exprFunctions.GetCheckState = function(ids) {
- return $ax('#' + ids[0]).selected();
- };
- _exprFunctions.GetSelectedOption = function(ids) {
- return $jobj($ax.INPUT(ids[0]))[0].value;
- };
- _exprFunctions.GetNum = function(str) {
- //Setting a GlobalVariable to some blank text then setting a widget to the value of that variable would result in 0 not ""
- //I have fixed this another way so commenting this should be fine now
- //if (!str) return "";
- return isNaN(str) ? str : Number(str);
- };
- _exprFunctions.GetGlobalVariableValue = function(id) {
- return $ax.globalVariableProvider.getVariableValue(id);
- };
- _exprFunctions.GetGlobalVariableLength = function(id) {
- return _exprFunctions.GetGlobalVariableValue(id).length;
- };
- _exprFunctions.GetWidgetText = function(ids) {
- if($ax.placeholderManager.isActive(ids[0])) return '';
- var input = $ax.INPUT(ids[0]);
- return $ax('#' + ($jobj(input).length ? input : ids[0])).text();
- };
- _exprFunctions.GetFocusedWidgetText = function() {
- if(window.lastFocusedControl) {
- return window.lastFocusedControl.value;
- } else {
- return "";
- }
- };
- _exprFunctions.GetWidgetValueLength = function(ids) {
- var id = ids[0];
- if(!id) return undefined;
- if($ax.placeholderManager.isActive(id)) return 0;
- var obj = $jobj($ax.INPUT(id));
- if(!obj.length) obj = $jobj(id);
- return obj[0].value.length;
- };
- _exprFunctions.GetPanelState = function(ids) {
- var id = ids[0];
- if(!id) return undefined;
- var stateId = $ax.visibility.GetPanelState(id);
- return stateId && $jobj(stateId).data('label');
- };
- _exprFunctions.GetWidgetVisibility = function(ids) {
- var id = ids[0];
- if(!id) return undefined;
- return $ax.visibility.IsIdVisible(id);
- };
- // ***************** Validation Functions ***************** //
- _exprFunctions.IsValueAlpha = function(val) {
- var isAlphaRegex = new RegExp("^[a-z\\s]+$", "gi");
- return isAlphaRegex.test(val);
- };
- _exprFunctions.IsValueNumeric = function(val) {
- var isNumericRegex = new RegExp("^[0-9,\\.\\s]+$", "gi");
- return isNumericRegex.test(val);
- };
- _exprFunctions.IsValueAlphaNumeric = function(val) {
- var isAlphaNumericRegex = new RegExp("^[0-9a-z\\s]+$", "gi");
- return isAlphaNumericRegex.test(val);
- };
- _exprFunctions.IsValueOneOf = function(val, values) {
- for(var i = 0; i < values.length; i++) {
- var option = values[i];
- if(val == option) return true;
- }
- //by default, return false
- return false;
- };
- _exprFunctions.IsValueNotAlpha = function(val) {
- return !_exprFunctions.IsValueAlpha(val);
- };
- _exprFunctions.IsValueNotNumeric = function(val) {
- return !_exprFunctions.IsValueNumeric(val);
- };
- _exprFunctions.IsValueNotAlphaNumeric = function(val) {
- return !_exprFunctions.IsValueAlphaNumeric(val);
- };
- _exprFunctions.IsValueNotOneOf = function(val, values) {
- return !_exprFunctions.IsValueOneOf(val, values);
- };
- _exprFunctions.GetKeyPressed = function(eventInfo) {
- return eventInfo.keyInfo;
- };
- _exprFunctions.GetCursorRectangles = function() {
- var rects = new Object();
- rects.lastRect = new $ax.drag.Rectangle($ax.lastMouseLocation.x, $ax.lastMouseLocation.y, 1, 1);
- rects.currentRect = new $ax.drag.Rectangle($ax.mouseLocation.x, $ax.mouseLocation.y, 1, 1);
- return rects;
- };
- _exprFunctions.GetWidgetRectangles = function(elementId, eventInfo) {
- var rects = new Object();
- var jObj = $jobj(elementId);
- if(jObj.length == 0) {
- rects.lastRect = rects.currentRect = new $ax.drag.Rectangle(-1, -1, -1, -1);
- return rects;
- }
- rects.lastRect = new $ax.drag.Rectangle(
- $ax.legacy.getAbsoluteLeft(jObj),
- $ax.legacy.getAbsoluteTop(jObj),
- jObj.width(),
- jObj.height());
- rects.currentRect = rects.lastRect;
- return rects;
- };
- _exprFunctions.GetWidget = function(elementId) {
- return $ax.getWidgetInfo(elementId[0]);
- };
- _exprFunctions.GetAdaptiveView = function() {
- return $ax.adaptive.currentViewId || '';
- };
- _exprFunctions.IsEntering = function(movingRects, targetRects) {
- return !movingRects.lastRect.IntersectsWith(targetRects.currentRect) && movingRects.currentRect.IntersectsWith(targetRects.currentRect);
- };
- _exprFunctions.IsLeaving = function(movingRects, targetRects) {
- return movingRects.lastRect.IntersectsWith(targetRects.currentRect) && !movingRects.currentRect.IntersectsWith(targetRects.currentRect);
- };
- var _IsOver = _exprFunctions.IsOver = function(movingRects, targetRects) {
- return movingRects.currentRect.IntersectsWith(targetRects.currentRect);
- };
- _exprFunctions.IsNotOver = function(movingRects, targetRects) {
- return !_IsOver(movingRects, targetRects);
- };
- _exprFunctions.ValueContains = function(inputString, value) {
- return inputString.indexOf(value) > -1;
- };
- _exprFunctions.ValueNotContains = function(inputString, value) {
- return !_exprFunctions.ValueContains(inputString, value);
- };
- _exprFunctions.ToString = function(value) {
- if(value.isWidget) {
- return value.Text;
- }
- return String(value);
- };
- var _evaluateExpr = $ax.expr.evaluateExpr = function(expr, eventInfo, toString) {
- if(expr === undefined || expr === null) return undefined;
- var result = _exprHandlers[expr.exprType](expr, eventInfo);
- return toString ? _exprFunctions.ToString(result) : result;
- };
- });
|