vendor/assets/javascripts/angular-ui.js in angular-ui-rails-0.0.1 vs vendor/assets/javascripts/angular-ui.js in angular-ui-rails-0.2.1

- old
+ new

@@ -1,587 +1,593 @@ -/** - * AngularUI - The companion suite for AngularJS - * @version v0.2.0 - 2012-08-06 - * @link http://angular-ui.github.com - * @license MIT License, http://www.opensource.org/licenses/MIT - */ - - -angular.module('ui.config', []).value('ui.config', {}); -angular.module('ui.filters', ['ui.config']); -angular.module('ui.directives', ['ui.config']); -angular.module('ui', ['ui.filters', 'ui.directives', 'ui.config']); - - -/** - * Animates the injection of new DOM elements by simply creating the DOM with a class and then immediately removing it - * Animations must be done using CSS3 transitions, but provide excellent flexibility - * - * @todo Add proper support for animating out - * @param [options] {mixed} Can be an object with multiple options, or a string with the animation class - * class {string} the CSS class(es) to use. For example, 'ui-hide' might be an excellent alternative class. - * @example <li ng-repeat="item in items" ui-animate=" 'ui-hide' ">{{item}}</li> - */ -angular.module('ui.directives').directive('uiAnimate', ['ui.config', '$timeout', function(uiConfig, $timeout) { - var options = {}; - if (angular.isString(uiConfig.animate)) { - options['class'] = uiConfig.animate; - } else if (uiConfig.animate) { - options = uiConfig.animate; - } - return { - restrict: 'A', // supports using directive as element, attribute and class - link: function($scope, element, attrs) { - var opts = {}; - if (attrs.uiAnimate) { - opts = $scope.$eval(attrs.uiAnimate); - if (angular.isString(opts)) { - opts = {'class': opts}; - } - } - opts = angular.extend({'class': 'ui-animate'}, options, opts); - - element.addClass(opts['class']); - $timeout(function(){ - element.removeClass(opts['class']); - }, false); - } - }; -}]); - - -/*global angular, CodeMirror, Error*/ -/** - * Binds a CodeMirror widget to a <textarea> element. - */ -angular.module('ui.directives').directive('uiCodemirror', ['ui.config', '$parse', function (uiConfig, $parse) { - 'use strict'; - - uiConfig.codemirror = uiConfig.codemirror || {}; - return { - require: 'ngModel', - link: function (scope, elm, attrs, ngModel) { - // Only works on textareas - if ( !elm.is('textarea') ) { - throw new Error('ui-codemirror can only be applied to a textarea element'); - } - - var codemirror; - // This is the method that we use to get the value of the ui-codemirror attribute expression. - var uiCodemirrorGet = $parse(attrs.uiCodemirror); - // This method will be called whenever the code mirror widget content changes - var onChangeHandler = function (ed) { - // We only update the model if the value has changed - this helps get around a little problem where $render triggers a change despite already being inside a $apply loop. - var newValue = ed.getValue(); - if ( newValue !== ngModel.$viewValue ) { - ngModel.$setViewValue(newValue); - scope.$apply(); - } - }; - // Create and wire up a new code mirror widget (unwiring a previous one if necessary) - var updateCodeMirror = function(options) { - // Merge together the options from the uiConfig and the attribute itself with the onChange event above. - options = angular.extend({}, options, uiConfig.codemirror); - - // We actually want to run both handlers if the user has provided their own onChange handler. - var userOnChange = options.onChange; - if ( userOnChange ) { - options.onChange = function(ed) { - onChangeHandler(ed); - userOnChange(ed); - }; - } else { - options.onChange = onChangeHandler; - } - - // If there is a codemirror widget for this element already then we need to unwire if first - if ( codemirror ) { - codemirror.toTextArea(); - } - // Create the new codemirror widget - codemirror = CodeMirror.fromTextArea(elm[0], options); - }; - - // Initialize the code mirror widget - updateCodeMirror(uiCodemirrorGet()); - - // Now watch to see if the codemirror attribute gets updated - scope.$watch(uiCodemirrorGet, updateCodeMirror, true); - - // CodeMirror expects a string, so make sure it gets one. - // This does not change the model. - ngModel.$formatters.push(function(value) { - if(angular.isUndefined(value) || value === null) { - return ''; - } - else if (angular.isObject(value) || angular.isArray(value)) { - throw new Error('ui-codemirror cannot use an object or an array as a model'); - } - return value; - }); - - // Override the ngModelController $render method, which is what gets called when the model is updated. - // This takes care of the synchronizing the codeMirror element with the underlying model, in the case that it is changed by something else. - ngModel.$render = function() { - codemirror.setValue(ngModel.$viewValue); - }; - } - }; -}]); - +/** + * AngularUI - The companion suite for AngularJS + * @version v0.2.1 - 2012-09-19 + * @link http://angular-ui.github.com + * @license MIT License, http://www.opensource.org/licenses/MIT + */ + + +angular.module('ui.config', []).value('ui.config', {}); +angular.module('ui.filters', ['ui.config']); +angular.module('ui.directives', ['ui.config']); +angular.module('ui', ['ui.filters', 'ui.directives', 'ui.config']); + +/** + * Animates the injection of new DOM elements by simply creating the DOM with a class and then immediately removing it + * Animations must be done using CSS3 transitions, but provide excellent flexibility + * + * @todo Add proper support for animating out + * @param [options] {mixed} Can be an object with multiple options, or a string with the animation class + * class {string} the CSS class(es) to use. For example, 'ui-hide' might be an excellent alternative class. + * @example <li ng-repeat="item in items" ui-animate=" 'ui-hide' ">{{item}}</li> + */ +angular.module('ui.directives').directive('uiAnimate', ['ui.config', '$timeout', function (uiConfig, $timeout) { + var options = {}; + if (angular.isString(uiConfig.animate)) { + options['class'] = uiConfig.animate; + } else if (uiConfig.animate) { + options = uiConfig.animate; + } + return { + restrict: 'A', // supports using directive as element, attribute and class + link: function ($scope, element, attrs) { + var opts = {}; + if (attrs.uiAnimate) { + opts = $scope.$eval(attrs.uiAnimate); + if (angular.isString(opts)) { + opts = {'class': opts}; + } + } + opts = angular.extend({'class': 'ui-animate'}, options, opts); + + element.addClass(opts['class']); + $timeout(function () { + element.removeClass(opts['class']); + }, 20, false); + } + }; +}]); + + +/*global angular, CodeMirror, Error*/ +/** + * Binds a CodeMirror widget to a <textarea> element. + */ +angular.module('ui.directives').directive('uiCodemirror', ['ui.config', '$parse', function (uiConfig, $parse) { + 'use strict'; + + uiConfig.codemirror = uiConfig.codemirror || {}; + return { + require: 'ngModel', + link: function (scope, elm, attrs, ngModel) { + // Only works on textareas + if (!elm.is('textarea')) { + throw new Error('ui-codemirror can only be applied to a textarea element'); + } + + var codemirror; + // This is the method that we use to get the value of the ui-codemirror attribute expression. + var uiCodemirrorGet = $parse(attrs.uiCodemirror); + // This method will be called whenever the code mirror widget content changes + var onChangeHandler = function (ed) { + // We only update the model if the value has changed - this helps get around a little problem where $render triggers a change despite already being inside a $apply loop. + var newValue = ed.getValue(); + if (newValue !== ngModel.$viewValue) { + ngModel.$setViewValue(newValue); + scope.$apply(); + } + }; + // Create and wire up a new code mirror widget (unwiring a previous one if necessary) + var updateCodeMirror = function (options) { + // Merge together the options from the uiConfig and the attribute itself with the onChange event above. + options = angular.extend({}, options, uiConfig.codemirror); + + // We actually want to run both handlers if the user has provided their own onChange handler. + var userOnChange = options.onChange; + if (userOnChange) { + options.onChange = function (ed) { + onChangeHandler(ed); + userOnChange(ed); + }; + } else { + options.onChange = onChangeHandler; + } + + // If there is a codemirror widget for this element already then we need to unwire if first + if (codemirror) { + codemirror.toTextArea(); + } + // Create the new codemirror widget + codemirror = CodeMirror.fromTextArea(elm[0], options); + }; + + // Initialize the code mirror widget + updateCodeMirror(uiCodemirrorGet()); + + // Now watch to see if the codemirror attribute gets updated + scope.$watch(uiCodemirrorGet, updateCodeMirror, true); + + // CodeMirror expects a string, so make sure it gets one. + // This does not change the model. + ngModel.$formatters.push(function (value) { + if (angular.isUndefined(value) || value === null) { + return ''; + } + else if (angular.isObject(value) || angular.isArray(value)) { + throw new Error('ui-codemirror cannot use an object or an array as a model'); + } + return value; + }); + + // Override the ngModelController $render method, which is what gets called when the model is updated. + // This takes care of the synchronizing the codeMirror element with the underlying model, in the case that it is changed by something else. + ngModel.$render = function () { + codemirror.setValue(ngModel.$viewValue); + }; + } + }; +}]); +/* + Gives the ability to style currency based on its sign. + */ +angular.module('ui.directives').directive('uiCurrency', ['ui.config', 'currencyFilter' , function (uiConfig, currencyFilter) { + var options = { + pos: 'ui-currency-pos', + neg: 'ui-currency-neg', + zero: 'ui-currency-zero' + }; + if (uiConfig.currency) { + angular.extend(options, uiConfig.currency); + } + return { + restrict: 'EAC', + require: 'ngModel', + link: function (scope, element, attrs, controller) { + var opts, // instance-specific options + renderview, + value; + + opts = angular.extend({}, options, scope.$eval(attrs.uiCurrency)); + + renderview = function (viewvalue) { + var num; + num = viewvalue * 1; + if (num > 0) { + element.addClass(opts.pos); + } else { + element.removeClass(opts.pos); + } + if (num < 0) { + element.addClass(opts.neg); + } else { + element.removeClass(opts.neg); + } + if (num === 0) { + element.addClass(opts.zero); + } else { + element.removeClass(opts.zero); + } + if (viewvalue === '') { + element.text(''); + } else { + element.text(currencyFilter(num, opts.symbol)); + } + return true; + }; + + controller.$render = function () { + value = controller.$viewValue; + element.val(value); + renderview(value); + }; + + } + }; +}]); + +/*global angular */ +/* + jQuery UI Datepicker plugin wrapper + + @param [ui-date] {object} Options to pass to $.fn.datepicker() merged onto ui.config + */ + +angular.module('ui.directives').directive('uiDate', ['ui.config', function (uiConfig) { + 'use strict'; + var options; + options = {}; + if (angular.isObject(uiConfig.date)) { + angular.extend(options, uiConfig.date); + } + return { + require:'?ngModel', + link:function (scope, element, attrs, controller) { + var getOptions = function () { + return angular.extend({}, uiConfig.date, scope.$eval(attrs.uiDate)); + }; + var initDateWidget = function () { + var opts = getOptions(); + + // If we have a controller (i.e. ngModelController) then wire it up + if (controller) { + var updateModel = function () { + scope.$apply(function () { + controller.$setViewValue(element.datepicker("getDate")); + }); + }; + if (opts.onSelect) { + // Caller has specified onSelect, so call this as well as updating the model + var userHandler = opts.onSelect; + opts.onSelect = function (value, picker) { + updateModel(); + return userHandler(value, picker); + }; + } else { + // No onSelect already specified so just update the model + opts.onSelect = updateModel; + } + // In case the user changes the text directly in the input box + element.bind('change', updateModel); + + // Update the date picker when the model changes + controller.$render = function () { + var date = controller.$viewValue; + element.datepicker("setDate", date); + // Update the model if we received a string + if (angular.isString(date)) { + controller.$setViewValue(element.datepicker("getDate")); + } + }; + } + // If we don't destroy the old one it doesn't update properly when the config changes + element.datepicker('destroy'); + // Create the new datepicker widget + element.datepicker(opts); + // Force a render to override whatever is in the input text box + controller.$render(); + }; + // Watch for changes to the directives options + scope.$watch(getOptions, initDateWidget, true); + } + }; +} +]); + +/** + * General-purpose Event binding. Bind any event not natively supported by Angular + * Pass an object with keynames for events to ui-event + * Allows $event object and $params object to be passed + * + * @example <input ui-event="{ focus : 'counter++', blur : 'someCallback()' }"> + * @example <input ui-event="{ myCustomEvent : 'myEventHandler($event, $params)'}"> + * + * @param ui-event {string|object literal} The event to bind to as a string or a hash of events with their callbacks + */ +angular.module('ui.directives').directive('uiEvent', ['$parse', + function ($parse) { + return function (scope, elm, attrs) { + var events = scope.$eval(attrs.uiEvent); + angular.forEach(events, function (uiEvent, eventName) { + var fn = $parse(uiEvent); + elm.bind(eventName, function (evt) { + var params = Array.prototype.slice.call(arguments); + //Take out first paramater (event object); + params = params.splice(1); + scope.$apply(function () { + fn(scope, {$event: evt, $params: params}); + }); + }); + }); + }; + }]); + +/* + * Defines the ui-if tag. This removes/adds an element from the dom depending on a condition + * Originally created by @tigbro, for the @jquery-mobile-angular-adapter + * https://github.com/tigbro/jquery-mobile-angular-adapter + */ +angular.module('ui.directives').directive('uiIf', [function () { + return { + transclude: 'element', + priority: 1000, + terminal: true, + restrict: 'A', + compile: function (element, attr, linker) { + return function (scope, iterStartElement, attr) { + iterStartElement[0].doNotMove = true; + var expression = attr.uiIf; + var lastElement; + var lastScope; + scope.$watch(expression, function (newValue) { + if (lastElement) { + lastElement.remove(); + lastElement = null; + } + if (lastScope) { + lastScope.$destroy(); + lastScope = null; + } + if (newValue) { + lastScope = scope.$new(); + linker(lastScope, function (clone) { + lastElement = clone; + iterStartElement.after(clone); + }); + } + // Note: need to be parent() as jquery cannot trigger events on comments + // (angular creates a comment node when using transclusion, as ng-repeat does). + iterStartElement.parent().trigger("$childrenChanged"); + }); + }; + } + }; +}]); +/** + * General-purpose jQuery wrapper. Simply pass the plugin name as the expression. + * + * It is possible to specify a default set of parameters for each jQuery plugin. + * Under the jq key, namespace each plugin by that which will be passed to ui-jq. + * Unfortunately, at this time you can only pre-define the first parameter. + * @example { jq : { datepicker : { showOn:'click' } } } + * + * @param ui-jq {string} The $elm.[pluginName]() to call. + * @param [ui-options] {mixed} Expression to be evaluated and passed as options to the function + * Multiple parameters can be separated by commas + * Set {ngChange:false} to disable passthrough support for change events ( since angular watches 'input' events, not 'change' events ) + * + * @example <input ui-jq="datepicker" ui-options="{showOn:'click'},secondParameter,thirdParameter"> + */ +angular.module('ui.directives').directive('uiJq', ['ui.config', function (uiConfig) { + return { + restrict: 'A', + compile: function (tElm, tAttrs) { + if (!angular.isFunction(tElm[tAttrs.uiJq])) { + throw new Error('ui-jq: The "' + tAttrs.uiJq + '" function does not exist'); + } + var options = uiConfig.jq && uiConfig.jq[tAttrs.uiJq]; + return function (scope, elm, attrs) { + var linkOptions = [], ngChange = 'change'; + + if (attrs.uiOptions) { + linkOptions = scope.$eval('[' + attrs.uiOptions + ']'); + if (angular.isObject(options) && angular.isObject(linkOptions[0])) { + linkOptions[0] = angular.extend(options, linkOptions[0]); + } + } else if (options) { + linkOptions = [options]; + } + if (attrs.ngModel && elm.is('select,input,textarea')) { + if (linkOptions && angular.isObject(linkOptions[0]) && linkOptions[0].ngChange !== undefined) { + ngChange = linkOptions[0].ngChange; + } + if (ngChange) { + elm.on(ngChange, function () { + elm.trigger('input'); + }); + } + } + elm[attrs.uiJq].apply(elm, linkOptions); + }; + } + }; +}]); + +/** + * Bind one or more handlers to particular keys or their combination + * @param hash {mixed} keyBindings Can be an object or string where keybinding expression of keys or keys combinations and AngularJS Exspressions are set. Object syntax: "{ keys1: expression1 [, keys2: expression2 [ , ... ]]}". String syntax: ""expression1 on keys1 [ and expression2 on keys2 [ and ... ]]"". Expression is an AngularJS Expression, and key(s) are dash-separated combinations of keys and modifiers (one or many, if any. Order does not matter). Supported modifiers are 'ctrl', 'shift', 'alt' and key can be used either via its keyCode (13 for Return) or name. Named keys are 'backspace', 'tab', 'enter', 'esc', 'space', 'pageup', 'pagedown', 'end', 'home', 'left', 'up', 'right', 'down', 'insert', 'delete'. + * @example <input ui-keypress="{enter:'x = 1', 'ctrl-shift-space':'foo()', 'shift-13':'bar()'}" /> <input ui-keypress="foo = 2 on ctrl-13 and bar('hello') on shift-esc" /> + **/ +angular.module('ui.directives').directive('uiKeypress', ['$parse', function ($parse) { + return { + link: function (scope, elm, attrs) { + var keysByCode = { + 8: 'backspace', + 9: 'tab', + 13: 'enter', + 27: 'esc', + 32: 'space', + 33: 'pageup', + 34: 'pagedown', + 35: 'end', + 36: 'home', + 37: 'left', + 38: 'up', + 39: 'right', + 40: 'down', + 45: 'insert', + 46: 'delete' + }; + + var params, paramsParsed, expression, keys, combinations = []; + try { + params = scope.$eval(attrs.uiKeypress); + paramsParsed = true; + } catch (error) { + params = attrs.uiKeypress.split(/\s+and\s+/i); + paramsParsed = false; + } + + // Prepare combinations for simple checking + angular.forEach(params, function (v, k) { + var combination = {}; + if (paramsParsed) { + // An object passed + combination.expression = $parse(v); + combination.keys = k; + } else { + // A string passed + v = v.split(/\s+on\s+/i); + combination.expression = $parse(v[0]); + combination.keys = v[1]; + } + + keys = {}; + angular.forEach(combination.keys.split('-'), function (value) { + keys[value] = true; + }); + combination.keys = keys; + combinations.push(combination); + }); + + // Check only mathcing of pressed keys one of the conditions + elm.bind('keydown', function (event) { + // No need to do that inside the cycle + var altPressed = event.metaKey || event.altKey; + var ctrlPressed = event.ctrlKey; + var shiftPressed = event.shiftKey; + + // Iterate over prepared combinations + angular.forEach(combinations, function (combination) { + + var mainKeyPressed = (combination.keys[keysByCode[event.keyCode]] || combination.keys[event.keyCode.toString()]) || false; + + var altRequired = combination.keys.alt || false; + var ctrlRequired = combination.keys.ctrl || false; + var shiftRequired = combination.keys.shift || false; + + if (mainKeyPressed && + ( altRequired == altPressed ) && + ( ctrlRequired == ctrlPressed ) && + ( shiftRequired == shiftPressed ) + ) { + // Run the function + scope.$apply(function () { + combination.expression(scope, { '$event': event }); + }); + } + }); + }); + } + }; +}]); + +(function () { + var app = angular.module('ui.directives'); + + //Setup map events from a google map object to trigger on a given element too, + //then we just use ui-event to catch events from an element + function bindMapEvents(scope, eventsStr, googleObject, element) { + angular.forEach(eventsStr.split(' '), function (eventName) { + //Prefix all googlemap events with 'map-', so eg 'click' + //for the googlemap doesn't interfere with a normal 'click' event + var $event = { type: 'map-' + eventName }; + google.maps.event.addListener(googleObject, eventName, function (evt) { + element.trigger(angular.extend({}, $event, evt)); + //We create an $apply if it isn't happening. we need better support for this + //We don't want to use timeout because tons of these events fire at once, + //and we only need one $apply + if (!scope.$$phase) scope.$apply(); + }); + }); + } + + app.directive('uiMap', + ['ui.config', '$parse', function (uiConfig, $parse) { + + var mapEvents = 'bounds_changed center_changed click dblclick drag dragend ' + + 'dragstart heading_changed idle maptypeid_changed mousemove mouseout ' + + 'mouseover projection_changed resize rightclick tilesloaded tilt_changed ' + + 'zoom_changed'; + var options = uiConfig.map || {}; + + return { + restrict: 'A', + //doesn't work as E for unknown reason + link: function (scope, elm, attrs) { + var opts = angular.extend({}, options, scope.$eval(attrs.uiOptions)); + var map = new google.maps.Map(elm[0], opts); + var model = $parse(attrs.uiMap); + + //Set scope variable for the map + model.assign(scope, map); + + bindMapEvents(scope, mapEvents, map, elm); + } + }; + }]); + + app.directive('uiMapInfoWindow', + ['ui.config', '$parse', '$compile', function (uiConfig, $parse, $compile) { + + var infoWindowEvents = 'closeclick content_change domready ' + + 'position_changed zindex_changed'; + var options = uiConfig.mapInfoWindow || {}; + + return { + link: function (scope, elm, attrs) { + var opts = angular.extend({}, options, scope.$eval(attrs.uiOptions)); + opts.content = elm[0]; + var model = $parse(attrs.uiMapInfoWindow); + var infoWindow = model(scope); + + if (!infoWindow) { + infoWindow = new google.maps.InfoWindow(opts); + model.assign(scope, infoWindow); + } + + bindMapEvents(scope, infoWindowEvents, infoWindow, elm); + + /* The info window's contents dont' need to be on the dom anymore, + google maps has them stored. So we just replace the infowindow element + with an empty div. (we don't just straight remove it from the dom because + straight removing things from the dom can mess up angular) */ + elm.replaceWith('<div></div>'); + + //Decorate infoWindow.open to $compile contents before opening + var _open = infoWindow.open; + infoWindow.open = function open(a1, a2, a3, a4, a5, a6) { + $compile(elm.contents())(scope); + _open.call(infoWindow, a1, a2, a3, a4, a5, a6); + }; + } + }; + }]); + + /* + * Map overlay directives all work the same. Take map marker for example + * <ui-map-marker="myMarker"> will $watch 'myMarker' and each time it changes, + * it will hook up myMarker's events to the directive dom element. Then + * ui-event will be able to catch all of myMarker's events. Super simple. + */ + function mapOverlayDirective(directiveName, events) { + app.directive(directiveName, [function () { + return { + restrict: 'A', + link: function (scope, elm, attrs) { + scope.$watch(attrs[directiveName], function (newObject) { + bindMapEvents(scope, events, newObject, elm); + }); + } + }; + }]); + } + + mapOverlayDirective('uiMapMarker', + 'animation_changed click clickable_changed cursor_changed ' + + 'dblclick drag dragend draggable_changed dragstart flat_changed icon_changed ' + + 'mousedown mouseout mouseover mouseup position_changed rightclick ' + + 'shadow_changed shape_changed title_changed visible_changed zindex_changed'); + + mapOverlayDirective('uiMapPolyline', + 'click dblclick mousedown mousemove mouseout mouseover mouseup rightclick'); + + mapOverlayDirective('uiMapPolygon', + 'click dblclick mousedown mousemove mouseout mouseover mouseup rightclick'); + + mapOverlayDirective('uiMapRectangle', + 'bounds_changed click dblclick mousedown mousemove mouseout mouseover ' + + 'mouseup rightclick'); + + mapOverlayDirective('uiMapCircle', + 'center_changed click dblclick mousedown mousemove ' + + 'mouseout mouseover mouseup radius_changed rightclick'); + + mapOverlayDirective('uiMapGroundOverlay', + 'click dblclick'); + +})(); /* - Gives the ability to style currency based on its sign. -*/ - angular.module('ui.directives').directive('uiCurrency', ['ui.config','currencyFilter' , function(uiConfig, currencyFilter) { - var options = { - pos: 'ui-currency-pos', - neg: 'ui-currency-neg', - zero: 'ui-currency-zero' - }; - if (uiConfig.currency) { - angular.extend(options, uiConfig.currency); - } - return { - restrict: 'EAC', - require: 'ngModel', - link: function(scope, element, attrs, controller) { - var opts, // instance-specific options - renderview, - value; - - opts = angular.extend({}, options, scope.$eval(attrs.uiCurrency)); - - renderview = function(viewvalue) { - var num; - num = viewvalue * 1; - if (num > 0) { - element.addClass(opts.pos); - } else { - element.removeClass(opts.pos); - } - if (num < 0) { - element.addClass(opts.neg); - } else { - element.removeClass(opts.neg); - } - if (num === 0) { - element.addClass(opts.zero); - } else { - element.removeClass(opts.zero); - } - if (viewvalue === '') { - element.text(''); - } else { - element.text(currencyFilter(num, opts.symbol)); - } - return true; - }; - - controller.$render = function() { - value = controller.$viewValue; - element.val(value); - renderview(value); - }; - - } - }; - }]); - -/* - jQuery UI Datepicker plugin wrapper - - @param [ui-date] {object} Options to pass to $.fn.datepicker() merged onto ui.config -*/ - -angular.module('ui.directives').directive('uiDate', [ - 'ui.config', function(uiConfig) { - var options; - options = {}; - if (uiConfig.date != null) { - angular.extend(options, uiConfig.date); - } - return { - require: '?ngModel', - link: function(scope, element, attrs, controller) { - var opts, updateModel, usersOnSelectHandler; - opts = angular.extend({}, options, scope.$eval(attrs.uiDate)); - /* If we have a controller (i.e. ngModelController) then wire it up - */ - - if (controller != null) { - updateModel = function(value, picker) { - return scope.$apply(function() { - return controller.$setViewValue(element.datepicker("getDate")); - }); - }; - if (opts.onSelect != null) { - /* Caller has specified onSelect to call this as well as updating the model - */ - - usersOnSelectHandler = opts.onSelect; - opts.onSelect = function(value, picker) { - updateModel(value); - return usersOnSelectHandler(value, picker); - }; - } else { - /* No onSelect already specified so just update the model - */ - - opts.onSelect = updateModel; - } - /* Update the date picker when the model changes - */ - - controller.$render = function() { - var date; - date = controller.$viewValue; - if (!(date instanceof Date)) { - date = new Date(date); - } - return element.datepicker("setDate", date); - }; - } - /* Create the datepicker widget - */ - - return element.datepicker(opts); - } - }; - } -]); - - -/** - * General-purpose Event binding. Bind any event not natively supported by Angular - * Pass an object with keynames for events to ui-event - * Allows $event object and $params object to be passed - * - * @example <input ui-event="{ focus : 'counter++', blur : 'someCallback()' }"> - * @example <input ui-event="{ myCustomEvent : 'myEventHandler($event, $params)'}"> - * - * @param ui-event {string|object literal} The event to bind to as a string or a hash of events with their callbacks - */ -angular.module('ui.directives').directive('uiEvent', ['$parse', -function($parse) { - return function(scope, elm, attrs) { - var events = scope.$eval(attrs.uiEvent); - angular.forEach(events, function(uiEvent, eventName){ - var fn = $parse(uiEvent); - elm.bind(eventName, function(evt) { - var params = Array.prototype.slice.call(arguments); - //Take out first paramater (event object); - params = params.splice(1); - scope.$apply(function() { - fn(scope, {$event: evt, $params: params}) - }); - }); - }); - }; -}]); - -/* - * Defines the ui-if tag. This removes/adds an element from the dom depending on a condition - * Originally created by @tigbro, for the @jquery-mobile-angular-adapter - * https://github.com/tigbro/jquery-mobile-angular-adapter - */ -angular.module('ui.directives').directive('uiIf', [function() { - return { - transclude: 'element', - priority: 1000, - terminal: true, - restrict: 'A', - compile: function(element, attr, linker) { - return function(scope, iterStartElement, attr) { - iterStartElement[0].doNotMove = true; - var expression = attr.uiIf; - var lastElement; - var lastScope; - scope.$watch(expression, function(newValue) { - if (lastElement) { - lastElement.remove(); - lastElement = null; - } - lastScope && lastScope.$destroy(); - if (newValue) { - lastScope = scope.$new(); - linker(lastScope, function(clone) { - lastElement = clone; - iterStartElement.after(clone); - }); - } - // Note: need to be parent() as jquery cannot trigger events on comments - // (angular creates a comment node when using transclusion, as ng-repeat does). - iterStartElement.parent().trigger("$childrenChanged"); - }); - }; - } - }; -}]); - -/** - * General-purpose jQuery wrapper. Simply pass the plugin name as the expression. - * - * It is possible to specify a default set of parameters for each jQuery plugin. - * Under the jq key, namespace each plugin by that which will be passed to ui-jq. - * Unfortunately, at this time you can only pre-define the first parameter. - * @example { jq : { datepicker : { showOn:'click' } } } - * - * @param ui-jq {string} The $elm.[pluginName]() to call. - * @param [ui-options] {mixed} Expression to be evaluated and passed as options to the function - * Multiple parameters can be separated by commas - * Set {ngChange:false} to disable passthrough support for change events ( since angular watches 'input' events, not 'change' events ) - * - * @example <input ui-jq="datepicker" ui-options="{showOn:'click'},secondParameter,thirdParameter"> - */ -angular.module('ui.directives').directive('uiJq', ['ui.config', function(uiConfig) { - return { - restrict: 'A', - compile: function(tElm, tAttrs) { - if (!angular.isFunction(tElm[tAttrs.uiJq])) { - throw new Error('ui-jq: The "'+tAttrs.uiJq+'" function does not exist'); - return; - } - var options = uiConfig['jq'] && uiConfig['jq'][tAttrs.uiJq]; - return function (scope, elm, attrs) { - var linkOptions = [], ngChange = 'change'; - - if (attrs.uiOptions) { - linkOptions = scope.$eval('['+attrs.uiOptions+']'); - if (angular.isObject(options) && angular.isObject(linkOptions[0])) { - linkOptions[0] = angular.extend(options, linkOptions[0]); - } - } else if (options) { - linkOptions = [options]; - } - if (attrs.ngModel && elm.is('select,input,textarea')) { - if (linkOptions && angular.isObject(linkOptions[0]) && linkOptions[0].ngChange !== undefined) { - ngChange = linkOptions[0].ngChange; - } - ngChange && elm.on(ngChange, function(){ - elm.trigger('input'); - }); - } - elm[attrs.uiJq].apply(elm, linkOptions); - }; - } - }; -}]); - - -/** - * Bind one or more handlers to particular keys or their combination - * @param hash {mixed} keyBindings Can be an object or string where keybinding expression of keys or keys combinations and AngularJS Exspressions are set. Object syntax: "{ keys1: expression1 [, keys2: expression2 [ , ... ]]}". String syntax: ""expression1 on keys1 [ and expression2 on keys2 [ and ... ]]"". Expression is an AngularJS Expression, and key(s) are dash-separated combinations of keys and modifiers (one or many, if any. Order does not matter). Supported modifiers are 'ctrl', 'shift', 'alt' and key can be used either via its keyCode (13 for Return) or name. Named keys are 'backspace', 'tab', 'enter', 'esc', 'space', 'pageup', 'pagedown', 'end', 'home', 'left', 'up', 'right', 'down', 'insert', 'delete'. - * @example <input ui-keypress="{enter:'x = 1', 'ctrl-shift-space':'foo()', 'shift-13':'bar()'}" /> <input ui-keypress="foo = 2 on ctrl-13 and bar('hello') on shift-esc" /> - **/ -angular.module('ui.directives').directive('uiKeypress', ['$parse', function($parse){ - return { - link: function(scope, elm, attrs) { - var keysByCode = { - 8: 'backspace', - 9: 'tab', - 13: 'enter', - 27: 'esc', - 32: 'space', - 33: 'pageup', - 34: 'pagedown', - 35: 'end', - 36: 'home', - 37: 'left', - 38: 'up', - 39: 'right', - 40: 'down', - 45: 'insert', - 46: 'delete' - }; - - var params, paramsParsed, expression, keys, combinations = []; - try { - params = scope.$eval(attrs.uiKeypress); - paramsParsed = true; - } catch (error) { - params = attrs.uiKeypress.split(/\s+and\s+/i); - paramsParsed = false; - } - - // Prepare combinations for simple checking - angular.forEach(params, function(v, k) { - var combination = {}; - if(paramsParsed) { - // An object passed - combination.expression = $parse(v); - combination.keys = k; - } else { - // A string passed - v = v.split(/\s+on\s+/i); - combination.expression = $parse(v[0]); - combination.keys = v[1]; - } - - keys = {}; - angular.forEach(combination.keys.split('-'), function(value) { - keys[value] = true; - }); - combination.keys = keys; - combinations.push(combination); - }); - - // Check only mathcing of pressed keys one of the conditions - elm.bind('keydown', function(event) { - // No need to do that inside the cycle - var altPressed = event.metaKey || event.altKey; - var ctrlPressed = event.ctrlKey; - var shiftPressed = event.shiftKey; - - // Iterate over prepared combinations - angular.forEach(combinations, function(combination) { - - var mainKeyPressed = (combination.keys[keysByCode[event.keyCode]] || combination.keys[event.keyCode.toString()]) || false; - - var altRequired = combination.keys.alt || false; - var ctrlRequired = combination.keys.ctrl || false; - var shiftRequired = combination.keys.shift || false; - - if( mainKeyPressed && - ( altRequired == altPressed ) && - ( ctrlRequired == ctrlPressed ) && - ( shiftRequired == shiftPressed ) - ) { - // Run the function - scope.$apply(function(){ - combination.expression(scope, { '$event' : event }); - }); - } - }); - }); - } - }; -}]); - -(function() { - var app = angular.module('ui.directives'); - - //Setup map events from a google map object to trigger on a given element too, - //then we just use ui-event to catch events from an element - function bindMapEvents(scope, eventsStr, googleObject, element) { - angular.forEach(eventsStr.split(' '), function(eventName) { - var $event = { type: 'map-'+eventName }; - google.maps.event.addListener(googleObject, eventName, function(evt) { - element.trigger(angular.extend({}, $event, evt)); - //We create an $apply if it isn't happening. we need better support for this - //We don't want to use timeout because tons of these events fire at once, - //and we only need one $apply - if (!scope.$$phase) scope.$apply(); - }); - }); - } - - app.directive('uiMap', - ['ui.config', '$parse', function(uiConfig, $parse) { - - var mapEvents = 'bounds_changed center_changed click dblclick drag dragend '+ - 'dragstart heading_changed idle maptypeid_changed mousemove mouseout '+ - 'mouseover projection_changed resize rightclick tilesloaded tilt_changed '+ - 'zoom_changed'; - var options = uiConfig.map || {}; - - return { - restrict: 'A', - //doesn't work as E for unknown reason - link: function(scope, elm, attrs) { - var opts = angular.extend({}, options, scope.$eval(attrs.uiOptions)); - var map = new google.maps.Map(elm[0], opts); - var model = $parse(attrs.uiMap); - - //Set scope variable for the map - model.assign(scope, map); - - bindMapEvents(scope, mapEvents, map, elm); - } - }; - }]); - - app.directive('uiMapInfoWindow', - ['ui.config', '$parse', '$compile', function(uiConfig, $parse, $compile) { - - var infoWindowEvents = 'closeclick content_change domready '+ - 'position_changed zindex_changed'; - var options = uiConfig.mapInfoWindow || {}; - - return { - link: function(scope, elm, attrs) { - var opts = angular.extend({}, options, scope.$eval(attrs.uiOptions)); - opts.content = elm[0]; - var model = $parse(attrs.uiMapInfoWindow); - var infoWindow = model(scope); - - if (!infoWindow) { - infoWindow = new google.maps.InfoWindow(opts); - model.assign(scope, infoWindow); - } - - bindMapEvents(scope, infoWindowEvents, infoWindow, elm); - - /* The info window's contents dont' need to be on the dom anymore, - google maps has them stored. So we just replace the infowindow element - with an empty div. (we don't just straight remove it from the dom because - straight removing things from the dom can mess up angular) */ - elm.replaceWith('<div></div>'); - - //Decorate infoWindow.open to $compile contents before opening - var _open = infoWindow.open; - infoWindow.open = function open(a1,a2,a3,a4,a5,a6) { - $compile(elm.contents())(scope); - _open.call(infoWindow, a1,a2,a3,a4,a5,a6); - }; - } - }; - }]); - - /* - * Map overlay directives all work the same. Take map marker for example - * <ui-map-marker="myMarker"> will $watch 'myMarker' and each time it changes, - * it will hook up myMarker's events to the directive dom element. Then - * ui-event will be able to catch all of myMarker's events. Super simple. - */ - function mapOverlayDirective(directiveName, events) { - app.directive(directiveName, [function() { - return { - restrict: 'A', - link: function(scope, elm, attrs) { - scope.$watch(attrs[directiveName], function(newObject) { - bindMapEvents(scope, events, newObject, elm); - }); - } - }; - }]); - }; - - mapOverlayDirective('uiMapMarker', - 'animation_changed click clickable_changed cursor_changed '+ - 'dblclick drag dragend draggable_changed dragstart flat_changed icon_changed '+ - 'mousedown mouseout mouseover mouseup position_changed rightclick '+ - 'shadow_changed shape_changed title_changed visible_changed zindex_changed'); - - mapOverlayDirective('uiMapPolyline', - 'click dblclick mousedown mousemove mouseout mouseover mouseup rightclick'); - - mapOverlayDirective('uiMapPolygon', - 'click dblclick mousedown mousemove mouseout mouseover mouseup rightclick'); - - mapOverlayDirective('uiMapRectangle', - 'bounds_changed click dblclick mousedown mousemove mouseout mouseover '+ - 'mouseup rightclick'); - - mapOverlayDirective('uiMapCircle', - 'center_changed click dblclick mousedown mousemove '+ - 'mouseout mouseover mouseup radius_changed rightclick'); - - mapOverlayDirective('uiMapGroundOverlay', - 'click dblclick'); - -})(); -/* Attaches jquery-ui input mask onto input element */ angular.module('ui.directives').directive('uiMask', [ function() { @@ -618,261 +624,263 @@ }); } }; } ]); - -angular.module('ui.directives') -.directive('uiModal', ['$timeout', function($timeout) { - return { - restrict: 'EAC', - require: 'ngModel', - link: function(scope, elm, attrs, model) { - //helper so you don't have to type class="modal hide" - elm.addClass('modal hide'); - scope.$watch(attrs.ngModel, function(value) { - elm.modal(value && 'show' || 'hide'); - }); - elm.on('show.ui', function() { - $timeout(function() { - model.$setViewValue(true); - }); - }); - elm.on('hide.ui', function() { - $timeout(function() { - model.$setViewValue(false); - }); - }); - } - }; -}]); - -/** - * Add a clear button to form inputs to reset their value - */ -angular.module('ui.directives').directive('uiReset', ['$parse', function($parse) { - return { - require:'ngModel', - link: function(scope, elm, attrs, ctrl) { - elm.wrap('<span class="ui-resetwrap" />').after('<a class="ui-reset" />').next().click(function(e){ - e.preventDefault(); - scope.$apply(function(){ - // This lets you SET the value of the 'parsed' model - ctrl.$setViewValue(null); - }); - }); - } - }; -}]); - -/*global angular, $*/ -/** - * Adds a 'ui-scrollfix' class to the element when the page scrolls past it's position. - * @param [offset] {int} optional Y-offset to override the detected offset. - * Takes 300 (absolute) or -300 or +300 (relative to detected) - */ -angular.module('ui.directives').directive('uiScrollfix', ['$window', function ($window) { - 'use strict'; - return { - link: function (scope, elm, attrs) { - var top = elm.offset().top; - if (!attrs.uiScrollfix) { - attrs.uiScrollfix = top; - } else { - // chartAt is generally faster than indexOf: http://jsperf.com/indexof-vs-chartat - if (attrs.uiScrollfix.charAt(0) === '-') { - attrs.uiScrollfix = top - attrs.uiScrollfix.substr(1); - } else if (attrs.uiScrollfix.charAt(0) === '+') { - attrs.uiScrollfix = top + parseFloat(attrs.uiScrollfix.substr(1)); - } - } - angular.element($window).on('scroll.ui-scrollfix', function () { - // if pageYOffset is defined use it, otherwise use other crap for IE - var offset; - if (angular.isDefined($window.pageYOffset)) { - offset = $window.pageYOffset; - } else { - var iebody = (document.compatMode && document.compatMode !== "BackCompat") ? document.documentElement : document.body; - offset = iebody.scrollTop; - } - if (!elm.hasClass('ui-scrollfix') && offset > attrs.uiScrollfix) { - elm.addClass('ui-scrollfix'); - } else if (elm.hasClass('ui-scrollfix') && offset < attrs.uiScrollfix) { - elm.removeClass('ui-scrollfix'); - } - }); - } - }; -}]); - - -/** - * Enhanced Select2 Dropmenus - * - * @AJAX Mode - When in this mode, your value will be an object (or array of objects) of the data used by Select2 - * This change is so that you do not have to do an additional query yourself on top of Select2's own query - * @params [options] {object} The configuration options passed to $.fn.select2(). Refer to the documentation - */ -angular.module('ui.directives').directive('uiSelect2', ['ui.config', '$http', function(uiConfig, $http){ - var options = {}; - if (uiConfig.select2) { - angular.extend(options, uiConfig.select2); - } - return { - require: '?ngModel', - compile: function(tElm, tAttrs) { - var watch, - repeatOption, - isSelect = tElm.is('select'), - isMultiple = (tAttrs.multiple !== undefined); - - // Enable watching of the options dataset if in use - if (tElm.is('select')) { - repeatOption = tElm.find('option[ng-repeat]'); - if (repeatOption.length) { - watch = repeatOption.attr('ng-repeat').split(' ').pop(); - } - } - - return function(scope, elm, attrs, controller) { - // instance-specific options - var opts = angular.extend({}, options, scope.$eval(attrs.uiSelect2)); - - if (isSelect) { - // Use <select multiple> instead - delete opts.multiple; - delete opts.initSelection; - } else if (isMultiple) { - opts.multiple = true; - } - - if (controller) { - // Watch the model for programmatic changes - controller.$render = function() { - if (isSelect) { - elm.select2('val', controller.$modelValue); - } else { - if (isMultiple && !controller.$modelValue) { - elm.select2('data', []); - } else { - elm.select2('data', controller.$modelValue); - } - } - }; - - - // Watch the options dataset for changes - if (watch) { - scope.$watch(watch, function(newVal, oldVal, scope){ - if (!newVal) return; - // Delayed so that the options have time to be rendered - setTimeout(function(){ - elm.select2('val', controller.$viewValue); - // Refresh angular to remove the superfluous option - elm.trigger('change'); - }); - }); - } - - if (!isSelect) { - // Set the view and model value and update the angular template manually for the ajax/multiple select2. - elm.bind("change", function(){ - scope.$apply(function(){ - controller.$setViewValue(elm.select2('data')); - }); - }); - - if (opts.initSelection) { - var initSelection = opts.initSelection; - opts.initSelection = function(element, callback) { - initSelection(element, function(value){ - controller.$setViewValue(value); - callback(value); - }); - } - } - } - } - - attrs.$observe('disabled', function(value){ - elm.select2(value && 'disable' || 'enable'); - }); - - // Set initial value since Angular doesn't - elm.val(scope.$eval(attrs.ngModel)); - - // Initialize the plugin late so that the injected DOM does not disrupt the template compiler - setTimeout(function(){ - elm.select2(opts); - }); - } - } - }; -}]); - - -/** - * uiShow Directive - * - * Adds a 'ui-show' class to the element instead of display:block - * Created to allow tighter control of CSS without bulkier directives - * - * @param expression {boolean} evaluated expression to determine if the class should be added - */ -angular.module('ui.directives').directive('uiShow', [function() { - return function(scope, elm, attrs) { - scope.$watch(attrs.uiShow, function(newVal, oldVal){ - if (newVal) { - elm.addClass('ui-show'); - } else { - elm.removeClass('ui-show'); - } - }); - }; -}]) - -/** - * uiHide Directive - * - * Adds a 'ui-hide' class to the element instead of display:block - * Created to allow tighter control of CSS without bulkier directives - * - * @param expression {boolean} evaluated expression to determine if the class should be added - */ -.directive('uiHide', [function() { - return function(scope, elm, attrs) { - scope.$watch(attrs.uiHide, function(newVal, oldVal){ - if (newVal) { - elm.addClass('ui-hide'); - } else { - elm.removeClass('ui-hide'); - } - }); - }; -}]) - -/** - * uiToggle Directive - * - * Adds a class 'ui-show' if true, and a 'ui-hide' if false to the element instead of display:block/display:none - * Created to allow tighter control of CSS without bulkier directives. This also allows you to override the - * default visibility of the element using either class. - * - * @param expression {boolean} evaluated expression to determine if the class should be added - */ -.directive('uiToggle', [function() { - return function(scope, elm, attrs) { - scope.$watch(attrs.uiToggle, function(newVal, oldVal){ - if (newVal) { - elm.removeClass('ui-hide').addClass('ui-show'); - } else { - elm.removeClass('ui-show').addClass('ui-hide'); - } - }); - }; -}]); - + +angular.module('ui.directives') +.directive('uiModal', ['$timeout', function($timeout) { + return { + restrict: 'EAC', + require: 'ngModel', + link: function(scope, elm, attrs, model) { + //helper so you don't have to type class="modal hide" + elm.addClass('modal hide'); + scope.$watch(attrs.ngModel, function(value) { + elm.modal(value && 'show' || 'hide'); + }); + //If bootstrap animations are enabled, listen to 'shown' and 'hidden' events + elm.on(jQuery.support.transition && 'shown' || 'show', function() { + $timeout(function() { + model.$setViewValue(true); + }); + }); + elm.on(jQuery.support.transition && 'hidden' || 'hide', function() { + $timeout(function() { + model.$setViewValue(false); + }); + }); + } + }; +}]); +/** + * Add a clear button to form inputs to reset their value + */ +angular.module('ui.directives').directive('uiReset', ['$parse', function ($parse) { + return { + require: 'ngModel', + link: function (scope, elm, attrs, ctrl) { + var aElement = angular.element('<a class="ui-reset" />'); + elm.wrap('<span class="ui-resetwrap" />').after(aElement); + + aElement.bind('click', function (e) { + e.preventDefault(); + scope.$apply(function () { + // This lets you SET the value of the 'parsed' model + ctrl.$setViewValue(null); + ctrl.$render(); + }); + }); + } + }; +}]); + +/*global angular, $, document*/ +/** + * Adds a 'ui-scrollfix' class to the element when the page scrolls past it's position. + * @param [offset] {int} optional Y-offset to override the detected offset. + * Takes 300 (absolute) or -300 or +300 (relative to detected) + */ +angular.module('ui.directives').directive('uiScrollfix', ['$window', function ($window) { + 'use strict'; + return { + link: function (scope, elm, attrs) { + var top = elm.offset().top; + if (!attrs.uiScrollfix) { + attrs.uiScrollfix = top; + } else { + // chartAt is generally faster than indexOf: http://jsperf.com/indexof-vs-chartat + if (attrs.uiScrollfix.charAt(0) === '-') { + attrs.uiScrollfix = top - attrs.uiScrollfix.substr(1); + } else if (attrs.uiScrollfix.charAt(0) === '+') { + attrs.uiScrollfix = top + parseFloat(attrs.uiScrollfix.substr(1)); + } + } + angular.element($window).on('scroll.ui-scrollfix', function () { + // if pageYOffset is defined use it, otherwise use other crap for IE + var offset; + if (angular.isDefined($window.pageYOffset)) { + offset = $window.pageYOffset; + } else { + var iebody = (document.compatMode && document.compatMode !== "BackCompat") ? document.documentElement : document.body; + offset = iebody.scrollTop; + } + if (!elm.hasClass('ui-scrollfix') && offset > attrs.uiScrollfix) { + elm.addClass('ui-scrollfix'); + } else if (elm.hasClass('ui-scrollfix') && offset < attrs.uiScrollfix) { + elm.removeClass('ui-scrollfix'); + } + }); + } + }; +}]); + +/** + * Enhanced Select2 Dropmenus + * + * @AJAX Mode - When in this mode, your value will be an object (or array of objects) of the data used by Select2 + * This change is so that you do not have to do an additional query yourself on top of Select2's own query + * @params [options] {object} The configuration options passed to $.fn.select2(). Refer to the documentation + */ +angular.module('ui.directives').directive('uiSelect2', ['ui.config', '$http', function (uiConfig, $http) { + var options = {}; + if (uiConfig.select2) { + angular.extend(options, uiConfig.select2); + } + return { + require: '?ngModel', + compile: function (tElm, tAttrs) { + var watch, + repeatOption, + isSelect = tElm.is('select'), + isMultiple = (tAttrs.multiple !== undefined); + + // Enable watching of the options dataset if in use + if (tElm.is('select')) { + repeatOption = tElm.find('option[ng-repeat]'); + if (repeatOption.length) { + watch = repeatOption.attr('ng-repeat').split(' ').pop(); + } + } + + return function (scope, elm, attrs, controller) { + // instance-specific options + var opts = angular.extend({}, options, scope.$eval(attrs.uiSelect2)); + + if (isSelect) { + // Use <select multiple> instead + delete opts.multiple; + delete opts.initSelection; + } else if (isMultiple) { + opts.multiple = true; + } + + if (controller) { + // Watch the model for programmatic changes + controller.$render = function () { + if (isSelect) { + elm.select2('val', controller.$modelValue); + } else { + if (isMultiple && !controller.$modelValue) { + elm.select2('data', []); + } else { + elm.select2('data', controller.$modelValue); + } + } + }; + + + // Watch the options dataset for changes + if (watch) { + scope.$watch(watch, function (newVal, oldVal, scope) { + if (!newVal) return; + // Delayed so that the options have time to be rendered + setTimeout(function () { + elm.select2('val', controller.$viewValue); + // Refresh angular to remove the superfluous option + elm.trigger('change'); + }); + }); + } + + if (!isSelect) { + // Set the view and model value and update the angular template manually for the ajax/multiple select2. + elm.bind("change", function () { + scope.$apply(function () { + controller.$setViewValue(elm.select2('data')); + }); + }); + + if (opts.initSelection) { + var initSelection = opts.initSelection; + opts.initSelection = function (element, callback) { + initSelection(element, function (value) { + controller.$setViewValue(value); + callback(value); + }); + }; + } + } + } + + attrs.$observe('disabled', function (value) { + elm.select2(value && 'disable' || 'enable'); + }); + + // Set initial value since Angular doesn't + elm.val(scope.$eval(attrs.ngModel)); + + // Initialize the plugin late so that the injected DOM does not disrupt the template compiler + setTimeout(function () { + elm.select2(opts); + }); + }; + } + }; +}]); + +/** + * uiShow Directive + * + * Adds a 'ui-show' class to the element instead of display:block + * Created to allow tighter control of CSS without bulkier directives + * + * @param expression {boolean} evaluated expression to determine if the class should be added + */ +angular.module('ui.directives').directive('uiShow', [function () { + return function (scope, elm, attrs) { + scope.$watch(attrs.uiShow, function (newVal, oldVal) { + if (newVal) { + elm.addClass('ui-show'); + } else { + elm.removeClass('ui-show'); + } + }); + }; +}]) + +/** + * uiHide Directive + * + * Adds a 'ui-hide' class to the element instead of display:block + * Created to allow tighter control of CSS without bulkier directives + * + * @param expression {boolean} evaluated expression to determine if the class should be added + */ + .directive('uiHide', [function () { + return function (scope, elm, attrs) { + scope.$watch(attrs.uiHide, function (newVal, oldVal) { + if (newVal) { + elm.addClass('ui-hide'); + } else { + elm.removeClass('ui-hide'); + } + }); + }; +}]) + +/** + * uiToggle Directive + * + * Adds a class 'ui-show' if true, and a 'ui-hide' if false to the element instead of display:block/display:none + * Created to allow tighter control of CSS without bulkier directives. This also allows you to override the + * default visibility of the element using either class. + * + * @param expression {boolean} evaluated expression to determine if the class should be added + */ + .directive('uiToggle', [function () { + return function (scope, elm, attrs) { + scope.$watch(attrs.uiToggle, function (newVal, oldVal) { + if (newVal) { + elm.removeClass('ui-hide').addClass('ui-show'); + } else { + elm.removeClass('ui-show').addClass('ui-hide'); + } + }); + }; +}]); + /* jQuery UI Sortable plugin wrapper @param [ui-sortable] {object} Options to pass to $.fn.sortable() merged onto ui.config */ @@ -920,64 +928,63 @@ return element.sortable(opts); } }; } ]); - - -/** - * Binds a TinyMCE widget to <textarea> elements. - */ -angular.module('ui.directives').directive('uiTinymce', ['ui.config', function(uiConfig){ - uiConfig.tinymce = uiConfig.tinymce || {}; - return { - require: 'ngModel', - link: function(scope, elm, attrs, ngModel) { - var expression, - options = { - // Update model on button click - onchange_callback: function(inst) { - if (inst.isDirty()) { - inst.save(); - ngModel.$setViewValue(elm.val()); - scope.$apply(); - } - }, - // Update model on keypress - handle_event_callback: function(e) { - if (this.isDirty()) { - this.save(); - ngModel.$setViewValue(elm.val()); - scope.$apply(); - } - return true; // Continue handling - }, - // Update model when calling setContent (such as from the source editor popup) - setup : function(ed) { - ed.onSetContent.add(function(ed, o) { - if (ed.isDirty()) { - ed.save(); - ngModel.$setViewValue(elm.val()); - scope.$apply(); - } - }); - } - }; - if (attrs.uiTinymce) { - expression = scope.$eval(attrs.uiTinymce); - } else { - expression = {}; - } - angular.extend(options, uiConfig.tinymce, expression); - setTimeout(function(){ - elm.tinymce(options); - }); - } - }; -}]); - + /** + * Binds a TinyMCE widget to <textarea> elements. + */ +angular.module('ui.directives').directive('uiTinymce', ['ui.config', function (uiConfig) { + uiConfig.tinymce = uiConfig.tinymce || {}; + return { + require: 'ngModel', + link: function (scope, elm, attrs, ngModel) { + var expression, + options = { + // Update model on button click + onchange_callback: function (inst) { + if (inst.isDirty()) { + inst.save(); + ngModel.$setViewValue(elm.val()); + scope.$apply(); + } + }, + // Update model on keypress + handle_event_callback: function (e) { + if (this.isDirty()) { + this.save(); + ngModel.$setViewValue(elm.val()); + scope.$apply(); + } + return true; // Continue handling + }, + // Update model when calling setContent (such as from the source editor popup) + setup: function (ed) { + ed.onSetContent.add(function (ed, o) { + if (ed.isDirty()) { + ed.save(); + ngModel.$setViewValue(elm.val()); + scope.$apply(); + } + }); + } + }; + if (attrs.uiTinymce) { + expression = scope.$eval(attrs.uiTinymce); + } else { + expression = {}; + } + angular.extend(options, uiConfig.tinymce, expression); + setTimeout(function () { + elm.tinymce(options); + }); + } + }; +}]); + +/** * General-purpose validator for ngModel. * angular.js comes with several built-in validation mechanism for input fields (ngRequired, ngPattern etc.) but using * an arbitrary validation function requires creation of a custom formatters and / or parsers. * The ui-validate directive makes it easy to use any function(s) defined in scope as a validator function(s). * A validator function will trigger validation on both model and input changes. @@ -990,13 +997,13 @@ * In both cases validator function should take a value to validate as its argument and should return true/false indicating a validation result. */ angular.module('ui.directives').directive('uiValidate', function () { return { - restrict:'A', - require:'ngModel', - link:function (scope, elm, attrs, ctrl) { + restrict: 'A', + require: 'ngModel', + link: function (scope, elm, attrs, ctrl) { var validateFn, validateExpr = attrs.uiValidate; validateExpr = scope.$eval(validateExpr); if (!validateExpr) { @@ -1005,11 +1012,11 @@ if (angular.isFunction(validateExpr)) { validateExpr = { validator: validateExpr }; } - angular.forEach(validateExpr, function(validatorFn, key){ + angular.forEach(validateExpr, function (validatorFn, key) { validateFn = function (valueToValidate) { if (validatorFn(valueToValidate)) { ctrl.$setValidity(key, true); return valueToValidate; } else { @@ -1020,119 +1027,153 @@ ctrl.$formatters.push(validateFn); ctrl.$parsers.push(validateFn); }); } }; -}); - -/** - * Wraps the - * @param text {string} haystack to search through - * @param search {string} needle to search for - * @param [caseSensitive] {boolean} optional boolean to use case-sensitive searching - */ -angular.module('ui.filters').filter('highlight', function() { - return function(text, search, caseSensitive) { - if (search || angular.isNumber(search)) { - text = text.toString(); - search = search.toString(); - if (caseSensitive) { - return text.split(search).join('<span class="ui-match">'+search+'</span>'); - } else { - return text.replace(new RegExp(search, 'gi'), '<span class="ui-match">$&</span>'); - } - } else { - return text; - } - }; -}); - - -/** - * Converts variable-esque naming conventions to something presentational, capitalized words separated by space. - * @param {String} value The value to be parsed and prettified. - * @param {String} [inflector] The inflector to use. Default: humanize. - * @return {String} - * @example {{ 'Here Is my_phoneNumber' | inflector:'humanize' }} => Here Is My Phone Number - * {{ 'Here Is my_phoneNumber' | inflector:'underscore' }} => here_is_my_phone_number - * {{ 'Here Is my_phoneNumber' | inflector:'variable' }} => hereIsMyPhoneNumber - */ -angular.module('ui.filters').filter('inflector', function () { - function ucwords(text) { - return text.replace(/^([a-z])|\s+([a-z])/g, function ($1) { - return $1.toUpperCase(); - }); - } - function breakup(text, separator) { - return text.replace(/[A-Z]/g, function(match){ - return separator + match; - }); - } - var inflectors = { - humanize: function(value) { - return ucwords(breakup(value, ' ').split('_').join(' ')); - }, - underscore: function(value) { - return value.substr(0,1).toLowerCase() + breakup(value.substr(1), '_').toLowerCase().split(' ').join('_'); - }, - variable: function(value) { - value = value.substr(0,1).toLowerCase() + ucwords(value.split('_').join(' ')).substr(1).split(' ').join(''); - return value; - } - }; - - return function (text, inflector, separator) { - if (inflector !== false && angular.isString(text)) { - inflector = inflector || 'humanize'; - return inflectors[inflector](text); - } else { - return text; - } - }; -}); - - -/** - * Filters out all duplicate items from an array by checking the specified key - * @param [key] {string} the name of the attribute of each object to compare for uniqueness - if the key is empty, the entire object will be compared - if the key === false then no filtering will be performed - * @return {array} - */ -angular.module('ui.filters').filter('unique', function() { - - return function(items, filterOn) { - - if (filterOn===false){ - return items; - } - - if ((filterOn || angular.isUndefined(filterOn))&& angular.isArray(items)) { - var hashCheck = {}, newItems = []; - - var extractValueToCompare = function(item) { - if (angular.isObject(item) && angular.isString(filterOn)) { - return item[filterOn]; - } else { - return item; - } - }; - - angular.forEach(items, function (item) { - var valueToCheck, isDuplicate = false; - - for (var i = 0; i < newItems.length; i++) { - if (angular.equals(extractValueToCompare(newItems[i]), extractValueToCompare(item))) { - isDuplicate = true; - break; - } - } - if (!isDuplicate){ - newItems.push(item); - } - - }); - items = newItems; - } - return items; - }; -}); +}); + +/** + * A replacement utility for internationalization very similar to sprintf. + * + * @param replace {mixed} The tokens to replace depends on type + * string: all instances of $0 will be replaced + * array: each instance of $0, $1, $2 etc. will be placed with each array item in corresponding order + * object: all attributes will be iterated through, with :key being replaced with its corresponding value + * @return string + * + * @example: 'Hello :name, how are you :day'.format({ name:'John', day:'Today' }) + * @example: 'Records $0 to $1 out of $2 total'.format(['10', '20', '3000']) + * @example: '$0 agrees to all mentions $0 makes in the event that $0 hits a tree while $0 is driving drunk'.format('Bob') + */ +angular.module('ui.filters').filter('format', function(){ + return function(value, replace) { + if (!value) { + return value; + } + var target = value.toString(), token; + if (replace === undefined) { + return target; + } + if (!angular.isArray(replace) && !angular.isObject(replace)) { + return target.split('$0').join(replace); + } + token = angular.isArray(replace) && '$' || ':'; + + angular.forEach(replace, function(value, key){ + target = target.split(token+key).join(value); + }); + return target; + }; +}); + +/** + * Wraps the + * @param text {string} haystack to search through + * @param search {string} needle to search for + * @param [caseSensitive] {boolean} optional boolean to use case-sensitive searching + */ +angular.module('ui.filters').filter('highlight', function () { + return function (text, search, caseSensitive) { + if (search || angular.isNumber(search)) { + text = text.toString(); + search = search.toString(); + if (caseSensitive) { + return text.split(search).join('<span class="ui-match">' + search + '</span>'); + } else { + return text.replace(new RegExp(search, 'gi'), '<span class="ui-match">$&</span>'); + } + } else { + return text; + } + }; +}); + +/** + * Converts variable-esque naming conventions to something presentational, capitalized words separated by space. + * @param {String} value The value to be parsed and prettified. + * @param {String} [inflector] The inflector to use. Default: humanize. + * @return {String} + * @example {{ 'Here Is my_phoneNumber' | inflector:'humanize' }} => Here Is My Phone Number + * {{ 'Here Is my_phoneNumber' | inflector:'underscore' }} => here_is_my_phone_number + * {{ 'Here Is my_phoneNumber' | inflector:'variable' }} => hereIsMyPhoneNumber + */ +angular.module('ui.filters').filter('inflector', function () { + function ucwords(text) { + return text.replace(/^([a-z])|\s+([a-z])/g, function ($1) { + return $1.toUpperCase(); + }); + } + + function breakup(text, separator) { + return text.replace(/[A-Z]/g, function (match) { + return separator + match; + }); + } + + var inflectors = { + humanize: function (value) { + return ucwords(breakup(value, ' ').split('_').join(' ')); + }, + underscore: function (value) { + return value.substr(0, 1).toLowerCase() + breakup(value.substr(1), '_').toLowerCase().split(' ').join('_'); + }, + variable: function (value) { + value = value.substr(0, 1).toLowerCase() + ucwords(value.split('_').join(' ')).substr(1).split(' ').join(''); + return value; + } + }; + + return function (text, inflector, separator) { + if (inflector !== false && angular.isString(text)) { + inflector = inflector || 'humanize'; + return inflectors[inflector](text); + } else { + return text; + } + }; +}); + +/** + * Filters out all duplicate items from an array by checking the specified key + * @param [key] {string} the name of the attribute of each object to compare for uniqueness + if the key is empty, the entire object will be compared + if the key === false then no filtering will be performed + * @return {array} + */ +angular.module('ui.filters').filter('unique', function () { + + return function (items, filterOn) { + + if (filterOn === false) { + return items; + } + + if ((filterOn || angular.isUndefined(filterOn)) && angular.isArray(items)) { + var hashCheck = {}, newItems = []; + + var extractValueToCompare = function (item) { + if (angular.isObject(item) && angular.isString(filterOn)) { + return item[filterOn]; + } else { + return item; + } + }; + + angular.forEach(items, function (item) { + var valueToCheck, isDuplicate = false; + + for (var i = 0; i < newItems.length; i++) { + if (angular.equals(extractValueToCompare(newItems[i]), extractValueToCompare(item))) { + isDuplicate = true; + break; + } + } + if (!isDuplicate) { + newItems.push(item); + } + + }); + items = newItems; + } + return items; + }; +});