OSDN Git Service

t#:
[pettanr/pettanr.git] / app / assets / javascripts / models / panel.js.coffee
index 30a380c..fec6673 100644 (file)
@@ -1,5 +1,4 @@
 class Pettanr.Panel extends Peta.Root\r
-  url: '/panels/'\r
   \r
   @singular: () ->\r
     'Panel'\r
@@ -9,14 +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
-  pp: () ->\r
-    new Pettanr.PanelPicture({id: @get('pp_id')})\r
+  with_elements: () ->\r
+    new Pettanr.Panel.WithElements({id: @get('id')})\r
   \r
-  is_visible: (operators) ->\r
+  overwrite: (options) ->\r
+    operators = Pettanr.cache.operators\r
+    return false if not operators.author\r
+    @set('author_id', operators.author.id)\r
+  \r
+  is_visible: (operators = Pettanr.cache.operators) ->\r
     switch super(operators)\r
       when null # super return\r
         return true\r
@@ -26,19 +32,74 @@ class Pettanr.Panel extends Peta.Root
         return true if @isNew()\r
         @is_publish()\r
   \r
-  is_usable: (operators) ->\r
+  overwrite: (options) ->\r
+    @set('author_id', Pettanr.cache.operators.author.id)\r
+  \r
+  is_usable: (operators = Pettanr.cache.operators) ->\r
     @is_visible(operators)\r
   \r
   is_publish: () ->\r
     @get('publish') > 0\r
   \r
+  @licensed_pictures: (panels) ->\r
+    r = {}\r
+    _.each panels, (panel) ->\r
+      _.extend r, panel.licensed_pictures()\r
+    r\r
+  \r
+  licensed_pictures: () ->\r
+    r = {}\r
+    _.each @scenario_elements(), (elm) ->\r
+      return if not elm.my_class().has_picture()\r
+      pid = elm.get('picture_id')\r
+      r[pid] = true if not r[pid]\r
+    r\r
+  \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 = @url + @get('id')\r
-    if options.with_elements\r
-      @url = @url + '?with_elements=true'\r
-  \r
-class Pettanr.Panels extends Backbone.Collection\r
-  model: Pettanr.Panel\r
-  url: '/panels/'\r
+  \r
+class Pettanr.Panel.Play extends Pettanr.Panel\r
+  \r
+  fetch: (options) ->\r
+    @url = @default_url() + '?with_elements=true'\r
+    super(options)\r
+  \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
+    _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
+    @url = @my_url()\r
+    super(options)\r
+  \r