diff options
Diffstat (limited to 'js/controllers/elements/element-controller.js')
-rwxr-xr-x | js/controllers/elements/element-controller.js | 49 |
1 files changed, 22 insertions, 27 deletions
diff --git a/js/controllers/elements/element-controller.js b/js/controllers/elements/element-controller.js index ec0335b4..70aba54e 100755 --- a/js/controllers/elements/element-controller.js +++ b/js/controllers/elements/element-controller.js | |||
@@ -51,31 +51,15 @@ var ElementController = exports.ElementController = Montage.create(NJComponent, | |||
51 | 51 | ||
52 | setAttribute: { | 52 | setAttribute: { |
53 | value: function(el, att, value) { | 53 | value: function(el, att, value) { |
54 | if(att === "id") { | ||
55 | if(value === "") { | ||
56 | el.setAttribute(att, value); | ||
57 | return; | ||
58 | } | ||
59 | |||
60 | // Then check if this is a valid id by the following spec: http://www.w3.org/TR/REC-html40/types.html#h-6.2 | ||
61 | var regexID = /^([a-zA-Z])+([a-zA-Z0-9_\.\:\-])+/; | ||
62 | if(!regexID.test(value)) { | ||
63 | alert("Invalid ID"); | ||
64 | return; | ||
65 | } else if (this.application.ninja.currentDocument._document.getElementById(value) !== null) { | ||
66 | alert("The following ID: " + value + " is already in Use"); | ||
67 | } | ||
68 | |||
69 | } | ||
70 | |||
71 | el.setAttribute(att, value); | 54 | el.setAttribute(att, value); |
72 | } | 55 | } |
73 | }, | 56 | }, |
74 | 57 | ||
75 | //-------------------------------------------------------------------------------------------------------- | 58 | //-------------------------------------------------------------------------------------------------------- |
76 | // Routines to get/set color properties | 59 | // Routines to get/set color properties |
60 | // borderSide : "top", "right", "bottom", or "left" | ||
77 | getColor: { | 61 | getColor: { |
78 | value: function(el, isFill) { | 62 | value: function(el, isFill, borderSide) { |
79 | var colorObj, | 63 | var colorObj, |
80 | color, | 64 | color, |
81 | image; | 65 | image; |
@@ -87,22 +71,29 @@ var ElementController = exports.ElementController = Montage.create(NJComponent, | |||
87 | { | 71 | { |
88 | return el.elementModel.fill; | 72 | return el.elementModel.fill; |
89 | } | 73 | } |
90 | // return this.application.ninja.stylesController.getElementStyle(el, "background-color"); | ||
91 | //TODO: Once logic for color and gradient is established, this needs to be revised | 74 | //TODO: Once logic for color and gradient is established, this needs to be revised |
92 | color = this.getProperty(el, "background-color"); | 75 | color = this.getProperty(el, "background-color"); |
93 | image = this.getProperty(el, "background-image"); | 76 | image = this.getProperty(el, "background-image"); |
94 | } | 77 | } |
95 | else | 78 | else |
96 | { | 79 | { |
97 | // TODO - Need to figure out which border side user wants | 80 | // Try getting border color from specific side first |
98 | if(el.elementModel.stroke) | 81 | if(borderSide) |
99 | { | 82 | { |
100 | return el.elementModel.stroke; | 83 | color = this.getProperty(el, "border-" + borderSide + "-color"); |
84 | image = this.getProperty(el, "border-" + borderSide + "-image"); | ||
85 | } | ||
86 | |||
87 | // If no color was found, look up the shared border color | ||
88 | if(!color && !image) | ||
89 | { | ||
90 | if(el.elementModel.stroke) | ||
91 | { | ||
92 | return el.elementModel.stroke; | ||
93 | } | ||
94 | color = this.getProperty(el, "border-color"); | ||
95 | image = this.getProperty(el, "border-image"); | ||
101 | } | 96 | } |
102 | // TODO - Need to figure out which border side user wants | ||
103 | // return this.application.ninja.stylesController.getElementStyle(el, "border-color"); | ||
104 | color = this.getProperty(el, "border-color"); | ||
105 | image = this.getProperty(el, "border-image"); | ||
106 | } | 97 | } |
107 | 98 | ||
108 | if(color || image) { | 99 | if(color || image) { |
@@ -120,11 +111,15 @@ var ElementController = exports.ElementController = Montage.create(NJComponent, | |||
120 | { | 111 | { |
121 | el.elementModel.fill = colorObj; | 112 | el.elementModel.fill = colorObj; |
122 | } | 113 | } |
123 | else | 114 | else if(!borderSide) |
124 | { | 115 | { |
125 | // TODO - Need to update border style and width also | 116 | // TODO - Need to update border style and width also |
126 | el.elementModel.stroke = colorObj; | 117 | el.elementModel.stroke = colorObj; |
127 | } | 118 | } |
119 | else | ||
120 | { | ||
121 | // TODO - Should update specific border sides too | ||
122 | } | ||
128 | 123 | ||
129 | return colorObj; | 124 | return colorObj; |
130 | } | 125 | } |