[Fixed Position] Add image proxy

Add selection proxy for image elements to support image URL
dialog, WTD-881.
This commit is contained in:
Victor Woeltjen
2015-02-23 18:28:30 -08:00
parent 894a5b8f89
commit 0b2cd52433
4 changed files with 101 additions and 0 deletions

View File

@ -0,0 +1,35 @@
/*global define*/
define(
['./ElementProxy', './AccessorMutator'],
function (ElementProxy, AccessorMutator) {
'use strict';
/**
* Selection proxy for Image elements in a fixed position view.
*
* Note that arguments here are meant to match those expected
* by `Array.prototype.map`
*
* @constructor
* @param element the fixed position element, as stored in its
* configuration
* @param index the element's index within its array
* @param {Array} elements the full array of elements
*/
function ImageProxy(element, index, elements) {
var proxy = new ElementProxy(element, index, elements);
/**
* Get and/or set the displayed text of this element.
* @param {string} [text] the new text (if setting)
* @returns {string} the text
*/
proxy.url = new AccessorMutator(element, 'url');
return proxy;
}
return ImageProxy;
}
);

View File

@ -27,6 +27,13 @@ define(
*/
proxy.color = new AccessorMutator(element, 'color');
/**
* Get and/or set the displayed text of this element.
* @param {string} [text] the new text (if setting)
* @returns {string} the text
*/
proxy.text = new AccessorMutator(element, 'text');
return proxy;
}