1 /*global View CodeMirror ButtonToolbarView render_template panels */
2 var XMLView = View.extend({
6 template: 'xml-view-template',
10 init: function(element, model, parent, template) {
11 this._super(element, model, template);
13 this.buttonToolbar = new ButtonToolbarView(
14 $('.xmlview-toolbar', this.element),
15 this.model.toolbarButtonsModel, parent);
17 $('.xmlview-toolbar', this.element).bind('resize.xmlview', this.resized.bind(this));
19 this.parent.freeze('Ładowanie edytora...');
20 this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
21 parserfile: 'parsexml.js',
22 path: "/static/js/lib/codemirror/",
23 stylesheet: "/static/css/xmlcolors.css",
24 parserConfig: {useHTMLKludges: false},
28 onChange: this.editorDataChanged.bind(this),
29 initCallback: this.editorDidLoad.bind(this)
33 resized: function(event) {
34 var height = this.element.height() - $('.xmlview-toolbar', this.element).outerHeight();
35 $('.xmlview', this.element).height(height);
38 editorDidLoad: function(editor) {
39 $(editor.frame).css({width: '100%', height: '100%'});
41 .addObserver(this, 'data', this.modelDataChanged.bind(this))
42 .addObserver(this, 'state', this.modelStateChanged.bind(this))
45 this.parent.unfreeze();
47 this.editor.setCode(this.model.get('data'));
48 this.modelStateChanged('state', this.model.get('state'));
51 // $.fbind(self, self.hotkeyPressed),
52 // $.fbind(self, self.isHotkey)
56 editorDataChanged: function() {
57 this.model.set('data', this.editor.getCode());
60 modelDataChanged: function(property, value) {
61 if (this.editor.getCode() != value) {
62 this.editor.setCode(value);
66 modelStateChanged: function(property, value) {
67 if (value == 'synced' || value == 'dirty') {
68 this.parent.unfreeze();
69 } else if (value == 'unsynced') {
70 this.parent.freeze('Niezsynchronizowany...');
71 } else if (value == 'loading') {
72 this.parent.freeze('Ładowanie...');
73 } else if (value == 'saving') {
74 this.parent.freeze('Zapisywanie...');
79 this.model.removeObserver(this);
80 $(this.editor.frame).remove();
86 panels['xml'] = XMLView;