1

Removing dependancy on closurelibrary

This commit is contained in:
Alex Yatskov 2014-09-27 10:05:48 +09:00
parent 7f0939a605
commit bf0faad5ed
3 changed files with 86 additions and 26 deletions

View File

@ -14,7 +14,6 @@
], ],
"dependencies": { "dependencies": {
"bootstrap": "~3.2.0", "bootstrap": "~3.2.0",
"closurelibrary": "*",
"fabric": "~1.4.8", "fabric": "~1.4.8",
"handlebars": "~1.3.0", "handlebars": "~1.3.0",
"underscore": "~1.6.0", "underscore": "~1.6.0",

View File

@ -163,7 +163,6 @@
<script src="bower_components/underscore/underscore.js"></script> <script src="bower_components/underscore/underscore.js"></script>
<script src="bower_components/handlebars/handlebars.min.js"></script> <script src="bower_components/handlebars/handlebars.min.js"></script>
<script src="bower_components/closurelibrary/closure/goog/base.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script> <script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/fabric/dist/fabric.min.js"></script> <script src="bower_components/fabric/dist/fabric.min.js"></script>

View File

@ -1,9 +1,77 @@
'use strict'; 'use strict';
goog.require('goog.math');
goog.require('goog.math.Coordinate'); //
goog.require('goog.math.Range'); // Coord
goog.require('goog.math.Rect'); //
function Coord(x, y) {
this.x = x;
this.y = y;
}
//
// Rect
//
function Rect(left, top, width, height) {
this.left = left;
this.top = top;
this.width = width;
this.height = height;
this.right = left + width;
this.bottom = top + height;
this.contains = function(coord) {
var contained =
coord.x >= this.left &&
coord.x < this.right &&
coord.y >= this.top &&
coord.y < this.bottom;
return contained;
};
this.intersection = function(rect) {
var left = Math.max(this.left, rect.left);
var top = Math.max(this.top, rect.top);
var right = Math.min(this.right, rect.right);
var bottom = Math.min(this.bottom, rect.bottom);
return new Rect(left, top, right - left, bottom - top);
};
}
//
// Range
//
function Range(start, end) {
this.start = start;
this.end = end;
this.containsPoint = function(value) {
return value >= this.start && value <= this.end;
};
this.getLength = function() {
return this.end - this.start;
};
this.clamp = function(value) {
if (value < this.start) {
return this.start;
}
if (value > this.end) {
return this.end;
}
return value;
}
}
// //
@ -85,7 +153,7 @@ function Column(canvas, name, params, scale, range, bounds) {
fill: this.getHandleColor() fill: this.getHandleColor()
}); });
if (final && goog.math.Range.containsPoint(this.range, 0.0)) { if (final && this.range.containsPoint(0.0)) {
var y = this.getPosFromValue(0.0); var y = this.getPosFromValue(0.0);
var p = [this.bounds.left, y, this.bounds.left + this.tickLength, y]; var p = [this.bounds.left, y, this.bounds.left + this.tickLength, y];
this.updateLine('baseline', p, { this.updateLine('baseline', p, {
@ -174,7 +242,7 @@ function Column(canvas, name, params, scale, range, bounds) {
} }
this.setClampedValue = function(value, final) { this.setClampedValue = function(value, final) {
this.value = goog.math.clamp(value, this.range.start, this.range.end); this.value = this.range.clamp(value);
this.updateShapes(final); this.updateShapes(final);
if (this.onValueChanged && final) { if (this.onValueChanged && final) {
@ -189,7 +257,7 @@ function Column(canvas, name, params, scale, range, bounds) {
} }
this.getLabelBounds = function(bounds) { this.getLabelBounds = function(bounds) {
return new goog.math.Rect( return new Rect(
bounds.left, bounds.left,
bounds.top + bounds.height, bounds.top + bounds.height,
bounds.width, bounds.width,
@ -198,7 +266,7 @@ function Column(canvas, name, params, scale, range, bounds) {
} }
this.getColumnBounds = function(bounds) { this.getColumnBounds = function(bounds) {
return new goog.math.Rect( return new Rect(
bounds.left + this.tickLength, bounds.left + this.tickLength,
bounds.top, bounds.top,
bounds.width - this.tickLength, bounds.width - this.tickLength,
@ -207,7 +275,7 @@ function Column(canvas, name, params, scale, range, bounds) {
} }
this.getHintBounds = function(bounds) { this.getHintBounds = function(bounds) {
return new goog.math.Rect( return new Rect(
bounds.left + bounds.width - this.hintSize, bounds.left + bounds.width - this.hintSize,
bounds.top, bounds.top,
this.hintSize, this.hintSize,
@ -218,7 +286,7 @@ function Column(canvas, name, params, scale, range, bounds) {
this.getFillBounds = function(bounds) { this.getFillBounds = function(bounds) {
var y1 = this.getPosFromValue(0.0); var y1 = this.getPosFromValue(0.0);
var y2 = this.getPosFromValue(this.value); var y2 = this.getPosFromValue(this.value);
return new goog.math.Rect( return new Rect(
bounds.left, bounds.left,
Math.min(y1, y2), Math.min(y1, y2),
bounds.width - this.hintSize, bounds.width - this.hintSize,
@ -227,7 +295,7 @@ function Column(canvas, name, params, scale, range, bounds) {
} }
this.getHandleBounds = function(bounds, fillBounds) { this.getHandleBounds = function(bounds, fillBounds) {
var handleBounds = new goog.math.Rect( var handleBounds = new Rect(
fillBounds.left, fillBounds.left,
this.getPosFromValue(this.value) - this.handleSize / 2, this.getPosFromValue(this.value) - this.handleSize / 2,
fillBounds.width, fillBounds.width,
@ -303,11 +371,8 @@ function Column(canvas, name, params, scale, range, bounds) {
this.getPosFromValue = function(value) { this.getPosFromValue = function(value) {
var percent = 1.0 - (value - this.range.start) / this.range.getLength(); var percent = 1.0 - (value - this.range.start) / this.range.getLength();
return goog.math.clamp( var range = new Range(this.columnBounds.top, this.columnBounds.top + this.columnBounds.height);
this.columnBounds.top + this.columnBounds.height * percent, return range.clamp(this.columnBounds.top + this.columnBounds.height * percent);
this.columnBounds.top,
this.columnBounds.top + this.columnBounds.height
);
} }
this.isHovering = function(position) { this.isHovering = function(position) {
@ -484,7 +549,7 @@ function Grapher(canvas, range, columnWidth, useLocalScale, useRelativeScale) {
this.getLocalScale = function(hints) { this.getLocalScale = function(hints) {
var counts = _.pluck(hints, 'count'); var counts = _.pluck(hints, 'count');
var min = this.useRelativeScale ? _.min(counts) : 0; var min = this.useRelativeScale ? _.min(counts) : 0;
return new goog.math.Range(min, _.max(counts)); return new Range(min, _.max(counts));
} }
this.getGlobalScale = function(hintData) { this.getGlobalScale = function(hintData) {
@ -522,7 +587,7 @@ function Grapher(canvas, range, columnWidth, useLocalScale, useRelativeScale) {
} }
this.getCanvasBounds = function() { this.getCanvasBounds = function() {
return new goog.math.Rect(0, 0, this.canvas.width - 1, this.canvas.height - 1); return new Rect(0, 0, this.canvas.width - 1, this.canvas.height - 1);
} }
this.getGraphBounds = function(bounds) { this.getGraphBounds = function(bounds) {
@ -531,7 +596,7 @@ function Grapher(canvas, range, columnWidth, useLocalScale, useRelativeScale) {
this.getColumnBounds = function(bounds, index, count) { this.getColumnBounds = function(bounds, index, count) {
var width = this.columnWidth + this.padding * 2; var width = this.columnWidth + this.padding * 2;
return new goog.math.Rect( return new Rect(
bounds.left + width * index + this.padding, bounds.left + width * index + this.padding,
bounds.top, bounds.top,
this.columnWidth, this.columnWidth,
@ -541,10 +606,7 @@ function Grapher(canvas, range, columnWidth, useLocalScale, useRelativeScale) {
this.getMousePos = function(e) { this.getMousePos = function(e) {
var rect = e.target.getBoundingClientRect(); var rect = e.target.getBoundingClientRect();
return new goog.math.Coordinate( return new Coord(e.clientX - rect.left, e.clientY - rect.top);
e.clientX - rect.left,
e.clientY - rect.top
);
} }
this.mouseDown = function(e) { this.mouseDown = function(e) {
@ -586,7 +648,7 @@ function Grapher(canvas, range, columnWidth, useLocalScale, useRelativeScale) {
this.useRelativeScale = useRelativeScale; this.useRelativeScale = useRelativeScale;
this.columnWidth = columnWidth; this.columnWidth = columnWidth;
this.canvas = new fabric.StaticCanvas(canvas); this.canvas = new fabric.StaticCanvas(canvas);
this.range = new goog.math.Range(range.min, range.max); this.range = new Range(range.min, range.max);
this.padding = 10; this.padding = 10;
this.indexMap = {}; this.indexMap = {};
this.columns = []; this.columns = [];