added getNodeType() and getShapeType() methods

This commit is contained in:
Eric Rowell 2013-03-24 00:14:42 -07:00
parent f0037ce9c6
commit 542f675522
18 changed files with 83 additions and 4 deletions

View File

@ -926,6 +926,14 @@
go._addName(this, name);
this.setAttr(NAME, name);
},
/**
* get node type. Returns 'Stage', 'Layer', 'Group', or 'Shape'
* @name getNodeType
* @methodOf Kinetic.Node.prototype
*/
getNodeType: function() {
return this.nodeType;
},
setAttr: function(key, val) {
var oldVal;
if(val !== undefined) {

View File

@ -163,6 +163,14 @@
disableDashArray: function() {
this.setAttr('dashArrayEnabled', false);
},
/**
* get shape type. Ex. 'Circle', 'Rect', 'Text', etc.
* @name getShapeType
* @methodOf Kinetic.Shape.prototype
*/
getShapeType: function() {
return this.shapeType;
},
remove: function() {
Kinetic.Node.prototype.remove.call(this);
delete Kinetic.Global.shapes[this.colorKey];

View File

@ -2654,5 +2654,40 @@ Test.Modules.NODE = {
layer.draw();
test(layer.toDataURL() === dataUrls['cleared'], 'group is still visible');
},
'test getNodeType()': function(containerId) {
var stage = new Kinetic.Stage({
container: containerId,
width: 578,
height: 200
});
var layer = new Kinetic.Layer();
var group = new Kinetic.Group();
var rect = new Kinetic.Rect({
x: 200,
y: 100,
width: 100,
height: 50,
fill: 'red',
stroke: 'black',
strokeWidth: 4,
draggable: true,
rotationDeg: 60,
scale: {
x: 2,
y: 1
}
});
group.add(rect);
layer.add(group);
stage.add(layer);
test(stage.getNodeType() === 'Stage', 'node type should be Stage');
test(layer.getNodeType() === 'Layer', 'node type should be Layer');
test(group.getNodeType() === 'Group', 'node type should be Group');
test(rect.getNodeType() === 'Shape', 'node type should be Shape');
}
};

View File

@ -51,5 +51,7 @@ Test.Modules.LABEL = {
label.getText().setText('Hello big world');
layer.draw();
test(label.getNodeType() === 'Group', 'label should be a group');
}
};

View File

@ -45,6 +45,8 @@ Test.Modules.PATH = {
test(path.dataArray.length === 1, 'data array should have 1 element');
path.setData('M200,100h100v50z');
test(path.getShapeType() === 'Path', 'shape type should be Path');
},
'add path with line cap and line join': function(containerId) {

View File

@ -24,6 +24,8 @@ Test.Modules.REGULAR_POLYGON = {
layer.add(poly);
stage.add(layer);
test(poly.getShapeType() === 'RegularPolygon', 'shape type should be RegularPolygon');
},
'add regular polygon square': function(containerId) {

View File

@ -29,6 +29,8 @@ Test.Modules.STAR = {
layer.add(star);
stage.add(layer);
test(star.getShapeType() === 'Star', 'shape type should be Star');
},
'add five point star with line join and shadow': function(containerId) {
var stage = new Kinetic.Stage({

View File

@ -33,6 +33,8 @@ Test.Modules['TEXT PATH'] = {
layer.add(textpath);
stage.add(layer);
test(textpath.getShapeType() === 'TextPath', 'shape type should be TextPath');
},
'Render Text Along two connected Bezier': function(containerId) {
var stage = new Kinetic.Stage({

View File

@ -60,6 +60,8 @@ Test.Modules.BLOB = {
test(blob1.getTension() === 0.8, 'blob1 tension should be 0.8');
test(blob2.getTension() === 1.2, 'blob2 tension should be 1.2');
test(blob1.getShapeType() === 'Blob', 'shape type should be Blob');
}
};

View File

@ -33,7 +33,8 @@ Test.Modules.CIRCLE = {
test(attrs.strokeWidth === 4, 'strokeWidth attr should be strokeWidth');
test(attrs.name === 'myCircle', 'name attr should be myCircle');
test(attrs.draggable === true, 'draggable attr should be true');
},
test(circle.getShapeType() === 'Circle', 'shape type should be Circle');
},
'add circle with pattern fill': function(containerId) {
var imageObj = new Image();
imageObj.onload = function() {

View File

@ -1,4 +1,4 @@
Test.Modules.ELLISPE = {
Test.Modules.ELLIPSE = {
'add ellipse': function(containerId) {
var stage = new Kinetic.Stage({
container: containerId,
@ -6,7 +6,7 @@ Test.Modules.ELLISPE = {
height: 200
});
var layer = new Kinetic.Layer();
var circle = new Kinetic.Ellipse({
var ellipse = new Kinetic.Ellipse({
x: stage.getWidth() / 2,
y: stage.getHeight() / 2,
radius: [70, 35],
@ -14,7 +14,8 @@ Test.Modules.ELLISPE = {
stroke: 'black',
strokeWidth: 8
});
layer.add(circle);
layer.add(ellipse);
stage.add(layer);
test(ellipse.getShapeType() === 'Ellipse', 'shape type should be Ellipse');
}
};

View File

@ -117,6 +117,8 @@ Test.Modules.IMAGE = {
});
//document.body.appendChild(layer.bufferCanvas.element)
test(darth.getShapeType() === 'Image', 'shape type should be Image');
};
imageObj.src = '../assets/darth-vader.jpg';

View File

@ -46,6 +46,8 @@ Test.Modules.LINE = {
line.setPoints([73, 160, 340, 23]);
test(line.getPoints()[0].x === 73, 'first point x should be 73');
test(line.getShapeType() === 'Line', 'shape type should be Line');
},
'add dashed line': function(containerId) {
var stage = new Kinetic.Stage({

View File

@ -36,6 +36,8 @@ Test.Modules.POLYGON - {
layer.add(poly);
stage.add(layer);
test(poly.getShapeType() === 'Polygon', 'shape type should be Polygon');
}
};

View File

@ -24,6 +24,8 @@ Test.Modules.RECT = {
layer.add(rect);
stage.add(layer);
test(rect.getShapeType() === 'Rect', 'shape type should be Rect');
},
'add stroke rect': function(containerId) {
var stage = new Kinetic.Stage({

View File

@ -112,6 +112,8 @@ Test.Modules.SPRITE = {
sprite.stop();
}, 3000);
//document.body.appendChild(layer.bufferCanvas.element)
test(sprite.getShapeType() === 'Sprite', 'shape type should be Sprite');
};
imageObj.src = '../assets/scorpion-sprite.png';
}

View File

@ -54,6 +54,8 @@ Test.Modules.Text = {
group.add(text);
layer.add(group);
stage.add(layer);
test(text.getShapeType() === 'Text', 'shape type should be Text');
},
'text getters and setters': function(containerId) {
var stage = new Kinetic.Stage({

View File

@ -23,6 +23,8 @@ Test.Modules.Wedge = {
//console.log(layer.toDataURL());
warn(layer.toDataURL() === dataUrls['wedge'], 'problem rendering wedge');
test(wedge.getShapeType() === 'Wedge', 'shape type should be Wedge');
},
'set wedge angle using degrees': function(containerId) {
var stage = new Kinetic.Stage({