OSDN Git Service

t#:
[pettanr/pettanr.git] / app / assets / javascripts / models / panel.js.coffee
index 834bf3f..fec6673 100644 (file)
@@ -1,5 +1,4 @@
 class Pettanr.Panel extends Peta.Root\r
-  url: '/panels/'\r
   \r
   @singular: () ->\r
     'Panel'\r
@@ -9,25 +8,21 @@ class Pettanr.Panel extends Peta.Root
   \r
   defaults: {\r
     id: null,\r
+    width: 500,\r
+    height: 300,\r
     border: 2,\r
     publish: 0\r
   } \r
   \r
-  author: () ->\r
-    new Pettanr.Author({id: @get('author_id')})\r
-  \r
-  pp: () ->\r
-    new Pettanr.PanelPicture({id: @get('pp_id')})\r
-  \r
   with_elements: () ->\r
     new Pettanr.Panel.WithElements({id: @get('id')})\r
   \r
   overwrite: (options) ->\r
-    operators = options.operators\r
+    operators = Pettanr.cache.operators\r
     return false if not operators.author\r
     @set('author_id', operators.author.id)\r
   \r
-  is_visible: (operators) ->\r
+  is_visible: (operators = Pettanr.cache.operators) ->\r
     switch super(operators)\r
       when null # super return\r
         return true\r
@@ -38,9 +33,9 @@ class Pettanr.Panel extends Peta.Root
         @is_publish()\r
   \r
   overwrite: (options) ->\r
-    @set('author_id', options.operators.author.id)\r
+    @set('author_id', Pettanr.cache.operators.author.id)\r
   \r
-  is_usable: (operators) ->\r
+  is_usable: (operators = Pettanr.cache.operators) ->\r
     @is_visible(operators)\r
   \r
   is_publish: () ->\r
@@ -57,34 +52,51 @@ class Pettanr.Panel extends Peta.Root
     _.each @scenario_elements(), (elm) ->\r
       return if not elm.my_class().has_picture()\r
       pid = elm.get('picture_id')\r
-      r[pid] = elm.picture() if not r[pid]\r
+      r[pid] = true if not r[pid]\r
     r\r
   \r
-  my_url: () ->\r
-    '/' + @path_name() + '/' + @get('id')\r
+  label: (shorten_length) ->\r
+    @_label('caption', shorten_length)\r
+  \r
+  play: () ->\r
+    new Pettanr.Panel.Play({id: @get('id')})\r
+  \r
+  edit: (options) ->\r
+    i = new Pettanr.Panel.Edit({id: @get('id')})\r
+    i.load(options)\r
   \r
   initialize: (attr = {}, options = {}) ->\r
+    super(attr, options)\r
     @set(attr)\r
-    if @get('id')\r
-      @url = @my_url()\r
-    @bind('change:width', () ->\r
-      console.log('cng')\r
-    )\r
   \r
-class Pettanr.Panel.WithElements extends Pettanr.Panel\r
+class Pettanr.Panel.Play extends Pettanr.Panel\r
   \r
   fetch: (options) ->\r
-    @url = @my_url() + '?with_elements=true'\r
+    @url = @default_url() + '?with_elements=true'\r
     super(options)\r
   \r
-  save: (attrs, options = {}) ->\r
-    @url = @my_url()\r
-    options.attrs = {panel: attrs}\r
+class Pettanr.Panel.Edit extends Pettanr.Panel.Play\r
+  \r
+  load: (options) ->\r
+    @fetch().done =>\r
+      @attributes = @decoded_attributes()\r
+      @load_elements(options)\r
+  \r
+  save: (attrs) ->\r
+    @url = @default_url()\r
     method = if @isNew()\r
       'create'\r
     else\r
       'update'\r
-    xhr = @sync(method, this, options)\r
+    _this = this\r
+    xhr = @sync(method, this, {\r
+      attrs: {panel: attrs},\r
+      success: (model, response, options) =>\r
+        _this.set(model, {silent: true})\r
+        _this.trigger('save:success', _this, response)\r
+      error: (model, response, options) =>\r
+        _this.trigger('save:fail', _this, response)\r
+    })\r
     xhr\r
   \r
   destroy: (options) ->\r