OSDN Git Service

fix: fetch err
[pettanr/pettanr.git] / app / assets / javascripts / peta / item.js.coffee
index f2ec457..f5fa53b 100644 (file)
@@ -88,6 +88,11 @@ class Peta.Item extends Backbone.Model
     item = new this({id: id})\r
     item.retrieve(context, options)\r
   \r
+  @trace_routes: () ->\r
+    {}\r
+  \r
+  @default_label_shorten_length = 13\r
+  \r
   #InstanceMethods\r
   \r
   default_url: () ->\r
@@ -122,6 +127,59 @@ class Peta.Item extends Backbone.Model
     else\r
       @item_name()\r
   \r
+  _label: (label_column_name, options) ->\r
+    shorten = options.shorten\r
+    l = if _.isBoolean(shorten)\r
+      if shorten\r
+        # supply default shorten_length\r
+        @constructor.default_label_shorten_length\r
+      else\r
+        # False be no shorten\r
+        null\r
+    else\r
+      # numeric\r
+      shorten\r
+    Pettanr.truncate(@get(label_column_name), l)\r
+  \r
+  label: (options) ->\r
+    ''\r
+  \r
+  get_association: (routes, context, options) ->\r
+    routes = [routes] if _.isString(routes)\r
+    route = routes.shift()\r
+    if _.isEmpty(routes)\r
+      # fetching terminate association. callback\r
+      cxt = options.context || context\r
+      @fetch_association(route, cxt, {\r
+        success: (association_item, options) =>\r
+          options.success.call(context, association_item)\r
+        context: context,\r
+        options: options\r
+      })\r
+    else\r
+      # fetching through associations\r
+      @fetch_association(route, this, {\r
+        success: (association_item, options) =>\r
+          association_item.get_association(routes, this, options)\r
+        context: context,\r
+        options: options\r
+      })\r
+  \r
+  fetch_association: (name, context, options) =>\r
+    a = @my_class().my_manifest().associations\r
+    fetch_options = {\r
+      success: (association_item) =>\r
+        options.success.call(context, association_item, options.options)\r
+    }\r
+    if a.belongs_to[name]\r
+      @get_parent(name, context, fetch_options)\r
+    else if a.has_many[name]\r
+      @get_children(name, context, fetch_options)\r
+    else if a.has_one[name]\r
+      @get_child(name, context, fetch_options)\r
+    else\r
+      console.error('association does not exist in model manifest')\r
+  \r
   get_parent: (belongs_to_name, context, options = null) ->\r
     m = Manifest.item_name_to_model(belongs_to_name)\r
     retriever = new Pettanr.Cache.Retriever(m, @get(belongs_to_name + '_id'))\r
@@ -129,8 +187,28 @@ class Peta.Item extends Backbone.Model
     @listenTo(retriever, 'retrieve', (item) =>\r
       options.success.call(context, item)\r
     )\r
+    @listenTo(retriever, 'fail', (response, opt) =>\r
+      options.fail.call(context, response, opt)\r
+    )\r
     retriever.retrieve()\r
   \r
+  get_child: (has_one_name, context, options = null) ->\r
+    list = @has_one(has_one_name)\r
+    list.open(context, {\r
+      success: (items) =>\r
+        callback = options.success\r
+        item = items[0]\r
+        callback.call(context, item)\r
+    })\r
+  \r
+  get_children: (has_many_name, context, options = null) ->\r
+    list = @has_many(has_many_name)\r
+    list.open(context, {\r
+      success: (items) =>\r
+        callback = options.success\r
+        callback.call(context, items)\r
+    })\r
+  \r
   has_many: (has_many_name) ->\r
     has_many_manifest = @my_class().my_manifest().associations.has_many[has_many_name]\r
     action_name = has_many_manifest.list_action_name\r
@@ -146,6 +224,16 @@ class Peta.Item extends Backbone.Model
       controller_name, action_name, {id: @get('id')}\r
     )\r
   \r
+  trace_to: (trace_name, context, options) ->\r
+    routes = @my_class().trace_routes()[trace_name]\r
+    if !routes\r
+      console.error('no trace route')\r
+      return\r
+    @get_association(routes, this, {\r
+      success: (association) => \r
+        options.success.call(context, association)\r
+    })\r
+  \r
   boosts: (level) ->\r
     c = @my_class().my_peta().boost\r
     _.each c, (boost_manifest, boost_name) =>\r
@@ -176,6 +264,10 @@ class Peta.Item extends Backbone.Model
       callback = options.success\r
       callback.call(context, item)\r
     )\r
+    @listenTo(retriever, 'fail', (response, opt) =>\r
+      callback = options.fail\r
+      callback.call(context, response, opt)\r
+    )\r
     retriever.retrieve(options.force)\r
   \r
   @pick_item_name: () ->\r
