Migrateed to commonjs format

This build makes dat.gui commonjs friendly and allows it to be consumed
as a regular commonjs package.

All tests are passing, API is backward compatible.
This commit is contained in:
anvaka 2015-04-16 23:15:24 -07:00
parent a65c4f9b38
commit 97adbace4d
35 changed files with 4841 additions and 5045 deletions

18
.gitignore vendored
View File

@ -1,3 +1,15 @@
.DS_Store lib-cov
.sass-cache *.seed
.idea *.log
*.csv
*.dat
*.out
*.pid
*.gz
pids
logs
results
npm-debug.log
node_modules

View File

@ -1,68 +1,65 @@
#dat.GUI # UI Controller (dat.gui ported to commonjs)
A lightweight graphical user interface for changing variables in JavaScript. A lightweight graphical user interface for changing variables in JavaScript.
Get started with dat.GUI by reading the tutorial at http://workshop.chromeexperiments.com/examples/gui. Get started with dat.GUI by reading the tutorial at http://workshop.chromeexperiments.com/examples/gui.
---- ## Packaged Builds
##Packaged Builds
The easiest way to use dat.GUI in your code is by using the built source at `build/dat.gui.min.js`. These built JavaScript files bundle all the necessary dependencies to run dat.GUI. The easiest way to use dat.GUI in your code is by using the built source at `build/dat.gui.min.js`. These built JavaScript files bundle all the necessary dependencies to run dat.GUI.
In your `head` tag, include the following code: In your `head` tag, include the following code:
```
``` html
<script type="text/javascript" src="dat.gui.min.js"></script> <script type="text/javascript" src="dat.gui.min.js"></script>
``` ```
---- ## As commonjs module
##Using dat.GUI with require.js Install the module:
Internally, dat.GUI uses [require.js](http://requirejs.org/) to handle dependency management. If you're making changes to the source and want to see the effects of your changes without building, use require js.
In your `head` tag, include the following code:
``` ```
<script data-main="path/to/main" src="path/to/requirejs/require.js"></script> npm install dat.gui
``` ```
Then, in `path/to/main.js`: Use it:
```
require([
'path/to/gui/module/GUI'
], function(GUI) {
// No namespace necessary ``` js
var gui = new GUI(); var dat = require('dat.gui');
var obj = { x: 5 };
var gui = new dat.GUI();
gui.add(obj, 'x').onChange(function() {
// obj.x will now have updated value
}); });
``` ```
----
##Directory Contents
* build: Concatenated source code. ## Directory Contents
* src: Modular code in [require.js](http://requirejs.org/) format. Also includes css, [scss](http://sass-lang.com/), and html, some of which is included during build.
* build: Concatenated source code for browsers.
* src: source code in commonjs format.
* tests: [QUnit](https://github.com/jquery/qunit) test suite. * tests: [QUnit](https://github.com/jquery/qunit) test suite.
* utils: [node.js](http://nodejs.org/) utility scripts for compiling source.
---- ## Building your own dat.GUI
##Building your own dat.GUI
In the terminal, enter the following: In the terminal, enter the following:
``` ```
$ cd utils npm start
$ node build_gui.js
``` ```
This will create a namespaced, unminified build of dat.GUI at `build/dat.gui.js` This will create a browserified build of dat.GUI at `build/dat.gui.js` and its
minified version at `build/dat.gui.min.js`.
_To export minified source using Closure Compiler, open `utils/build_gui.js` and set the `minify` parameter to `true`._ ## Change log
---- ### Pending version number
* Moved to commonjs, made it browserify friendly.
* Back to GitHub.
##Change log ### 0.5
###0.5
* Moved to requirejs for dependency management. * Moved to requirejs for dependency management.
* Changed global namespace from *DAT* to *dat* (lowercase). * Changed global namespace from *DAT* to *dat* (lowercase).
* Added support for color controllers. See [Color Controllers](http://workshop.chromeexperiments.com/examples/gui/#4--Color-Controllers). * Added support for color controllers. See [Color Controllers](http://workshop.chromeexperiments.com/examples/gui/#4--Color-Controllers).
@ -81,9 +78,10 @@ _To export minified source using Closure Compiler, open `utils/build_gui.js` and
---- ----
##Thanks ## Thanks
The following libraries / open-source projects were used in the development of dat.GUI: The following libraries / open-source projects were used in the development of dat.GUI:
* [require.js](http://requirejs.org/)
* [browserify](http://browserify.org/)
* [Sass](http://sass-lang.com/) * [Sass](http://sass-lang.com/)
* [node.js](http://nodejs.org/) * [node.js](http://nodejs.org/)
* [QUnit](https://github.com/jquery/qunit) / [jquery](http://jquery.com/) * [QUnit](https://github.com/jquery/qunit) / [jquery](http://jquery.com/)

View File

@ -1,9 +1,10 @@
{ {
"name": "dat-gui", "name": "dat-gui",
"version": "0.5.0", "version": "0.5.1",
"homepage": "https://github.com/dataarts/dat.gui", "homepage": "https://github.com/dataarts/dat.gui",
"authors": [ "authors": [
"Google Data Arts Team <dataarts@google.com>" "Google Data Arts Team <dataarts@google.com>",
"Andrei Kashcha <anvaka@gmail.com>"
], ],
"description": "dat.gui is a lightweight controller library for JavaScript.", "description": "dat.gui is a lightweight controller library for JavaScript.",
"main": "/build/dat.gui.js", "main": "/build/dat.gui.js",

File diff suppressed because one or more lines are too long

89
build/dat.gui.min.js vendored

File diff suppressed because one or more lines are too long

32
package.json Normal file
View File

@ -0,0 +1,32 @@
{
"name": "dat.gui",
"version": "0.5.1",
"main": "src/index.js",
"scripts": {
"browser": "browserify -s dat src/index.js > build/dat.gui.js",
"minify": "uglifyjs --comments -- ./build/dat.gui.js > ./build/dat.gui.min.js",
"release": "npm run browser && npm run minify",
"start": "npm run release"
},
"browserify": {
"transform": [
"brfs"
]
},
"repository": {
"type": "git",
"url": "https://github.com/dataarts/dat.gui"
},
"author": [
"Data Arts Team, Google Creative Lab",
"Andrei Kashcha"
],
"license": "Apache 2.0",
"dependencies": {
"brfs": "^1.4.0"
},
"devDependencies": {
"browserify": "^9.0.8",
"uglify-js": "^2.4.20"
}
}

View File

@ -11,14 +11,14 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var common = require('../utils/common.js');
'dat/color/interpret', var toString = require('./toString.js');
'dat/color/math', var math = require('./math.js');
'dat/color/toString', var interpret = require('./interpret.js');
'dat/utils/common'
], function(interpret, math, toString, common) {
var Color = function() { module.exports = Color;
function Color() {
this.__state = interpret.apply(this, arguments); this.__state = interpret.apply(this, arguments);
@ -27,13 +27,11 @@ define([
} }
this.__state.a = this.__state.a || 1; this.__state.a = this.__state.a || 1;
}
Color.COMPONENTS = ['r', 'g', 'b', 'h', 's', 'v', 'hex', 'a'];
}; common.extend(Color.prototype, {
Color.COMPONENTS = ['r','g','b','h','s','v','hex','a'];
common.extend(Color.prototype, {
toString: function() { toString: function() {
return toString(this); return toString(this);
@ -43,17 +41,17 @@ define([
return this.__state.conversion.write(this); return this.__state.conversion.write(this);
} }
}); });
defineRGBComponent(Color.prototype, 'r', 2); defineRGBComponent(Color.prototype, 'r', 2);
defineRGBComponent(Color.prototype, 'g', 1); defineRGBComponent(Color.prototype, 'g', 1);
defineRGBComponent(Color.prototype, 'b', 0); defineRGBComponent(Color.prototype, 'b', 0);
defineHSVComponent(Color.prototype, 'h'); defineHSVComponent(Color.prototype, 'h');
defineHSVComponent(Color.prototype, 's'); defineHSVComponent(Color.prototype, 's');
defineHSVComponent(Color.prototype, 'v'); defineHSVComponent(Color.prototype, 'v');
Object.defineProperty(Color.prototype, 'a', { Object.defineProperty(Color.prototype, 'a', {
get: function() { get: function() {
return this.__state.a; return this.__state.a;
@ -63,9 +61,9 @@ define([
this.__state.a = v; this.__state.a = v;
} }
}); });
Object.defineProperty(Color.prototype, 'hex', { Object.defineProperty(Color.prototype, 'hex', {
get: function() { get: function() {
@ -84,9 +82,9 @@ define([
} }
}); });
function defineRGBComponent(target, component, componentHexIndex) { function defineRGBComponent(target, component, componentHexIndex) {
Object.defineProperty(target, component, { Object.defineProperty(target, component, {
@ -115,9 +113,9 @@ define([
}); });
} }
function defineHSVComponent(target, component) { function defineHSVComponent(target, component) {
Object.defineProperty(target, component, { Object.defineProperty(target, component, {
@ -145,9 +143,9 @@ define([
}); });
} }
function recalculateRGB(color, component, componentHexIndex) { function recalculateRGB(color, component, componentHexIndex) {
if (color.__state.space === 'HEX') { if (color.__state.space === 'HEX') {
@ -163,18 +161,16 @@ define([
} }
} }
function recalculateHSV(color) { function recalculateHSV(color) {
var result = math.rgb_to_hsv(color.r, color.g, color.b); var result = math.rgb_to_hsv(color.r, color.g, color.b);
common.extend(color.__state, common.extend(color.__state, {
{
s: result.s, s: result.s,
v: result.v v: result.v
} });
);
if (!common.isNaN(result.h)) { if (!common.isNaN(result.h)) {
color.__state.h = result.h; color.__state.h = result.h;
@ -182,8 +178,4 @@ define([
color.__state.h = 0; color.__state.h = 0;
} }
} }
return Color;
});

View File

@ -11,10 +11,11 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ module.exports = createInterpert();
'dat/color/toString',
'dat/utils/common' function createInterpert() {
], function(toString, common) { var common = require('../utils/common.js');
var toString = require('./toString.js');
var result, toReturn; var result, toReturn;
@ -337,4 +338,4 @@ define([
return interpret; return interpret;
}); }

View File

@ -11,9 +11,9 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ module.exports = math();
], function() { function math() {
var tmpComponent; var tmpComponent;
@ -92,9 +92,8 @@ define([
}, },
hex_with_component: function(hex, componentIndex, value) { hex_with_component: function(hex, componentIndex, value) {
return value << (tmpComponent = componentIndex * 8) | (hex & ~ (0xFF << tmpComponent)); return value << (tmpComponent = componentIndex * 8) | (hex & ~(0xFF << tmpComponent));
} }
} };
}
});

View File

@ -11,11 +11,11 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var common = require('../utils/common.js');
'dat/utils/common'
], function(common) {
return function(color) { module.exports = toString;
function toString(color) {
if (color.a == 1 || common.isUndefined(color.a)) { if (color.a == 1 || common.isUndefined(color.a)) {
@ -32,6 +32,4 @@ define([
} }
} }
});

View File

@ -11,13 +11,13 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var Controller = require('./Controller.js');
'dat/controllers/Controller', var common = require('../utils/common.js');
'dat/dom/dom', var dom = require('../dom/dom.js');
'dat/utils/common'
], function(Controller, dom, common) {
/** module.exports = BooleanController;
/**
* @class Provides a checkbox input to alter the boolean property of an object. * @class Provides a checkbox input to alter the boolean property of an object.
* @extends dat.controllers.Controller * @extends dat.controllers.Controller
* *
@ -26,7 +26,7 @@ define([
* *
* @member dat.controllers * @member dat.controllers
*/ */
var BooleanController = function(object, property) { function BooleanController(object, property) {
BooleanController.superclass.call(this, object, property); BooleanController.superclass.call(this, object, property);
@ -48,11 +48,11 @@ define([
_this.setValue(!_this.__prev); _this.setValue(!_this.__prev);
} }
}; }
BooleanController.superclass = Controller; BooleanController.superclass = Controller;
common.extend( common.extend(
BooleanController.prototype, BooleanController.prototype,
Controller.prototype, Controller.prototype,
@ -84,8 +84,4 @@ define([
} }
); );
return BooleanController;
});

View File

@ -11,15 +11,15 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var Controller = require('./Controller.js');
'dat/controllers/Controller', var common = require('../utils/common.js');
'dat/dom/dom', var dom = require('../dom/dom.js');
'dat/color/Color', var Color = require('../color/Color.js');
'dat/color/interpret', var interpret = require('../color/interpret.js');
'dat/utils/common'
], function(Controller, dom, Color, interpret, common) {
var ColorController = function(object, property) { module.exports = ColorController;
function ColorController(object, property) {
ColorController.superclass.call(this, object, property); ColorController.superclass.call(this, object, property);
@ -127,10 +127,10 @@ define([
common.extend(this.__input.style, { common.extend(this.__input.style, {
outline: 'none', outline: 'none',
// width: '120px', // width: '120px',
textAlign: 'center', textAlign: 'center',
// padding: '4px', // padding: '4px',
// marginBottom: '6px', // marginBottom: '6px',
color: '#fff', color: '#fff',
border: 0, border: 0,
fontWeight: 'bold', fontWeight: 'bold',
@ -229,11 +229,11 @@ define([
} }
}; };
ColorController.superclass = Controller; ColorController.superclass = Controller;
common.extend( common.extend(
ColorController.prototype, ColorController.prototype,
Controller.prototype, Controller.prototype,
@ -278,7 +278,7 @@ define([
marginLeft: 100 * this.__color.s - 7 + 'px', marginLeft: 100 * this.__color.s - 7 + 'px',
marginTop: 100 * (1 - this.__color.v) - 7 + 'px', marginTop: 100 * (1 - this.__color.v) - 7 + 'px',
backgroundColor: this.__temp.toString(), backgroundColor: this.__temp.toString(),
border: this.__field_knob_border + 'rgb(' + flip + ',' + flip + ',' + flip +')' border: this.__field_knob_border + 'rgb(' + flip + ',' + flip + ',' + flip + ')'
}); });
this.__hue_knob.style.marginTop = (1 - this.__color.h / 360) * 100 + 'px' this.__hue_knob.style.marginTop = (1 - this.__color.h / 360) * 100 + 'px'
@ -290,35 +290,30 @@ define([
common.extend(this.__input.style, { common.extend(this.__input.style, {
backgroundColor: this.__input.value = this.__color.toString(), backgroundColor: this.__input.value = this.__color.toString(),
color: 'rgb(' + flip + ',' + flip + ',' + flip +')', color: 'rgb(' + flip + ',' + flip + ',' + flip + ')',
textShadow: this.__input_textShadow + 'rgba(' + _flip + ',' + _flip + ',' + _flip +',.7)' textShadow: this.__input_textShadow + 'rgba(' + _flip + ',' + _flip + ',' + _flip + ',.7)'
}); });
} }
} }
); );
var vendors = ['-moz-','-o-','-webkit-','-ms-','']; var vendors = ['-moz-', '-o-', '-webkit-', '-ms-', ''];
function linearGradient(elem, x, a, b) { function linearGradient(elem, x, a, b) {
elem.style.background = ''; elem.style.background = '';
common.each(vendors, function(vendor) { common.each(vendors, function(vendor) {
elem.style.cssText += 'background: ' + vendor + 'linear-gradient('+x+', '+a+' 0%, ' + b + ' 100%); '; elem.style.cssText += 'background: ' + vendor + 'linear-gradient(' + x + ', ' + a + ' 0%, ' + b + ' 100%); ';
}); });
} }
function hueGradient(elem) { function hueGradient(elem) {
elem.style.background = ''; elem.style.background = '';
elem.style.cssText += 'background: -moz-linear-gradient(top, #ff0000 0%, #ff00ff 17%, #0000ff 34%, #00ffff 50%, #00ff00 67%, #ffff00 84%, #ff0000 100%);' elem.style.cssText += 'background: -moz-linear-gradient(top, #ff0000 0%, #ff00ff 17%, #0000ff 34%, #00ffff 50%, #00ff00 67%, #ffff00 84%, #ff0000 100%);'
elem.style.cssText += 'background: -webkit-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' elem.style.cssText += 'background: -webkit-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
elem.style.cssText += 'background: -o-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' elem.style.cssText += 'background: -o-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
elem.style.cssText += 'background: -ms-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' elem.style.cssText += 'background: -ms-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
elem.style.cssText += 'background: linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' elem.style.cssText += 'background: linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
} }
return ColorController;
});

View File

@ -11,11 +11,10 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var common = require('../utils/common.js');
'dat/utils/common' module.exports = Controller;
], function(common) {
/** /**
* @class An "abstract" class that represents a given property of an object. * @class An "abstract" class that represents a given property of an object.
* *
* @param {Object} object The object to be manipulated * @param {Object} object The object to be manipulated
@ -23,7 +22,7 @@ define([
* *
* @member dat.controllers * @member dat.controllers
*/ */
var Controller = function(object, property) { function Controller(object, property) {
this.initialValue = object[property]; this.initialValue = object[property];
@ -59,9 +58,9 @@ define([
*/ */
this.__onFinishChange = undefined; this.__onFinishChange = undefined;
}; }
common.extend( common.extend(
Controller.prototype, Controller.prototype,
@ -131,14 +130,9 @@ define([
* @returns {Boolean} true if the value has deviated from initialValue * @returns {Boolean} true if the value has deviated from initialValue
*/ */
isModified: function() { isModified: function() {
return this.initialValue !== this.getValue() return this.initialValue !== this.getValue();
} }
} }
); );
return Controller;
});

View File

@ -11,13 +11,13 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var Controller = require('./Controller.js');
'dat/controllers/Controller', var common = require('../utils/common.js');
'dat/dom/dom', var dom = require('../dom/dom.js');
'dat/utils/common'
], function(Controller, dom, common) {
/** module.exports = FunctionController;
/**
* @class Provides a GUI interface to fire a specified method, a property of an object. * @class Provides a GUI interface to fire a specified method, a property of an object.
* *
* @extends dat.controllers.Controller * @extends dat.controllers.Controller
@ -27,7 +27,7 @@ define([
* *
* @member dat.controllers * @member dat.controllers
*/ */
var FunctionController = function(object, property, text) { function FunctionController(object, property, text) {
FunctionController.superclass.call(this, object, property); FunctionController.superclass.call(this, object, property);
@ -45,16 +45,14 @@ define([
this.domElement.appendChild(this.__button); this.domElement.appendChild(this.__button);
}
}; FunctionController.superclass = Controller;
FunctionController.superclass = Controller; common.extend(
common.extend(
FunctionController.prototype, FunctionController.prototype,
Controller.prototype, Controller.prototype, {
{
fire: function() { fire: function() {
if (this.__onChange) { if (this.__onChange) {
@ -67,8 +65,4 @@ define([
} }
} }
); );
return FunctionController;
});

View File

@ -11,12 +11,11 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var Controller = require('./Controller.js');
'dat/controllers/Controller', var common = require('../utils/common.js');
'dat/utils/common' module.exports = NumberController;
], function(Controller, common) {
/** /**
* @class Represents a given property of an object that is a number. * @class Represents a given property of an object that is a number.
* *
* @extends dat.controllers.Controller * @extends dat.controllers.Controller
@ -30,7 +29,7 @@ define([
* *
* @member dat.controllers * @member dat.controllers
*/ */
var NumberController = function(object, property, params) { function NumberController(object, property, params) {
NumberController.superclass.call(this, object, property); NumberController.superclass.call(this, object, property);
@ -46,7 +45,7 @@ define([
this.__impliedStep = 1; // What are we, psychics? this.__impliedStep = 1; // What are we, psychics?
} else { } else {
// Hey Doug, check this out. // Hey Doug, check this out.
this.__impliedStep = Math.pow(10, Math.floor(Math.log(this.initialValue)/Math.LN10))/10; this.__impliedStep = Math.pow(10, Math.floor(Math.log(this.initialValue) / Math.LN10)) / 10;
} }
} else { } else {
@ -58,11 +57,11 @@ define([
this.__precision = numDecimals(this.__impliedStep); this.__precision = numDecimals(this.__impliedStep);
}; }
NumberController.superclass = Controller; NumberController.superclass = Controller;
common.extend( common.extend(
NumberController.prototype, NumberController.prototype,
Controller.prototype, Controller.prototype,
@ -129,17 +128,13 @@ define([
} }
); );
function numDecimals(x) { function numDecimals(x) {
x = x.toString(); x = x.toString();
if (x.indexOf('.') > -1) { if (x.indexOf('.') > -1) {
return x.length - x.indexOf('.') - 1; return x.length - x.indexOf('.') - 1;
} else { } else {
return 0; return 0;
} }
} }
return NumberController;
});

View File

@ -11,13 +11,13 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var NumberController = require('./NumberController.js');
'dat/controllers/NumberController', var common = require('../utils/common.js');
'dat/dom/dom', var dom = require('../dom/dom.js');
'dat/utils/common'
], function(NumberController, dom, common) {
/** module.exports = NumberControllerBox;
/**
* @class Represents a given property of an object that is a number and * @class Represents a given property of an object that is a number and
* provides an input element with which to manipulate it. * provides an input element with which to manipulate it.
* *
@ -33,7 +33,7 @@ define([
* *
* @member dat.controllers * @member dat.controllers
*/ */
var NumberControllerBox = function(object, property, params) { function NumberControllerBox(object, property, params) {
this.__truncationSuspended = false; this.__truncationSuspended = false;
@ -102,11 +102,11 @@ define([
this.domElement.appendChild(this.__input); this.domElement.appendChild(this.__input);
}; }
NumberControllerBox.superclass = NumberController; NumberControllerBox.superclass = NumberController;
common.extend( common.extend(
NumberControllerBox.prototype, NumberControllerBox.prototype,
NumberController.prototype, NumberController.prototype,
@ -121,14 +121,9 @@ define([
} }
); );
function roundToDecimal(value, decimals) { function roundToDecimal(value, decimals) {
var tenTo = Math.pow(10, decimals); var tenTo = Math.pow(10, decimals);
return Math.round(value * tenTo) / tenTo; return Math.round(value * tenTo) / tenTo;
} }
return NumberControllerBox;
});

View File

@ -11,16 +11,15 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var NumberController = require('./NumberController.js');
'dat/controllers/NumberController', var common = require('../utils/common.js');
'dat/dom/dom', var dom = require('../dom/dom.js');
'dat/utils/css', var css = require('../utils/css.js');
'dat/utils/common', var fs = require('fs');
'text!dat/controllers/NumberControllerSlider.css' var styleSheet = fs.readFileSync(__dirname + '/NumberControllerSlider.css', 'utf8');
], module.exports = NumberControllerSlider;
function(NumberController, dom, css, common, styleSheet) {
/** /**
* @class Represents a given property of an object that is a number, contains * @class Represents a given property of an object that is a number, contains
* a minimum and maximum, and provides a slider element with which to * a minimum and maximum, and provides a slider element with which to
* manipulate it. It should be noted that the slider element is made up of * manipulate it. It should be noted that the slider element is made up of
@ -38,9 +37,13 @@ function(NumberController, dom, css, common, styleSheet) {
* *
* @member dat.controllers * @member dat.controllers
*/ */
var NumberControllerSlider = function(object, property, min, max, step) { function NumberControllerSlider(object, property, min, max, step) {
NumberControllerSlider.superclass.call(this, object, property, { min: min, max: max, step: step }); NumberControllerSlider.superclass.call(this, object, property, {
min: min,
max: max,
step: step
});
var _this = this; var _this = this;
@ -90,18 +93,18 @@ function(NumberController, dom, css, common, styleSheet) {
this.__background.appendChild(this.__foreground); this.__background.appendChild(this.__foreground);
this.domElement.appendChild(this.__background); this.domElement.appendChild(this.__background);
}; }
NumberControllerSlider.superclass = NumberController; NumberControllerSlider.superclass = NumberController;
/** /**
* Injects default stylesheet for slider elements. * Injects default stylesheet for slider elements.
*/ */
NumberControllerSlider.useDefaultStyles = function() { NumberControllerSlider.useDefaultStyles = function() {
css.inject(styleSheet); css.inject(styleSheet);
}; };
common.extend( common.extend(
NumberControllerSlider.prototype, NumberControllerSlider.prototype,
NumberController.prototype, NumberController.prototype,
@ -109,8 +112,8 @@ function(NumberController, dom, css, common, styleSheet) {
{ {
updateDisplay: function() { updateDisplay: function() {
var pct = (this.getValue() - this.__min)/(this.__max - this.__min); var pct = (this.getValue() - this.__min) / (this.__max - this.__min);
this.__foreground.style.width = pct*100+'%'; this.__foreground.style.width = pct * 100 + '%';
return NumberControllerSlider.superclass.prototype.updateDisplay.call(this); return NumberControllerSlider.superclass.prototype.updateDisplay.call(this);
} }
@ -118,12 +121,8 @@ function(NumberController, dom, css, common, styleSheet) {
); );
function map(v, i1, i2, o1, o2) { function map(v, i1, i2, o1, o2) {
return o1 + (o2 - o1) * ((v - i1) / (i2 - i1)); return o1 + (o2 - o1) * ((v - i1) / (i2 - i1));
} }
return NumberControllerSlider;
});

View File

@ -11,14 +11,13 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var Controller = require('./Controller.js');
'dat/controllers/Controller', var dom = require('../dom/dom.js');
'dat/dom/dom', var common = require('../utils/common.js');
'dat/utils/common'
],
function(Controller, dom, common) {
/** module.exports = OptionController;
/**
* @class Provides a select input to alter the property of an object, using a * @class Provides a select input to alter the property of an object, using a
* list of accepted values. * list of accepted values.
* *
@ -31,7 +30,7 @@ function(Controller, dom, common) {
* *
* @member dat.controllers * @member dat.controllers
*/ */
var OptionController = function(object, property, options) { function OptionController(object, property, options) {
OptionController.superclass.call(this, object, property); OptionController.superclass.call(this, object, property);
@ -70,11 +69,11 @@ function(Controller, dom, common) {
this.domElement.appendChild(this.__select); this.domElement.appendChild(this.__select);
}; }
OptionController.superclass = Controller; OptionController.superclass = Controller;
common.extend( common.extend(
OptionController.prototype, OptionController.prototype,
Controller.prototype, Controller.prototype,
@ -96,8 +95,4 @@ function(Controller, dom, common) {
} }
); );
return OptionController;
});

View File

@ -11,13 +11,13 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var Controller = require('./Controller.js');
'dat/controllers/Controller', var dom = require('../dom/dom.js');
'dat/dom/dom', var common = require('../utils/common.js');
'dat/utils/common'
], function(Controller, dom, common) {
/** module.exports = StringController;
/**
* @class Provides a text input to alter the string property of an object. * @class Provides a text input to alter the string property of an object.
* *
* @extends dat.controllers.Controller * @extends dat.controllers.Controller
@ -27,7 +27,7 @@ define([
* *
* @member dat.controllers * @member dat.controllers
*/ */
var StringController = function(object, property) { function StringController(object, property) {
StringController.superclass.call(this, object, property); StringController.superclass.call(this, object, property);
@ -60,11 +60,11 @@ define([
this.domElement.appendChild(this.__input); this.domElement.appendChild(this.__input);
}; };
StringController.superclass = Controller; StringController.superclass = Controller;
common.extend( common.extend(
StringController.prototype, StringController.prototype,
Controller.prototype, Controller.prototype,
@ -82,8 +82,4 @@ define([
} }
); );
return StringController;
});

View File

@ -10,19 +10,17 @@
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
var OptionController = require('./OptionController.js');
var NumberControllerBox = require('./NumberControllerBox.js');
var NumberControllerSlider = require('./NumberControllerSlider.js');
var StringController = require('./StringController.js');
var FunctionController = require('./FunctionController.js');
var BooleanController = require('./BooleanController.js');
var common = require('../utils/common.js');
define([ module.exports = factory;
'dat/controllers/OptionController',
'dat/controllers/NumberControllerBox',
'dat/controllers/NumberControllerSlider',
'dat/controllers/StringController',
'dat/controllers/FunctionController',
'dat/controllers/BooleanController',
'dat/utils/common'
],
function(OptionController, NumberControllerBox, NumberControllerSlider, StringController, FunctionController, BooleanController, common) {
return function(object, property) { function factory(object, property) {
var initialValue = object[property]; var initialValue = object[property];
@ -42,7 +40,10 @@ define([
} else { } else {
return new NumberControllerBox(object, property, { min: arguments[2], max: arguments[3] }); return new NumberControllerBox(object, property, {
min: arguments[2],
max: arguments[3]
});
} }
@ -60,6 +61,4 @@ define([
return new BooleanController(object, property); return new BooleanController(object, property);
} }
} }
});

View File

@ -11,13 +11,12 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var common = require('../utils/common.js');
'dat/dom/dom', var dom = require('./dom.js');
'dat/utils/common'
], function(dom, common) {
module.exports = CenteredDiv;
var CenteredDiv = function() { function CenteredDiv() {
this.backgroundElement = document.createElement('div'); this.backgroundElement = document.createElement('div');
common.extend(this.backgroundElement.style, { common.extend(this.backgroundElement.style, {
@ -54,9 +53,9 @@ define([
}); });
}; };
CenteredDiv.prototype.show = function() { CenteredDiv.prototype.show = function() {
var _this = this; var _this = this;
@ -64,7 +63,7 @@ define([
this.domElement.style.display = 'block'; this.domElement.style.display = 'block';
this.domElement.style.opacity = 0; this.domElement.style.opacity = 0;
// this.domElement.style.top = '52%'; // this.domElement.style.top = '52%';
this.domElement.style.webkitTransform = 'scale(1.1)'; this.domElement.style.webkitTransform = 'scale(1.1)';
this.layout(); this.layout();
@ -75,9 +74,9 @@ define([
_this.domElement.style.webkitTransform = 'scale(1)'; _this.domElement.style.webkitTransform = 'scale(1)';
}); });
}; };
CenteredDiv.prototype.hide = function() { CenteredDiv.prototype.hide = function() {
var _this = this; var _this = this;
@ -97,21 +96,17 @@ define([
dom.bind(this.domElement, 'oTransitionEnd', hide); dom.bind(this.domElement, 'oTransitionEnd', hide);
this.backgroundElement.style.opacity = 0; this.backgroundElement.style.opacity = 0;
// this.domElement.style.top = '48%'; // this.domElement.style.top = '48%';
this.domElement.style.opacity = 0; this.domElement.style.opacity = 0;
this.domElement.style.webkitTransform = 'scale(1.1)'; this.domElement.style.webkitTransform = 'scale(1.1)';
}; };
CenteredDiv.prototype.layout = function() { CenteredDiv.prototype.layout = function() {
this.domElement.style.left = window.innerWidth/2 - dom.getWidth(this.domElement) / 2 + 'px'; this.domElement.style.left = window.innerWidth / 2 - dom.getWidth(this.domElement) / 2 + 'px';
this.domElement.style.top = window.innerHeight/2 - dom.getHeight(this.domElement) / 2 + 'px'; this.domElement.style.top = window.innerHeight / 2 - dom.getHeight(this.domElement) / 2 + 'px';
}; };
function lockScroll(e) { function lockScroll(e) {
console.log(e); console.log(e);
} }
return CenteredDiv;
});

View File

@ -11,26 +11,24 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ var common = require('../utils/common.js');
'dat/utils/common'
], function(common) {
var EVENT_MAP = { var EVENT_MAP = {
'HTMLEvents': ['change'], 'HTMLEvents': ['change'],
'MouseEvents': ['click','mousemove','mousedown','mouseup', 'mouseover'], 'MouseEvents': ['click', 'mousemove', 'mousedown', 'mouseup', 'mouseover'],
'KeyboardEvents': ['keydown'] 'KeyboardEvents': ['keydown']
}; };
var EVENT_MAP_INV = {}; var EVENT_MAP_INV = {};
common.each(EVENT_MAP, function(v, k) { common.each(EVENT_MAP, function(v, k) {
common.each(v, function(e) { common.each(v, function(e) {
EVENT_MAP_INV[e] = k; EVENT_MAP_INV[e] = k;
}); });
}); });
var CSS_VALUE_PIXELS = /(\d+(\.\d+)?)px/; var CSS_VALUE_PIXELS = /(\d+(\.\d+)?)px/;
function cssValueToPixels(val) { function cssValueToPixels(val) {
if (val === '0' || common.isUndefined(val)) return 0; if (val === '0' || common.isUndefined(val)) return 0;
@ -44,13 +42,13 @@ define([
return 0; return 0;
} }
/** /**
* @namespace * @namespace
* @member dat.dom * @member dat.dom
*/ */
var dom = { var dom = {
/** /**
* *
@ -63,8 +61,7 @@ define([
elem.onselectstart = selectable ? function() { elem.onselectstart = selectable ? function() {
return false; return false;
} : function() { } : function() {};
};
elem.style.MozUserSelect = selectable ? 'auto' : 'none'; elem.style.MozUserSelect = selectable ? 'auto' : 'none';
elem.style.KhtmlUserSelect = selectable ? 'auto' : 'none'; elem.style.KhtmlUserSelect = selectable ? 'auto' : 'none';
@ -261,7 +258,10 @@ define([
* @param elem * @param elem
*/ */
getOffset: function(elem) { getOffset: function(elem) {
var offset = {left: 0, top:0}; var offset = {
left: 0,
top: 0
};
if (elem.offsetParent) { if (elem.offsetParent) {
do { do {
offset.left += elem.offsetLeft; offset.left += elem.offsetLeft;
@ -277,11 +277,9 @@ define([
* @param elem * @param elem
*/ */
isActive: function(elem) { isActive: function(elem) {
return elem === document.activeElement && ( elem.type || elem.href ); return elem === document.activeElement && (elem.type || elem.href);
} }
}; };
return dom; module.exports = dom;
});

View File

@ -10,31 +10,28 @@
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
var fs = require('fs');
var css = require('../utils/css.js');
define([ var saveDialogueContents = fs.readFileSync(__dirname + '/saveDialogue.html', 'utf8');
var styleSheet = fs.readFileSync(__dirname + '/style.css', 'utf8');
'dat/utils/css', var controllerFactory = require('../controllers/factory.js');
var Controller = require('../controllers/Controller.js');
var BooleanController = require('../controllers/BooleanController.js');
var FunctionController = require('../controllers/FunctionController.js');
var NumberControllerBox = require('../controllers/NumberControllerBox.js');
var NumberControllerSlider = require('../controllers/NumberControllerSlider.js');
var ColorController = require('../controllers/ColorController.js');
'text!dat/gui/saveDialogue.html', var raf = require('../utils/requestAnimationFrame.js');
'text!dat/gui/style.css', var CenteredDiv = require('../dom/CenteredDiv.js');
var dom = require('../dom/dom.js');
var common = require('../utils/common.js');
'dat/controllers/factory', module.exports = createGUI();
'dat/controllers/Controller',
'dat/controllers/BooleanController',
'dat/controllers/FunctionController',
'dat/controllers/NumberControllerBox',
'dat/controllers/NumberControllerSlider',
'dat/controllers/OptionController',
'dat/controllers/ColorController',
'dat/utils/requestAnimationFrame', function createGUI() {
'dat/dom/CenteredDiv',
'dat/dom/dom',
'dat/utils/common'
], function(css, saveDialogueContents, styleSheet, controllerFactory, Controller, BooleanController, FunctionController, NumberControllerBox, NumberControllerSlider, OptionController, ColorController, requestAnimationFrame, CenteredDiv, dom, common) {
css.inject(styleSheet); css.inject(styleSheet);
@ -156,7 +153,9 @@ define([
} else { } else {
params.load = { preset: DEFAULT_DEFAULT_PRESET_NAME }; params.load = {
preset: DEFAULT_DEFAULT_PRESET_NAME
};
} }
@ -171,7 +170,7 @@ define([
if (params.autoPlace && common.isUndefined(params.scrollable)) { if (params.autoPlace && common.isUndefined(params.scrollable)) {
params.scrollable = true; params.scrollable = true;
} }
// params.scrollable = common.isUndefined(params.parent) && params.scrollable === true; // params.scrollable = common.isUndefined(params.parent) && params.scrollable === true;
// Not part of params because I don't want people passing this in via // Not part of params because I don't want people passing this in via
// constructor. Should be a 'remembered' value. // constructor. Should be a 'remembered' value.
@ -425,10 +424,18 @@ define([
} }
dom.bind(window, 'resize', function() { _this.onResize() }); dom.bind(window, 'resize', function() {
dom.bind(this.__ul, 'webkitTransitionEnd', function() { _this.onResize(); }); _this.onResize()
dom.bind(this.__ul, 'transitionend', function() { _this.onResize() }); });
dom.bind(this.__ul, 'oTransitionEnd', function() { _this.onResize() }); dom.bind(this.__ul, 'webkitTransitionEnd', function() {
_this.onResize();
});
dom.bind(this.__ul, 'transitionend', function() {
_this.onResize()
});
dom.bind(this.__ul, 'oTransitionEnd', function() {
_this.onResize()
});
this.onResize(); this.onResize();
@ -436,7 +443,7 @@ define([
addResizeHandle(this); addResizeHandle(this);
} }
saveToLocalStorage = function () { saveToLocalStorage = function() {
if (SUPPORTS_LOCAL_STORAGE && localStorage.getItem(getLocalStorageHash(_this, 'isLocal')) === 'true') { if (SUPPORTS_LOCAL_STORAGE && localStorage.getItem(getLocalStorageHash(_this, 'isLocal')) === 'true') {
localStorage.setItem(getLocalStorageHash(_this, 'gui'), JSON.stringify(_this.getSaveObject())); localStorage.setItem(getLocalStorageHash(_this, 'gui'), JSON.stringify(_this.getSaveObject()));
} }
@ -446,6 +453,7 @@ define([
this.saveToLocalStorageIfPossible = saveToLocalStorage; this.saveToLocalStorageIfPossible = saveToLocalStorage;
var root = _this.getRoot(); var root = _this.getRoot();
function resetWidth() { function resetWidth() {
var root = _this.getRoot(); var root = _this.getRoot();
root.width += 1; root.width += 1;
@ -509,8 +517,7 @@ define([
return add( return add(
this, this,
object, object,
property, property, {
{
factoryArgs: Array.prototype.slice.call(arguments, 2) factoryArgs: Array.prototype.slice.call(arguments, 2)
} }
); );
@ -528,8 +535,7 @@ define([
return add( return add(
this, this,
object, object,
property, property, {
{
color: true color: true
} }
); );
@ -576,7 +582,10 @@ define([
' name "' + name + '"'); ' name "' + name + '"');
} }
var new_gui_params = { name: name, parent: this }; var new_gui_params = {
name: name,
parent: this
};
// We need to pass down the autoPlace trait so that we can // We need to pass down the autoPlace trait so that we can
// attach event listeners to open/close folder actions to // attach event listeners to open/close folder actions to
@ -624,7 +633,7 @@ define([
var h = 0; var h = 0;
common.each(root.__ul.childNodes, function(node) { common.each(root.__ul.childNodes, function(node) {
if (! (root.autoPlace && node === root.__save_row)) if (!(root.autoPlace && node === root.__save_row))
h += dom.getHeight(node); h += dom.getHeight(node);
}); });
@ -810,7 +819,7 @@ define([
} else { } else {
var factoryArgs = [object,property].concat(params.factoryArgs); var factoryArgs = [object, property].concat(params.factoryArgs);
controller = controllerFactory.apply(gui, factoryArgs); controller = controllerFactory.apply(gui, factoryArgs);
} }
@ -878,8 +887,7 @@ define([
return add( return add(
gui, gui,
controller.object, controller.object,
controller.property, controller.property, {
{
before: controller.__li.nextElementSibling, before: controller.__li.nextElementSibling,
factoryArgs: [common.toArray(arguments)] factoryArgs: [common.toArray(arguments)]
} }
@ -893,8 +901,7 @@ define([
return add( return add(
gui, gui,
controller.object, controller.object,
controller.property, controller.property, {
{
before: controller.__li.nextElementSibling, before: controller.__li.nextElementSibling,
factoryArgs: [options] factoryArgs: [options]
} }
@ -924,8 +931,11 @@ define([
// All sliders should be accompanied by a box. // All sliders should be accompanied by a box.
if (controller instanceof NumberControllerSlider) { if (controller instanceof NumberControllerSlider) {
var box = new NumberControllerBox(controller.object, controller.property, var box = new NumberControllerBox(controller.object, controller.property, {
{ min: controller.__min, max: controller.__max, step: controller.__step }); min: controller.__min,
max: controller.__max,
step: controller.__step
});
common.each(['updateDisplay', 'onChange', 'onFinishChange'], function(method) { common.each(['updateDisplay', 'onChange', 'onFinishChange'], function(method) {
var pc = controller[method]; var pc = controller[method];
@ -940,8 +950,7 @@ define([
dom.addClass(li, 'has-slider'); dom.addClass(li, 'has-slider');
controller.domElement.insertBefore(box.domElement, controller.domElement.firstElementChild); controller.domElement.insertBefore(box.domElement, controller.domElement.firstElementChild);
} } else if (controller instanceof NumberControllerBox) {
else if (controller instanceof NumberControllerBox) {
var r = function(returned) { var r = function(returned) {
@ -953,8 +962,7 @@ define([
return add( return add(
gui, gui,
controller.object, controller.object,
controller.property, controller.property, {
{
before: controller.__li.nextElementSibling, before: controller.__li.nextElementSibling,
factoryArgs: [controller.__min, controller.__max, controller.__step] factoryArgs: [controller.__min, controller.__max, controller.__step]
}); });
@ -968,8 +976,7 @@ define([
controller.min = common.compose(r, controller.min); controller.min = common.compose(r, controller.min);
controller.max = common.compose(r, controller.max); controller.max = common.compose(r, controller.max);
} } else if (controller instanceof BooleanController) {
else if (controller instanceof BooleanController) {
dom.bind(li, 'click', function() { dom.bind(li, 'click', function() {
dom.fakeEvent(controller.__checkbox, 'click'); dom.fakeEvent(controller.__checkbox, 'click');
@ -979,8 +986,7 @@ define([
e.stopPropagation(); // Prevents double-toggle e.stopPropagation(); // Prevents double-toggle
}) })
} } else if (controller instanceof FunctionController) {
else if (controller instanceof FunctionController) {
dom.bind(li, 'click', function() { dom.bind(li, 'click', function() {
dom.fakeEvent(controller.__button, 'click'); dom.fakeEvent(controller.__button, 'click');
@ -994,8 +1000,7 @@ define([
dom.removeClass(controller.__button, 'hover'); dom.removeClass(controller.__button, 'hover');
}); });
} } else if (controller instanceof ColorController) {
else if (controller instanceof ColorController) {
dom.addClass(li, 'color'); dom.addClass(li, 'color');
controller.updateDisplay = common.compose(function(r) { controller.updateDisplay = common.compose(function(r) {
@ -1210,7 +1215,7 @@ define([
gui.revert(); gui.revert();
}); });
// div.appendChild(button2); // div.appendChild(button2);
} }
@ -1225,7 +1230,7 @@ define([
height: '200px', height: '200px',
cursor: 'ew-resize', cursor: 'ew-resize',
position: 'absolute' position: 'absolute'
// border: '1px solid blue' // border: '1px solid blue'
}); });
@ -1278,7 +1283,8 @@ define([
// set the width manually if we want it to bleed to the edge // set the width manually if we want it to bleed to the edge
if (gui.__save_row && gui.autoPlace) { if (gui.__save_row && gui.autoPlace) {
gui.__save_row.style.width = w + 'px'; gui.__save_row.style.width = w + 'px';
}if (gui.__closeButton) { }
if (gui.__closeButton) {
gui.__closeButton.style.width = w + 'px'; gui.__closeButton.style.width = w + 'px';
} }
} }
@ -1330,7 +1336,7 @@ define([
function markPresetModified(gui, modified) { function markPresetModified(gui, modified) {
var opt = gui.__preset_select[gui.__preset_select.selectedIndex]; var opt = gui.__preset_select[gui.__preset_select.selectedIndex];
// console.log('mark', modified, opt); // console.log('mark', modified, opt);
if (modified) { if (modified) {
opt.innerHTML = opt.value + "*"; opt.innerHTML = opt.value + "*";
} else { } else {
@ -1343,7 +1349,7 @@ define([
if (controllerArray.length != 0) { if (controllerArray.length != 0) {
requestAnimationFrame(function() { raf(function() {
updateDisplays(controllerArray); updateDisplays(controllerArray);
}); });
@ -1356,5 +1362,4 @@ define([
} }
return GUI; return GUI;
}
});

View File

@ -11,8 +11,9 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
define([ module.exports = common();
], function() {
function common() {
var ARR_EACH = Array.prototype.forEach; var ARR_EACH = Array.prototype.forEach;
var ARR_SLICE = Array.prototype.slice; var ARR_SLICE = Array.prototype.slice;
@ -63,7 +64,7 @@ define([
args = [toCall[i].apply(this, args)]; args = [toCall[i].apply(this, args)];
} }
return args[0]; return args[0];
} };
}, },
each: function(obj, itr, scope) { each: function(obj, itr, scope) {
@ -136,5 +137,4 @@ define([
} }
}; };
}
});

View File

@ -10,9 +10,9 @@
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
module.exports = css();
define([], function css() {
function() {
return { return {
load: function (url, doc) { load: function (url, doc) {
doc = doc || document; doc = doc || document;
@ -29,5 +29,5 @@ function() {
injected.innerHTML = css; injected.innerHTML = css;
doc.getElementsByTagName('head')[0].appendChild(injected); doc.getElementsByTagName('head')[0].appendChild(injected);
} }
} };
}); }

View File

@ -10,9 +10,9 @@
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
*/ */
module.exports = raf();
define([ function raf() {
], function() {
/** /**
* requirejs version of Paul Irish's RequestAnimationFrame * requirejs version of Paul Irish's RequestAnimationFrame
@ -28,4 +28,4 @@ define([
window.setTimeout(callback, 1000 / 60); window.setTimeout(callback, 1000 / 60);
}; };
}); }

38
src/index.js Normal file
View File

@ -0,0 +1,38 @@
/** @license
* dat-gui JavaScript Controller Library
* http://code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team, Google Creative Lab
* Copyright 2015 Andrei Kashcha
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
module.exports = {
color: {
math: require('./dat/color/math.js'),
interpret: require('./dat/color/interpret.js'),
Color: require('./dat/color/Color.js')
},
dom: {
dom: require('./dat/dom/dom.js')
},
controllers: {
Controller: require('./dat/controllers/Controller.js'),
BooleanController: require('./dat/controllers/BooleanController.js'),
OptionController: require('./dat/controllers/OptionController.js'),
StringController: require('./dat/controllers/StringController.js'),
NumberController: require('./dat/controllers/NumberController.js'),
NumberControllerBox: require('./dat/controllers/NumberControllerBox.js'),
NumberControllerSlider: require('./dat/controllers/NumberControllerSlider.js'),
FunctionController: require('./dat/controllers/FunctionController.js'),
ColorController: require('./dat/controllers/ColorController.js'),
},
gui: {
GUI: require('./dat/gui/GUI.js')
},
GUI: require('./dat/gui/GUI.js')
};

View File

@ -1,19 +0,0 @@
var builder = require('./builder.js');
builder.build({
"baseUrl": "../src/",
"main": "dat/gui/GUI",
"out": "../build/dat.gui.js",
"minify": false,
"shortcut": "dat.GUI",
"paths": {}
});
builder.build({
"baseUrl": "../src/",
"main": "dat/gui/GUI",
"out": "../build/dat.gui.min.js",
"minify": true,
"shortcut": "dat.GUI",
"paths": {}
});

View File

@ -1,8 +0,0 @@
require('./builder.js').build({
"baseUrl": "../src/",
"main": "dat/color/Color",
"out": "../build/dat.color.js",
"minify": false,
"shortcut": "dat.Color",
"paths": {}
});

View File

@ -1,8 +0,0 @@
require('./builder.js').build({
"baseUrl": "../src/",
"main": "dat/gui/GUI",
"out": "../build/dat.gui.js",
"minify": false,
"shortcut": "dat.GUI",
"paths": {}
});

View File

@ -1,284 +0,0 @@
/**
* dat-gui JavaScript Controller Library
* http://code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team, Google Creative Lab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
var fs = require('fs'),
closure = require('./closure'),
params,
defined,
third_party,
request_counts,
namespaces,
next_load = '',
next_path = '';
exports.build = build;
exports.file_exists = file_exists;
exports.read_file = read_file;
exports.tab = tab;
exports.license = read_file('license.txt');
function build(_params) {
params = _params;
defined = {};
third_party = {};
request_counts = {};
namespaces = {};
var deps = [];
load_module(params.baseUrl + params.main + '.js', params.main);
for (var i in defined) {
if (params.verbose) console.log('Loaded: ' + defined[i].path);
deps.push(defined[i].path);
if (defined[i].module) {
var namespace = i.substr(0, i.lastIndexOf('/'));
namespaces[namespace] = true;
}
}
var to_write = '';
var ensured = {};
for (var name in params.paths) {
var path = params.baseUrl + params.paths[name] + '.js';
var str = read_file(path);
if (str === false) {
console.log('Failed to locate dependency \'' + name + '\' at ' + path);
fail();
}
third_party[name] = str;
to_write += third_party[name] + "\n\n";
if (params.verbose) console.log('Loaded: ' + path);
//deps.push(path);
}
// Ensure namespaces
for (i in namespaces) {
var split = i.split('/');
for (var j = 0; j < split.length; j++) {
var cur = [];
if (j == 0 && !ensured[split[j]]) {
to_write += '/** @namespace */\n';
to_write += 'var ' + split[j] + ' = ' + split[j] + ' || {};\n\n';
ensured[split[j]] = true;
} else {
for (var k = 0; k <= j; k++) {
cur.push(split[k]);
}
var curn = cur.join('.');
if (!ensured[curn]) {
to_write += '/** @namespace */\n';
to_write += curn + ' = ' + curn + ' || {};\n\n';
}
ensured[curn] = true;
}
}
}
var shared_count = 0;
for (i in request_counts) {
var count = request_counts[i];
if (count > 1) {
if (i in defined) {
var new_shared = i.replace(/\//g, '.');
var v = new_shared + ' = ' + defined[i].getClosure() + ';\n';
to_write += v + "\n\n";
defined[i].shared = new_shared;
shared_count++;
}
}
}
to_write += params.shortcut + ' = ' + params.main.replace(/\//g, '.') + ' = ' + defined[params.main].getClosure() + ';';
if (params.verbose) console.log('Exported: ' + params.main + ' to window.' + params.shortcut);
if (params.minify) {
console.log('Compiling minified source ...');
closure.compile(to_write, function(error, code) {
if (error) {
console.log(error);
} else {
write(exports.license + code);
}
if (params.on_compile) {
params.on_compile();
}
});
} else {
write(exports.license + "\n" + to_write);
}
return deps;
}
function define(deps, callback) {
this.name = next_load;
this.path = next_path;
this.shared = false;
defined[this.name] = this;
if (Array.isArray(deps)) {
this.deps = deps;
this.callback = callback.toString();
this.module = true;
// Simple define call, just an object
} else if (typeof deps === 'object') {
var props = [];
for (var i in deps) {
props.push(i + ':' + deps[i].toString())
}
this.callback = '{' + props.join(',') + '}';
this.module = true;
} else {
this.deps = deps;
this.callback = callback;
}
this.getClosure = function() {
if (this.shared) return this.shared;
if (!this.deps || this.text) return this.callback;
var arg_string = '(';
var args = [];
for (var i in this.deps) {
var dep = this.deps[i];
if (dep in defined) {
var closure = defined[dep].getClosure();
if (!defined[dep].shared && !defined[dep].text) {
closure = defined[dep].name.replace(/\//g, '.') + ' = ' + closure;
}
args.push(closure);
}
}
arg_string += args.join(',\n');
arg_string += ')';
return '(' + this.callback + ')' + arg_string;
};
this.recurseDeps = function() {
if (!this.deps) return;
for (var i in this.deps) {
var dep = this.deps[i];
if (dep in params.paths) continue;
var path = params.baseUrl + dep;
// Define module?
if (file_exists(path + '.js')) {
load_module(path + '.js', dep);
// Text module?
} else if (path.match(/text!/) != null) {
load_text(path.replace('text!', ''), dep);
}
// up the request count
if (dep in request_counts) {
request_counts[dep]++
} else {
request_counts[dep] = 1;
}
}
};
this.recurseDeps();
}
function file_exists(path) {
try {
var stats = fs.lstatSync(path)
return stats.isFile();
} catch (e) {
return false;
}
}
function read_file(path) {
try {
return fs.readFileSync(path).toString();
} catch (e) {
return false;
}
}
function load_module(path, name) {
name = name || path;
if (name in defined) return;
next_load = name;
next_path = path;
eval('new ' + read_file(path));
}
function load_text(path, name) {
name = name || path;
if (name in defined) return;
var text = read_file(path);
text = text.replace(/\r/g, "\\r");
text = text.replace(/\n/g, "\\n");
text = text.replace(/"/g, "\\\"");
next_load = name;
next_path = path;
var d = new define([], '"' + text + '"');
d.text = true;
d.module = false;
}
function tab(str, tabs) {
var lines = str.split("\n");
for (var i in lines) {
lines[i] = tabs + lines[i];
}
return lines.join("\n");
}
function write(str) {
fs.writeFile(params.out, str);
console.log('Saved to ' + params.out);
}
function fail() {
console.log('Build failed.');
process.exit(0);
}

View File

@ -1,108 +0,0 @@
/// # Google Closure Compiler Service #
/// https://github.com/weaver/scribbles/blob/master/node/google-closure/lib/closure.js
/// Compress javascript with Node.js using the Closure Compiler
/// Service.
var sys = require('sys');
exports.compile = compile;
// Use the Google Closure Compiler Service to compress Javascript
// code.
//
// + code - String of javascript to compress
// + next - Function callback that accepts.
//
// This method will POST the `code` to the compiler service. If an
// error occurs, `next()` will be called with an `Error` object as the
// first argument. Otherwise, the `next()` will be called with `null`
// as the first argument and a String of compressed javascript as the
// second argument.
//
// compile('... javascript ...', function(err, result) {
// if (err) throw err;
//
// ... do something with result ...
// });
//
// Returns nothing.
function compile(code, next) {
try {
var qs = require('querystring'),
http = require('http'),
host = 'closure-compiler.appspot.com',
body = qs.stringify({
js_code: code.toString('utf-8'),
compilation_level: 'SIMPLE_OPTIMIZATIONS',
output_format: 'json',
output_info: 'compiled_code'
}),
client = http.createClient(80, host).on('error', next),
req = client.request('POST', '/compile', {
'Host': host,
'Content-Length': body.length,
'Content-Type': 'application/x-www-form-urlencoded'
});
req.on('error', next).end(body);
req.on('response', function(res) {
if (res.statusCode != 200)
next(new Error('Unexpected HTTP response: ' + res.statusCode));
else
capture(res, 'utf-8', parseResponse);
});
function parseResponse(err, data) {
err ? next(err) : loadJSON(data, function(err, obj) {
var error;
if (err)
next(err);
else if ((error = obj.errors || obj.serverErrors || obj.warnings))
next(new Error('Failed to compile: ' + sys.inspect(error)));
else
next(null, obj.compiledCode);
});
}
} catch (err) {
next(err);
}
}
// Convert a Stream to a String.
//
// + input - Stream object
// + encoding - String input encoding
// + next - Function error/success callback
//
// Returns nothing.
function capture(input, encoding, next) {
var buffer = '';
input.on('data', function(chunk) {
buffer += chunk.toString(encoding);
});
input.on('end', function() {
next(null, buffer);
});
input.on('error', next);
}
// Convert JSON.load() to callback-style.
//
// + data - String value to load
// + next - Function error/success callback
//
// Returns nothing.
function loadJSON(data, next) {
var err, obj;
try {
obj = JSON.parse(data);
} catch (x) {
err = x;
}
next(err, obj);
}

View File

@ -1,12 +0,0 @@
/**
* dat-gui JavaScript Controller Library
* http://code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team, Google Creative Lab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/