Skip to content

Commit 23ae97e

Browse files
committed
fix(shape): Fixes issue with static property that is not supported
1 parent 0d3dd5d commit 23ae97e

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

src/shapes/Shape.js

+11-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
* }
1919
*/
2020
export class Shape {
21-
static name = 'Shape';
22-
21+
_name = 'Shape';
2322
_text = '';
2423
_width = 15;
2524
_height = 5;
@@ -53,6 +52,15 @@ export class Shape {
5352
this.setForeground(foreground);
5453
}
5554

55+
/**
56+
* Get name of the shape.
57+
*
58+
* @returns {String}
59+
*/
60+
getName() {
61+
return this._name;
62+
}
63+
5664
/**
5765
* Get text content from this shape.
5866
*
@@ -194,7 +202,7 @@ export class Shape {
194202
*/
195203
toObject() {
196204
return {
197-
name: Shape.name,
205+
name: this.getName(),
198206
options: {
199207
text: this.getText(),
200208
width: this.getWidth(),
@@ -235,7 +243,6 @@ export class Shape {
235243
*/
236244
static fromObject(obj) {
237245
if (!obj.name || !obj.options) throw new Error('It looks like it is not an Object representation of the Shape');
238-
if (obj.name !== Shape.name) throw new Error('You are trying to create Shape from Object representation of another Shape');
239246

240247
return new this(obj.options);
241248
}

0 commit comments

Comments
 (0)