OSDN Git Service

b1901bfbd28a915afb42d7657f7ec6f6286686e1
[pettanr/pettanr.git] / app / assets / javascripts / models / license.js.coffee
1 class Pettanr.License extends Peta.SystemResource\r
2   url: '/licenses/'\r
3   \r
4   @singular: () ->\r
5     'License'\r
6   \r
7   @plural: () ->\r
8     'Licenses'\r
9   \r
10   defaults: {\r
11     id: null\r
12   } \r
13   \r
14   license_group: () ->\r
15     r = new Pettanr.LicenseGroup({id: @get('license_group_id')})\r
16   \r
17   system_picture: () ->\r
18     new Pettanr.SystemPicture({id: @get('system_picture_id')})\r
19   \r
20   symbol_option: (cb) ->\r
21     i = @system_picture()\r
22     i.fetch({cache: true}).done =>\r
23       cb(i.tmb_opt_img_tag())\r
24   \r
25   caption_with_group: () ->\r
26     new Pettanr.License.Caption({license: this, license_group: @license_group()})\r
27   \r
28   initialize: () ->\r
29     if @id\r
30       @url = @url + @id\r
31   \r
32 class Pettanr.License.Caption extends Backbone.View\r
33   tagName: 'span'\r
34   initialize: (options) ->\r
35     @license = options.license\r
36     @license_group = options.license_group\r
37     \r
38   render: () ->\r
39     @license_group.fetch({cache: true}).done =>\r
40       this.$el.html(@license_group.get('caption') + '/' + @license.get('caption'))\r
41     this\r
42   \r