summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/blueprint/BlueprintSettings.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/javascripts/ui/blueprint/BlueprintSettings.js')
-rw-r--r--public/assets/javascripts/ui/blueprint/BlueprintSettings.js38
1 files changed, 5 insertions, 33 deletions
diff --git a/public/assets/javascripts/ui/blueprint/BlueprintSettings.js b/public/assets/javascripts/ui/blueprint/BlueprintSettings.js
index 1ff3d6e..d460a9d 100644
--- a/public/assets/javascripts/ui/blueprint/BlueprintSettings.js
+++ b/public/assets/javascripts/ui/blueprint/BlueprintSettings.js
@@ -2,16 +2,14 @@
var BlueprintSettings = FormView.extend({
el: "#blueprintSettings",
- createAction: "/api/layout/new",
- updateAction: "/api/layout/edit",
- destroyAction: "/api/layout/destroy",
+ action: "/api/blueprint/edit",
+ destroyAction: "/api/blueprint/destroy",
events: {
"mousedown": "stopPropagation",
"keydown": 'stopPropagation',
"keydown [name=name]": 'enterSubmit',
"click [data-role='save-layout']": 'clickSave',
- "click [data-role='clone-layout']": 'clone',
"click [data-role='clear-layout']": 'clear',
"click [data-role='destroy-layout']": 'destroy',
},
@@ -23,40 +21,15 @@ var BlueprintSettings = FormView.extend({
this.$id = this.$("[name=_id]")
this.$csrf = this.$("[name=_csrf]")
this.$name = this.$("[name=name]")
- this.$privacy = this.$("[name=privacy]")
},
load: function(data){
this.$id.val(data._id)
this.$name.val(data.name)
-
- this.parent.colorControl.loadDefaults()
-
- data.rooms && Rooms.deserialize(data.rooms)
- data.startPosition && scene.camera.move(data.startPosition)
- data.privacy && this.$privacy.find("[value=" + data.privacy + "]").prop('checked', "checked")
-
- this.action = data.isNew ? this.createAction : this.updateAction
- },
-
- clone: function(){
- var names = this.$name.val().split(" ")
- if ( ! isNaN(Number( names[names.length-1] )) ) {
- names[names.length-1] = Number( names[names.length-1] ) + 1
- }
- else {
- names.push("2")
- }
-
- this.$id.val('new')
- this.$name.val( names.join(" ") )
- this.action = this.createAction
-
- window.history.pushState(null, document.title, "/builder/new")
},
clear: function(){
- Rooms.removeAll()
+ shapes.destroy()
},
destroy: function(){
@@ -89,10 +62,10 @@ var BlueprintSettings = FormView.extend({
var errors = []
var name = this.$name.val()
if (! name || ! name.length) {
- errors.push("Layout needs a name.")
+ errors.push("Blueprint needs a name.")
}
if (Rooms.count() == 0) {
- errors.push("Please add some rooms by drawing boxes.")
+ errors.push("Please add some walls.")
}
return errors
},
@@ -113,7 +86,6 @@ var BlueprintSettings = FormView.extend({
fd.append( "_csrf", this.$csrf.val() )
fd.append( "_id", this.$id.val() )
fd.append( "name", this.$name.val() )
- fd.append( "privacy", this.$privacy.filter(":checked").val() == "private" )
fd.append( "rooms", JSON.stringify( Rooms.serialize() ) )
fd.append( "startPosition", JSON.stringify( app.position(scene.camera) ) )
fd.append( "thumbnail", dataUriToBlob(thumbnail.toDataURL()) )