a8eb4d0194944838bdb2416db7ca0dc1994e4af9
[redakcja.git] / project / static / js / views / html.js
1 /*global View render_template panels */
2 var HTMLView = View.extend({
3   _className: 'HTMLView',
4   element: null,
5   model: null,
6   template: 'html-view-template',
7   
8   init: function(element, model, parent, template) {
9     this._super(element, model, template);
10     this.parent = parent;
11     
12     this.model
13       .addObserver(this, 'data', this.modelDataChanged.bind(this))
14       .addObserver(this, 'state', this.modelStateChanged.bind(this));
15       
16     $('.htmlview', this.element).html(this.model.get('data'));
17     this.modelStateChanged('state', this.model.get('state'));
18     this.model.load();
19   },
20   
21   modelDataChanged: function(property, value) {
22     $('.htmlview', this.element).html(value);
23
24     var base = this.$printLink.attr('ui:baseref');
25     this.$printLink.attr('href', base + "?revision=" + this.model.get('revision'));
26   },
27   
28   modelStateChanged: function(property, value) {
29     if (value == 'synced' || value == 'dirty') {
30       this.unfreeze();
31     } else if (value == 'unsynced') {
32       this.freeze('Niezsynchronizowany...');
33     } else if (value == 'loading') {
34       this.freeze('Ɓadowanie...');
35     } else if (value == 'saving') {
36       this.freeze('Zapisywanie...');
37     } else if (value == 'error') {
38       this.freeze(this.model.get('error'));
39     }
40   },
41
42
43   render: function() {
44       if(this.$printLink) this.$printLink.unbind();
45       this._super();
46       this.$printLink = $('.html-print-link', this.element);
47   },
48   
49   reload: function() {
50     this.model.load(true);
51   },
52   
53   dispose: function() {
54     this.model.removeObserver(this);
55     this._super();
56   }
57 });
58
59 // Register view
60 panels['html'] = HTMLView;