@@ -209,8 +301,91 @@ class Peta.Item extends Backbone.Model
     else\r
       'none'\r
   \r
-  icon_view: (half) ->\r
-    new Pettanr.Views[@my_class().singular()].Icon({item: this, half: half})\r
+  symbol_option: (context, options) ->\r
+    @trace_to('symbol', this, {\r
+      success: (symbol_item) => \r
+        options.success.call(context, symbol_item.symbol_file())\r
+    })\r
+  \r
+  @face_file: () ->\r
+    new Pettanr.ImageFile('/images/' + @item_name() + '.gif')\r
+  \r
+  face_file: () ->\r
+    @my_class().face_file()\r
+  \r
+  # thumbnail size picture\r
+  symbol_file: (subdir) ->\r
+    new Pettanr.PictureFile(this, subdir)\r
+  \r
+  # real size picture\r
+  picture_file: (subdir = null) ->\r
+    new Pettanr.PictureFile(this, subdir)\r
+  \r
+  real_picture: (subdir = null) ->\r
+    new Pettanr.View.RealIcon(@picture_file(subdir))\r
+  \r
+  # item.face_button({\r
+  #   context: this, \r
+  #   click: () ->\r
+  #     # ...\r
+  # })\r
+  face_button: (options) ->\r
+    Pettanr.View.face_button(this, @face_file(), options)\r
+  \r
+  mini_face_button: (options) ->\r
+    Pettanr.View.mini_face_button(this, @face_file(), options)\r
+  \r
+  prof_button: (options) ->\r
+    Pettanr.View.prof_button(@prof_url(), options)\r
+  \r
+  mini_prof_button: (options) ->\r
+    Pettanr.View.mini_prof_button(@prof_url(), options)\r
+  \r
+  symbol_button: (options) ->\r
+    Pettanr.View.face_button(this, @symbol_file(), options)\r
+  \r
+  mini_symbol_button: (options) ->\r
+    Pettanr.View.mini_face_button(this, @symbol_file(), options)\r
+  \r
+  # pencil button\r
+  edit_button: (options) ->\r
+    icon = new Pettanr.View.Icon(Pettanr.View.Image.icon_edit_file())\r
+    Pettanr.View.any_button(this, @edit_url(), icon, options)\r
+  \r
+  mini_edit_button: (options) ->\r
+    icon = new Pettanr.View.Minicon(Pettanr.View.Image.icon_edit_file())\r
+    Pettanr.View.mini_any_button(this,  @edit_url(), icon, options)\r
+  \r
+  # x button\r
+  destroy_button: (options) ->\r
+    icon = new Pettanr.View.Icon(Pettanr.View.Image.icon_destroy_file())\r
+    Pettanr.View.any_button(this, @destroy_url(), icon, options)\r
+  \r
+  mini_destroy_button: (options) ->\r
+    icon = new Pettanr.View.Minicon(Pettanr.View.Image.icon_destroy_file())\r
+    Pettanr.View.mini_any_button(this,  @destroy_url(), icon, options)\r
+  \r
+  label_button: (label_options, button_options) ->\r
+    url = button_options.url || @show_url()\r
+    new Pettanr.View.Button(url, _.escape(@label(label_options)), button_options)\r
+  \r
+  #  faced_label_button({\r
+  #      shorten: true\r
+  #    }, {\r
+  #      url: @show_url(),\r
+  #      context: this,\r
+  #      click: () =>\r
+  #        # ...\r
+  #    })\r
+  faced_label_button: (label_options, button_options) ->\r
+    new Pettanr.View.FacedLabelButton(this, label_options, button_options)\r
+  \r
+  mini_faced_label_button: (label_options, button_options) ->\r
+    new Pettanr.View.MiniFacedLabelButton(this, label_options, button_options)\r
+  \r
+  summary: (context, options) ->\r
+    klass = Pettanr.Views[@singular()].Summary\r
+    new klass(this, context, options)\r
   \r
   @index_url: () ->\r
     Pettanr.url(@table_name(), 'index', {id: null})\r
@@ -251,6 +426,9 @@ class Peta.Item extends Backbone.Model
   release: () ->\r
     Pettanr.cache.release(this)\r
   \r
+  free: () ->\r
+    Pettanr.cache.free(this)\r
+  \r
   save: (model_attr) ->\r
     super(model_attr || @attributes, {\r
       success: (model, response, options) =>\r
@@ -262,6 +440,7 @@ class Peta.Item extends Backbone.Model
   destroy: () ->\r
     super({\r
       success: (model, response, options) =>\r
+        @free()\r
         @trigger('destroy:success', model, response)\r
       error: (model, response, options) =>\r
         @trigger('destroy:fail', model, response)\r