2012-05-29 10:22:06 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
<br>
|
2012-06-26 17:41:58 +00:00
|
|
|
**Parasitic Inheritance**
|
2012-06-26 14:33:50 +00:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
The following examples illustrate the common design pattern for `OxJS` UI
|
|
|
|
widgets: an inheritance model that is neither classical nor prototypal, but
|
2012-06-26 17:41:58 +00:00
|
|
|
"parasitic" (a term coined by <a
|
2012-05-29 10:22:06 +00:00
|
|
|
href="http://www.crockford.com/javascript/inheritance.html">Douglas
|
2012-06-26 15:33:32 +00:00
|
|
|
Crockford</a>).
|
|
|
|
|
|
|
|
In a nutshell, "instances" are created by augmenting other
|
2012-05-29 10:22:06 +00:00
|
|
|
instances, but in addition to private members (`var foo`) and public members
|
|
|
|
(`that.bar`), they can have shared private members (`self.baz`). `self` cannot
|
|
|
|
be accessed from outside, but since `self` itself is an argument of the
|
|
|
|
"constructor", an instance can inherit its parent's `self` by passing its own
|
|
|
|
`self`.
|
|
|
|
*/
|
2012-05-28 14:38:16 +00:00
|
|
|
'use strict';
|
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
Create our own namespace. Not required, but if we wanted to create a module
|
|
|
|
named `My`, this is how we would do it.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
Ox.My = {};
|
|
|
|
|
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**Box**
|
|
|
|
*/
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
First, lets build the most basic Box widget. A widget is a "constructor"
|
|
|
|
function that takes two (optional) arguments, `options` and `self`, and returns
|
|
|
|
a widget object. It's not a constructor in JavaScript terms though: It doesn't
|
|
|
|
have to be called with `new`, and doesn't return an `instanceof` anything. It
|
|
|
|
just enhances another widget object and returns it.
|
|
|
|
*/
|
|
|
|
Ox.My.Box = function(options, self) {
|
2012-05-28 14:38:16 +00:00
|
|
|
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
This is how every widget "constructor" begins. `self` is the widget's shared
|
|
|
|
private object.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
self = self || {};
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
`that` is the widget itself, its public object, or, in JavaScript terms, its
|
|
|
|
`this`. Every widget "inherits" from another widget by simple assignment.
|
|
|
|
All public properties of the "super" widget, i.e. all properties of its
|
|
|
|
`that`, will be present on our own `that`. In this case, we use Ox.Element,
|
|
|
|
the "root" widget at the end of the inheritance chain, and pass an empty
|
|
|
|
options object. But we always pass our own `self`, which means that any
|
|
|
|
property that Ox.Element (or any other widget in the inheritance chain) adds
|
|
|
|
to `self` will be present on our own `self`.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
var that = Ox.Element({}, self)
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
Then we call the public `defaults`, `options` and `update` methods of
|
|
|
|
Ox.Element. `defaults` assigns the defaults object to `self.defaults`
|
|
|
|
and copies it to `self.options`, `options` extends `self.options` with
|
|
|
|
the options object, and `update` adds one or more callbacks that are
|
|
|
|
invoked whenever, by way of calling the `options` method, a property of
|
|
|
|
`self.options` is modified or added.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
.defaults({
|
|
|
|
color: [128, 128, 128],
|
|
|
|
size: [128, 128]
|
|
|
|
})
|
|
|
|
.options(options || {})
|
|
|
|
.update({
|
|
|
|
color: setColor,
|
|
|
|
size: setSize
|
|
|
|
})
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
`addClass` is a jQuery method. In fact, Ox.Element (and any widget
|
|
|
|
derived from it) provides, on its prototype, all methods of a jQuery
|
|
|
|
`$('<div>')`. Chaining works too: If you have `var $d = $('<div>'), $e =
|
|
|
|
Ox.Element();`, then `$d.appendTo($e)` returns `$d`, and `$e.append($d)`
|
2012-06-26 15:33:32 +00:00
|
|
|
returns `$e`. If you type `Ox.Element()` in the console, you will get
|
2012-06-26 01:15:38 +00:00
|
|
|
something like `[<div class="OxElement"></div>]`. Any widget's `0`
|
|
|
|
property is an actual DOM element, and in case you ever need the
|
|
|
|
jQuery-wrapped element — that's the widget's `$element` property.
|
|
|
|
|
|
|
|
The purpose of the `OxMyBox` class is just to allow us to add CSS
|
|
|
|
declarations in an external style sheet. In this case, `.css({float:
|
|
|
|
'left'})` would do the same thing.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
.addClass('OxMyBox');
|
2012-05-28 14:38:16 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
The second part of the "constructor" function can be thought of as the
|
|
|
|
"initializer", and contains everything needed to set up the "instance". In
|
|
|
|
this case, we just define a minimum and maximum size and then set the
|
|
|
|
widget's color and size.
|
|
|
|
|
|
|
|
We could have used `var minSize` and `var maxSize` here, but by using `self`
|
|
|
|
for private variables that we want to be accessible across all the widget's
|
|
|
|
methods, we can be sure that inside such methods, any local `var` is
|
|
|
|
actually local to the method.
|
|
|
|
*/
|
|
|
|
self.minSize = 1;
|
|
|
|
self.maxSize = 256;
|
|
|
|
|
|
|
|
setColor();
|
|
|
|
setSize();
|
2012-05-28 14:38:16 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
Third, we declare the widget's private methods. These are just function
|
|
|
|
declarations, hoisted to the top of the "constructor".
|
|
|
|
*/
|
|
|
|
function setColor() {
|
|
|
|
that.css({
|
|
|
|
backgroundColor: 'rgb(' + self.options.color.join(', ') + ')',
|
|
|
|
});
|
|
|
|
}
|
2012-05-28 14:38:16 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
function setSize() {
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
Before setting the size, we make sure the value is between `minSize` and
|
|
|
|
`maxSize`.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
self.options.size = self.options.size.map(function(value) {
|
|
|
|
return Ox.limit(value, self.minSize, self.maxSize);
|
|
|
|
});
|
|
|
|
that.css({
|
|
|
|
width: self.options.size[0] + 'px',
|
|
|
|
height: self.options.size[1] + 'px'
|
|
|
|
});
|
|
|
|
}
|
2012-05-28 14:38:16 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
Next, we define the widgets public methods, as properties of `that`. (Note
|
|
|
|
that unlike private methods, they are not hoisted.)
|
|
|
|
*/
|
|
|
|
that.displayText = function(text) {
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
As there isn't much to do yet, this method just displays some text.
|
|
|
|
Here, `.addClass('OxMyText')` is equivalent to `.css({padding: '4px'})`.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
that.empty();
|
|
|
|
text && that.append($('<div>').addClass('OxMyText').html(text));
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
Public methods should return `that`, for chaining.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
And finally, at the very end of the "constructor", we return `that`. And
|
|
|
|
that's it.
|
|
|
|
*/
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**InvertibleBox**
|
|
|
|
*/
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
Now we can "subclass" our Box. Let's build one that can have its color inverted.
|
|
|
|
*/
|
|
|
|
Ox.My.InvertibleBox = function(options, self) {
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
self = self || {};
|
|
|
|
/*
|
|
|
|
We no longer inherit from Ox.Element, but from `Ox.My.Box`.
|
|
|
|
We could have written
|
|
|
|
<pre>
|
|
|
|
var that = Ox.My.Box({}, self)
|
|
|
|
.defaults({
|
|
|
|
color: [128, 128, 128],
|
|
|
|
inverted: false,
|
|
|
|
size: [128, 128]
|
|
|
|
})
|
|
|
|
.options(options || ())
|
|
|
|
.update({
|
|
|
|
...
|
|
|
|
})
|
|
|
|
</pre>
|
|
|
|
— but why repeat the defaults of `Ox.My.Box` if we can simply extend
|
|
|
|
them. (Just like `options()` returns all options of a widget, `defaults()`
|
|
|
|
returns all its defaults.)
|
|
|
|
*/
|
|
|
|
var that = Ox.My.Box({}, self);
|
|
|
|
that.defaults(Ox.extend(that.defaults(), {
|
|
|
|
inverted: false
|
|
|
|
}))
|
|
|
|
.options(options || {})
|
|
|
|
/*
|
|
|
|
Again, we add handlers that run when the widget's options are updated.
|
|
|
|
The original handlers of `Ox.My.Box` will run next, so we just add the
|
|
|
|
ones we need. We leave out `size`, so when the `size` option changes,
|
|
|
|
we'll get the original behavior.
|
|
|
|
*/
|
|
|
|
.update({
|
|
|
|
color: setColor,
|
|
|
|
inverted: setColor
|
|
|
|
})
|
|
|
|
/*
|
|
|
|
The same as `.css({cursor: 'pointer'})`.
|
|
|
|
*/
|
|
|
|
.addClass('OxMyInvertibleBox')
|
|
|
|
/*
|
|
|
|
Ox.Element and its descendants provide a number of public methods
|
|
|
|
(`bindEvent`, `bindEventOnce`, `triggerEvent` and `unbindEvent`) that
|
|
|
|
allow widgets to communicate via custom events. Here, we add a handler
|
|
|
|
for Ox.Element's `doubleclick` event. If we just wanted to handle a
|
|
|
|
`click` event, we could also use jQuery here:
|
|
|
|
<pre>
|
|
|
|
.on({
|
|
|
|
click: function() {
|
|
|
|
that.invert();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
</pre>
|
|
|
|
*/
|
|
|
|
.bindEvent({
|
|
|
|
doubleclick: function() {
|
|
|
|
that.invert();
|
|
|
|
}
|
|
|
|
});
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
The idea is that our widget's inverted state is separate from its color. If
|
|
|
|
the inverted option is set, then the color option stays the same, but has
|
|
|
|
the inverse effect. This means that when initializing the widget, we have
|
|
|
|
to call our custom `setColor` method if `self.options.inverted` is `true`.
|
|
|
|
*/
|
|
|
|
self.options.inverted && setColor();
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
When `setColor` is invoked as an update handler, returning `false` signals
|
2012-06-26 15:33:32 +00:00
|
|
|
that no further handlers should run. Otherwise, the original handler of
|
2012-06-26 01:15:38 +00:00
|
|
|
`Ox.My.Box` would run next, and revert any inversion we might have done
|
|
|
|
here.
|
|
|
|
*/
|
|
|
|
function setColor() {
|
|
|
|
that.css({backgroundColor: 'rgb(' + (
|
|
|
|
self.options.inverted ? self.options.color.map(function(value) {
|
|
|
|
return 255 - value;
|
|
|
|
}) : self.options.color
|
|
|
|
).join(', ') + ')'});
|
|
|
|
return false;
|
|
|
|
}
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
The public `invert` method is added as a convenience for the users of our
|
|
|
|
widget, so that when they want to toggle its inverted state, they don't have
|
|
|
|
to write
|
|
|
|
<pre>
|
|
|
|
$widget.options({
|
|
|
|
inverted: !$widget.options('inverted')
|
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
all the time.
|
|
|
|
|
|
|
|
Also, we trigger an `invert` event, that anyone can bind to via
|
|
|
|
<pre>
|
|
|
|
$widget.bindEvent({
|
|
|
|
invert: function() { ... }
|
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
*/
|
|
|
|
that.invert = function() {
|
2012-06-26 15:33:32 +00:00
|
|
|
that.options({inverted: !self.options.inverted}).triggerEvent('invert');
|
2012-06-25 14:39:31 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
And again, we return `that`.
|
|
|
|
*/
|
|
|
|
return that;
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
};
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**MetaBox**
|
|
|
|
*/
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
Now it's time for something more funky: A MetaBox — that is, a box of
|
|
|
|
boxes.
|
|
|
|
*/
|
|
|
|
Ox.My.MetaBox = function(options, self) {
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
This time, we inherit from `Ox.My.InvertibleBox`. The one thing that's
|
|
|
|
different though is the `color` option: It is no longer a single value, but
|
2012-06-26 14:33:50 +00:00
|
|
|
an array of array of values. That's how the boxes inside out MetaBox are
|
2012-06-26 01:15:38 +00:00
|
|
|
specified. The following would create a grid of boxes with two rows and
|
|
|
|
three columns:
|
|
|
|
<pre>
|
|
|
|
Ox.My.MetaBox({
|
2012-06-26 17:54:42 +00:00
|
|
|
color: [[
|
|
|
|
[[64, 0, 0], [64, 64, 0], [0, 64, 0]],
|
|
|
|
[[0, 64, 64], [0, 0, 64], [64, 0, 64]]
|
2012-06-26 01:15:38 +00:00
|
|
|
]
|
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
*/
|
|
|
|
self = self || {};
|
|
|
|
var that = Ox.My.InvertibleBox({}, self)
|
|
|
|
.options(options || {})
|
|
|
|
.update({color: setColor});
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
But we keep the default color of `Ox.My.InvertibleBox` (`[128, 128, 128]`)
|
|
|
|
as our own default color, and only here check if the color option is a
|
2012-06-26 14:33:50 +00:00
|
|
|
single RGB value. In that case, we convert it to an array of one row and one
|
2012-06-26 01:15:38 +00:00
|
|
|
column. This way, whenever someone accidentally passes a single color value,
|
|
|
|
our MetaBox can handle it.
|
|
|
|
*/
|
|
|
|
if (Ox.isNumber(self.options.color[0])) {
|
|
|
|
self.options.color = [[self.options.color]];
|
|
|
|
}
|
2012-06-25 15:54:18 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
`self.sizes` holds the width of each column and the height of each row.
|
|
|
|
`self.options.color.length` is the number of rows,
|
|
|
|
`self.options.color[0].length` the number of columns, and Ox.splitInt(a, b)
|
|
|
|
"splits" an integer `a` into an array of `b` integers that sum up to `a`.
|
|
|
|
(We don't want fractional pixel sizes.)
|
|
|
|
*/
|
|
|
|
self.sizes = [
|
|
|
|
Ox.splitInt(self.options.size[0], self.options.color[0].length),
|
|
|
|
Ox.splitInt(self.options.size[1], self.options.color.length)
|
|
|
|
];
|
|
|
|
|
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
`self.$boxes` are the actual boxes. We use `Ox.My.InvertibleBox`, but remove
|
|
|
|
the `doubleclick` handlers, since our MetaBox already has one, being an
|
|
|
|
InvertibleBox itself. (`unbindEvent(event)` removes all handlers,
|
|
|
|
`unbindEvent(event, handler)` removes a specific one.) Then we simply append
|
|
|
|
each box to the meta-box.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
self.$boxes = self.options.color.map(function(array, y) {
|
|
|
|
return array.map(function(color, x) {
|
|
|
|
return Ox.My.InvertibleBox({
|
|
|
|
color: color,
|
|
|
|
size: [self.sizes[0][x], self.sizes[1][y]]
|
|
|
|
})
|
|
|
|
.unbindEvent('doubleclick')
|
|
|
|
.appendTo(that);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
To set the color of a meta-box means to set the color of each box.
|
|
|
|
*/
|
|
|
|
function setColor() {
|
|
|
|
self.$boxes.forEach(function(array, y) {
|
|
|
|
array.forEach(function($box, x) {
|
|
|
|
$box.options({color: self.options.color[y][x]});
|
2012-06-25 17:37:36 +00:00
|
|
|
});
|
2012-06-26 01:15:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is the rare case of a shared private method. Its purpose will become
|
|
|
|
apparent a bit later. Otherwise, we could just have made a private function,
|
|
|
|
or an anonymous function in the loop below.
|
|
|
|
*/
|
|
|
|
self.invertBox = function($box) {
|
|
|
|
$box.invert();
|
|
|
|
};
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
Here, we override the public `invert` method of `Ox.My.InvertibleBox`. When
|
|
|
|
inverting an `Ox.My.MetaBox`, we have to invert each of its boxes. (If we
|
|
|
|
wanted to keep the original method around, we could store it as
|
|
|
|
`that.superInvert` before.)
|
|
|
|
*/
|
|
|
|
that.invert = function() {
|
|
|
|
self.$boxes.forEach(function(array) {
|
|
|
|
array.forEach(self.invertBox);
|
|
|
|
});
|
2012-06-26 15:33:32 +00:00
|
|
|
that.options({inverted: !self.options.inverted}).triggerEvent('invert');
|
2012-06-25 14:39:31 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
And that's all it takes to make a meta-box.
|
|
|
|
*/
|
|
|
|
return that;
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
};
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**PixelBox**
|
|
|
|
*/
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
The next widget is a peculiar type of meta-box. A PixelBox has only one color,
|
2012-06-26 14:33:50 +00:00
|
|
|
but this color will be split up into a red box, a green box and a blue box.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
Ox.My.PixelBox = function(options, self) {
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
self = self || {};
|
2012-06-26 14:33:50 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
The challenge here is that we want our PixelBox to be an instance of
|
|
|
|
`Ox.My.MetaBox`, but with a `color` option like `Ox.My.Box`. So we have to
|
|
|
|
parse the options ourselves, by first extending the defaults of `Ox.My.Box`
|
|
|
|
and then transforming the single-value `color` option into a multi-value
|
|
|
|
`color` option. Calling<br>
|
|
|
|
`Ox.My.PixelBox().options('color')`<br>
|
|
|
|
will now return<br>
|
|
|
|
`[[[128, 0, 0], [0, 128, 0], [0, 0, 128]]]`.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
self.options = Ox.extend(Ox.My.Box().defaults(), options || {});
|
2012-06-26 14:33:50 +00:00
|
|
|
self.options.color = getColor();
|
|
|
|
/*
|
|
|
|
Now we can pass `self.options` to `Ox.My.MetaBox`.
|
|
|
|
*/
|
|
|
|
var that = Ox.My.MetaBox(self.options, self)
|
|
|
|
/*
|
|
|
|
Again, we add a custom handler for `color` updates.
|
|
|
|
*/
|
|
|
|
.update({color: setColor});
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
This is how a single RGB value gets split up into a red box, a green box and
|
|
|
|
a blue box.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
2012-06-26 14:33:50 +00:00
|
|
|
function getColor(color) {
|
2012-06-26 01:15:38 +00:00
|
|
|
return [[
|
|
|
|
[self.options.color[0], 0, 0],
|
|
|
|
[0, self.options.color[1], 0],
|
|
|
|
[0, 0, self.options.color[2]]
|
|
|
|
]];
|
|
|
|
}
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
When the `color` option gets updated to a new single value, we update it
|
|
|
|
again, this time to multiple values, and return `false` to keep the MetaBox
|
|
|
|
handler from running. We have updated `color`, so our handler will get
|
|
|
|
called again, but now it does nothing, and the MetaBox handler will get
|
|
|
|
invoked.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
function setColor() {
|
|
|
|
if (Ox.isNumber(self.options.color[0])) {
|
|
|
|
that.options({color: getColor()});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
Inverting a PixelBox is different from inverting a MetaBox, since we only
|
|
|
|
want to invert one color channel per box. This is where the shared private
|
|
|
|
`invertBox` method of `Ox.My.MetaBox` comes into play. Since we share the
|
|
|
|
same `self`, we can simply override it. (Alternatively, we could have added
|
|
|
|
an `invertBox` option to `Ox.My.MetaBox`, but overriding a shared private
|
|
|
|
method is much more elegant than cluttering the public API of
|
|
|
|
`Ox.My.MetaBox` with such an option.)
|
|
|
|
*/
|
|
|
|
self.invertBox = function($box, x) {
|
|
|
|
$box.options({
|
|
|
|
color: $box.options('color').map(function(value, i) {
|
|
|
|
return i == x ? 255 - value : value
|
2012-06-25 15:54:18 +00:00
|
|
|
})
|
2012-06-25 14:39:31 +00:00
|
|
|
});
|
2012-06-26 01:15:38 +00:00
|
|
|
};
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
|
|
|
And that's the PixelBox.
|
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
return that;
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
};
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**ImageBox**
|
|
|
|
*/
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
And finally — a meta-meta-box! An ImageBox takes an image and, for each
|
|
|
|
pixel, displays a PixelBox.
|
|
|
|
*/
|
|
|
|
Ox.My.ImageBox = function(options, self) {
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
self = self || {};
|
2012-05-28 14:38:16 +00:00
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
Loading the image is asynchronous, but we want to display a box immediately.
|
|
|
|
So we just subclass `Ox.My.Box`. Also, this seems to be a good use case for
|
|
|
|
its `displayText` method.
|
2012-05-28 14:38:16 +00:00
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
var that = Ox.My.Box({}, self).displayText('Loading...');
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
|
|
|
It's not required to define empty defaults — omitting them would
|
2012-06-26 15:33:32 +00:00
|
|
|
simply leave them undefined. Still, to add an explicit `null` default is a
|
2012-06-26 14:33:50 +00:00
|
|
|
good practice, as it makes it obvious to any reader of our code that
|
|
|
|
`Ox.My.ImageBox` expects an `image` option.
|
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
that.defaults(Ox.extend(that.defaults(), {
|
|
|
|
image: null
|
|
|
|
}))
|
|
|
|
.options(options || {});
|
2012-06-25 14:39:31 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
Ox.Image takes a URI and passes an image object to its callback function.
|
|
|
|
*/
|
|
|
|
self.options.image && Ox.Image(self.options.image, function(image) {
|
|
|
|
var size = image.getSize();
|
|
|
|
size = [size.width, size.height];
|
|
|
|
/*
|
|
|
|
Again, we have to compute the width of each column and the height of
|
|
|
|
each row.
|
|
|
|
*/
|
|
|
|
self.sizes = size.map(function(value, index) {
|
|
|
|
return Ox.splitInt(self.options.size[index], value);
|
|
|
|
});
|
|
|
|
/*
|
|
|
|
Remove the 'Loading...' message.
|
|
|
|
*/
|
|
|
|
that.displayText();
|
|
|
|
/*
|
|
|
|
For each pixel ...
|
|
|
|
*/
|
|
|
|
self.$boxes = Ox.range(size[1]).map(function(y) {
|
|
|
|
return Ox.range(size[0]).map(function(x) {
|
|
|
|
/*
|
|
|
|
... create a PixelBox ...
|
|
|
|
*/
|
|
|
|
return Ox.My.PixelBox({
|
|
|
|
/*
|
|
|
|
(`image.pixel` returns RGBA, so discard alpha)
|
|
|
|
*/
|
|
|
|
color: image.pixel(x, y).slice(0, 3),
|
|
|
|
size: [self.sizes[0][x], self.sizes[1][y]]
|
2012-06-25 18:40:14 +00:00
|
|
|
})
|
2012-06-26 01:15:38 +00:00
|
|
|
/*
|
|
|
|
... remove its `doubleclick` handler ...
|
|
|
|
*/
|
|
|
|
.unbindEvent('doubleclick')
|
|
|
|
/*
|
|
|
|
... and append it to the ImageBox.
|
|
|
|
*/
|
|
|
|
.appendTo(that);
|
|
|
|
});
|
2012-05-28 14:38:16 +00:00
|
|
|
});
|
2012-06-26 01:15:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
We've inherited from `Ox.My.Box`, so we don't have an `invert` method yet.
|
|
|
|
This is how we can borrow the one from `Ox.My.MetaBox`. We're passing our
|
|
|
|
own `self`, so the `self.$boxes` that the `invert` method of `Ox.My.MetaBox`
|
2012-06-26 14:33:50 +00:00
|
|
|
operates on will be the PixelBoxes that we are assigning in the asynchronous
|
|
|
|
callback above. (This pattern is somewhat analogous to the
|
|
|
|
`someOtherObject.method.apply(this, args)` idiom that is common in
|
|
|
|
JavaScript.)
|
|
|
|
|
|
|
|
Note that we have to pass `self.options` too, otherwise our own
|
|
|
|
`self.options.size` would get overwritten by the MetaBox default size.
|
|
|
|
|
|
|
|
Passing `self` to `Ox.My.MetaBox` has another nice effect: the MetaBox will
|
|
|
|
add its own event handlers to it. So even though `Ox.My.ImageBox` is just an
|
|
|
|
`Ox.My.Box`, it has now inherited `doubleclick` handling from
|
|
|
|
`Ox.My.MetaBox`.
|
|
|
|
|
|
|
|
(Internally, `Ox.Element` stores event handlers in `self`. So what happens
|
|
|
|
is this: `self` gets passed all the way down from `Ox.My.ImageBox` to
|
|
|
|
`Ox.My.MetaBox` to `Ox.My.InvertibleBox` to `Ox.My.Box` to Ox.Element, and
|
|
|
|
when `Ox.My.InvertibleBox` defines its `doubleclick` handler, it ends up on
|
|
|
|
`self`. So when the Ox.Element that is actually in the DOM — the
|
|
|
|
`Ox.My.Box` that `Ox.My.ImageBox` inherits from, which shares the same
|
|
|
|
`self` — receives a `doubleclick`, there is now a handler for it.)
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
that.invert = Ox.My.MetaBox(self.options, self).invert;
|
|
|
|
|
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
And that's it.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
return that;
|
2012-05-28 14:38:16 +00:00
|
|
|
|
2012-06-26 01:15:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**VideoBox**
|
|
|
|
*/
|
|
|
|
/*
|
2012-06-26 01:15:38 +00:00
|
|
|
This one is left as an exercise to the reader ;)
|
|
|
|
*/
|
|
|
|
Ox.My.VideoBox = function(options, self) {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2012-06-26 14:33:50 +00:00
|
|
|
**Demo**
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Load the Image and UI modules.
|
2012-06-26 01:15:38 +00:00
|
|
|
*/
|
|
|
|
Ox.load(['Image', 'UI'], function() {
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
|
|
|
Pick a random color. Ox.rgb will convert HSL to RGB.
|
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
var h = Ox.random(360), s = 1, l = 0.5;
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
2012-06-26 15:33:32 +00:00
|
|
|
Create a global variable, so that we can interact with our widgets in the
|
2012-06-26 14:33:50 +00:00
|
|
|
console.
|
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
window.My = {};
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
|
|
|
Since `Ox.My.Box` is a good multi-purpose container, we create one to
|
|
|
|
contain the first four boxes.
|
|
|
|
*/
|
2012-06-26 15:59:26 +00:00
|
|
|
Ox.My.Box({
|
2012-06-26 01:15:38 +00:00
|
|
|
size: [256, 256]
|
|
|
|
})
|
|
|
|
.append(
|
|
|
|
My.$box = Ox.My.Box({
|
|
|
|
color: Ox.rgb(h, s, l)
|
|
|
|
}),
|
|
|
|
My.$invertibleBox = Ox.My.InvertibleBox({
|
|
|
|
color: Ox.rgb(h + 120, s, l)
|
|
|
|
}),
|
|
|
|
My.$metaBox = Ox.My.MetaBox({
|
|
|
|
color: Ox.range(2).map(function(y) {
|
|
|
|
return Ox.range(3).map(function(x) {
|
|
|
|
return Ox.rgb(h + x * 60 + y * 180, s, l);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
My.$pixelBox = Ox.My.PixelBox({
|
|
|
|
color: Ox.rgb(h + 120, s, l)
|
|
|
|
})
|
|
|
|
)
|
|
|
|
.appendTo(Ox.$body);
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
|
|
|
The ImageBox is a bit larger.
|
|
|
|
*/
|
2012-06-26 01:15:38 +00:00
|
|
|
My.$imageBox = Ox.My.ImageBox({
|
|
|
|
image: 'png/pandora32.png',
|
|
|
|
size: [256, 256]
|
|
|
|
})
|
|
|
|
.appendTo(Ox.$body);
|
2012-06-26 14:33:50 +00:00
|
|
|
/*
|
2012-06-30 09:25:15 +00:00
|
|
|
As a last step, we add another `doubleclick` handler to each widget. It will
|
|
|
|
display the widget's name and options inside the first box.
|
2012-06-26 14:33:50 +00:00
|
|
|
*/
|
2012-06-26 15:33:32 +00:00
|
|
|
Ox.forEach(My, function($box, name) {
|
|
|
|
$box.bindEvent({
|
2012-06-30 09:25:15 +00:00
|
|
|
doubleclick: function() {
|
2012-06-26 15:33:32 +00:00
|
|
|
My.$box.displayText(
|
|
|
|
'<b>' + name[1].toUpperCase() + name.slice(2) + '</b><br>'
|
|
|
|
+ JSON.stringify($box.options()).replace(/([,:])/g, '$1 ')
|
|
|
|
);
|
2012-06-26 01:15:38 +00:00
|
|
|
}
|
2012-06-26 14:33:50 +00:00
|
|
|
});
|
2012-06-26 01:15:38 +00:00
|
|
|
});
|
2012-06-26 14:33:50 +00:00
|
|
|
});
|