OSDN Git Service

b0b311925154fccc60845f35beadbb6652508e71
[pettanr/pettanr.git] / app / assets / javascripts / models / speech.js.coffee
1 class Pettanr.Speech extends Peta.Element\r
2   \r
3   @singular: () ->\r
4     'Speech'\r
5   \r
6   @plural: () ->\r
7     'Speeches'\r
8   \r
9   defaults: {\r
10     id: null,\r
11     x: 0,\r
12     y: 0,\r
13     width: 100,\r
14     height: 100\r
15   } \r
16   \r
17   pick: () ->\r
18     # \r
19     speech_balloon_template = @templates.speech_balloon_template\r
20     writing_format = @templates.writing_format\r
21     {\r
22       speech_balloon_template_id: speech_balloon_template.get('id'),\r
23       speech_balloon_template_module_name: speech_balloon_template.get('module_name'),\r
24       writing_format_id: writing_format.get('id'),\r
25       writing_format_module_name: writing_format.get('module_name'),\r
26     }\r
27   \r
28   speech_balloon: () ->\r
29     new Pettanr.Cache.Retriever(Pettanr.SpeechBalloon, @get('speech_balloon_id'))\r
30   \r
31   writing_format: () ->\r
32     new Pettanr.Cache.Retriever(Pettanr.WritingFormat, @get('writing_format_id'))\r
33   \r
34   @text_align_texts: () -> \r
35     ['left', 'left', 'right', 'center']\r
36   \r
37   symbol_option: () ->\r
38     @get_parent('speech_balloon', this, {\r
39       success: (speech_balloon) => \r
40         speech_balloon.get_parent('speech_balloon_template', this, {\r
41           success: (speech_balloon_template) => \r
42             speech_balloon_template.get_parent('system_picture', this, {\r
43               success: (system_picture) => \r
44                 @trigger('ready:symbol', system_picture.tmb_opt_img_tag())\r
45             })\r
46         })\r
47     })\r
48   \r
49   text_align_text: () ->\r
50     Pettanr.Speech.text_align_texts()[@get('text_align')]\r
51   \r
52   scenario: () ->\r
53     @boosts('read')\r
54     @render(@escape('content'))\r
55   \r
56   initialize: (attr, options) ->\r
57     super(attr, options)\r
58   \r