fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Informowanie widoku XMLView o zmianie zawartości po wstawieniu taga przy pomocy przyc...
[redakcja.git]
/
project
/
static
/
js
/
views
/
xml.js
diff --git
a/project/static/js/views/xml.js
b/project/static/js/views/xml.js
index
9df8954
..
caafa71
100644
(file)
--- a/
project/static/js/views/xml.js
+++ b/
project/static/js/views/xml.js
@@
-1,15
+1,22
@@
-/*global View CodeMirror render_template panels */
+/*global View CodeMirror
ButtonToolbarView
render_template panels */
var XMLView = View.extend({
var XMLView = View.extend({
+ _className: 'XMLView',
element: null,
model: null,
template: 'xml-view-template',
editor: null,
buttonToolbar: null,
element: null,
model: null,
template: 'xml-view-template',
editor: null,
buttonToolbar: null,
- init: function(element, model, template) {
+ init: function(element, model,
parent,
template) {
this._super(element, model, template);
this._super(element, model, template);
+ this.parent = parent;
+ this.buttonToolbar = new ButtonToolbarView(
+ $('.xmlview-toolbar', this.element),
+ this.model.toolbarButtonsModel, parent);
+
+ $('.xmlview-toolbar', this.element).bind('resize.xmlview', this.resized.bind(this));
- this.freeze('Ładowanie edytora...');
+ this.
parent.
freeze('Ładowanie edytora...');
this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
parserfile: 'parsexml.js',
path: "/static/js/lib/codemirror/",
this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
parserfile: 'parsexml.js',
path: "/static/js/lib/codemirror/",
@@
-23,21
+30,27
@@
var XMLView = View.extend({
});
},
});
},
+ resized: function(event) {
+ var height = this.element.height() - $('.xmlview-toolbar', this.element).outerHeight();
+ $('.xmlview', this.element).height(height);
+ },
+
+ reload: function() {
+ this.model.load(true);
+ },
+
editorDidLoad: function(editor) {
$(editor.frame).css({width: '100%', height: '100%'});
editorDidLoad: function(editor) {
$(editor.frame).css({width: '100%', height: '100%'});
-
this.model
.addObserver(this, 'data', this.modelDataChanged.bind(this))
this.model
.addObserver(this, 'data', this.modelDataChanged.bind(this))
- .addObserver(this, 'synced', this.modelSyncChanged.bind(this));
+ .addObserver(this, 'state', this.modelStateChanged.bind(this))
+ .load();
- if (!this.model.get('synced')) {
- this.freeze('Niezsynchronizowany...');
- this.model.load();
- } else {
- this.editor.setCode(this.model.get('data'));
- }
- this.unfreeze();
-
+ this.parent.unfreeze();
+
+ this.editor.setCode(this.model.get('data'));
+ this.modelStateChanged('state', this.model.get('state'));
+
// editor.grabKeys(
// $.fbind(self, self.hotkeyPressed),
// $.fbind(self, self.isHotkey)
// editor.grabKeys(
// $.fbind(self, self.hotkeyPressed),
// $.fbind(self, self.isHotkey)
@@
-54,11
+67,17
@@
var XMLView = View.extend({
}
},
}
},
- modelS
ync
Changed: function(property, value) {
- if (value) {
+ modelS
tate
Changed: function(property, value) {
+ if (value
== 'synced' || value == 'dirty'
) {
this.unfreeze();
this.unfreeze();
- } else {
+ } else
if (value == 'unsynced')
{
this.freeze('Niezsynchronizowany...');
this.freeze('Niezsynchronizowany...');
+ } else if (value == 'loading') {
+ this.freeze('Ładowanie...');
+ } else if (value == 'saving') {
+ this.freeze('Zapisywanie...');
+ } else if (value == 'error') {
+ this.freeze(this.model.get('error'));
}
},
}
},