File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 18
18
* }
19
19
*/
20
20
export class Shape {
21
- static name = 'Shape' ;
22
-
21
+ _name = 'Shape' ;
23
22
_text = '' ;
24
23
_width = 15 ;
25
24
_height = 5 ;
@@ -53,6 +52,15 @@ export class Shape {
53
52
this . setForeground ( foreground ) ;
54
53
}
55
54
55
+ /**
56
+ * Get name of the shape.
57
+ *
58
+ * @returns {String }
59
+ */
60
+ getName ( ) {
61
+ return this . _name ;
62
+ }
63
+
56
64
/**
57
65
* Get text content from this shape.
58
66
*
@@ -194,7 +202,7 @@ export class Shape {
194
202
*/
195
203
toObject ( ) {
196
204
return {
197
- name : Shape . name ,
205
+ name : this . getName ( ) ,
198
206
options : {
199
207
text : this . getText ( ) ,
200
208
width : this . getWidth ( ) ,
@@ -235,7 +243,6 @@ export class Shape {
235
243
*/
236
244
static fromObject ( obj ) {
237
245
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' ) ;
239
246
240
247
return new this ( obj . options ) ;
241
248
}
You can’t perform that action at this time.
0 commit comments