X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/a916b4d2655ae35f58120ec601b71af8d8e63ea0..0f069f101a3e978c0f785dffe06ba873422c1137:/platforma/static/js/views/html.js
diff --git a/platforma/static/js/views/html.js b/platforma/static/js/views/html.js
index d57640bc..e1c7b15e 100755
--- a/platforma/static/js/views/html.js
+++ b/platforma/static/js/views/html.js
@@ -12,12 +12,11 @@ var HTMLView = View.extend({
this.model
.addObserver(this, 'data', this.modelDataChanged.bind(this))
.addObserver(this, 'state', this.modelStateChanged.bind(this));
-
- $('.htmlview', this.element).html(this.model.get('data'));
this.$menuTemplate = $(render_template('html-view-frag-menu-template', this));
-
this.modelStateChanged('state', this.model.get('state'));
+ this.modelDataChanged('data', this.model.get('data'));
+
this.model.load();
this.currentOpen = null;
@@ -31,16 +30,12 @@ var HTMLView = View.extend({
var self = this;
/* upgrade editable elements */
- $("*[x-editable]").each(function() {
+ $("*[x-editable]", this.$docbase).each(function() {
$(this).append( self.$menuTemplate.clone() );
});
-
- var n = 5001;
-
- var doc_base = $('.htmlview .utwor', this.element);
-
+
/* mark themes */
- $(".theme-ref").each(function() {
+ /* $(".theme-ref", this.$docbase).each(function() {
var id = $(this).attr('x-theme-class');
var end = $("span.theme-end[x-theme-class = " + id+"]");
@@ -50,7 +45,7 @@ var HTMLView = View.extend({
h = Math.max(h, end.offset().top - begin.offset().top);
$(this).css('height', h);
- });
+ }); */
},
updatePrintLink: function() {
@@ -92,15 +87,46 @@ var HTMLView = View.extend({
},
render: function() {
- this.element.unbind('click');
+ if(this.$docbase)
+ this.$docbase.unbind('click');
+
+ if(this.$printLink)
+ this.$printLink.unbind();
+
+ if(this.$addThemeButton)
+ this.$addThemeButton.unbind();
- if(this.$printLink) this.$printLink.unbind();
this._super();
- this.$printLink = $('.html-print-link', this.element);
+
+ this.$printLink = $('.htmlview-toolbar .html-print-link', this.element);
+ this.$docbase = $('.htmlview', this.element);
+ this.$addThemeButton = $('.htmlview-toolbar .html-add-motive', this.element);
+
this.updatePrintLink();
+ this.$docbase.bind('click', this.itemClicked.bind(this));
+ this.$addThemeButton.click( this.addTheme.bind(this) );
+ },
- this.element.bind('click', this.itemClicked.bind(this));
- // this.element.bind('mouseover', this.itemHover.bind(this));
+ renderPart: function($e, html) {
+ // exceptions aren't good, but I don't have a better idea right now
+ if($e.attr('x-annotation-box')) {
+ // replace the whole annotation
+ var $p = $e.parent();
+ $p.html(html);
+ var $box = $('*[x-annotation-box]', $p);
+ $box.append( this.$menuTemplate.clone() );
+
+ if(this.currentFocused && $p[0] == this.currentFocused[0])
+ {
+ this.currentFocused = $p;
+ $box.css({'display': 'block'});
+ }
+
+ return;
+ }
+
+ $e.html(html);
+ $e.append( this.$menuTemplate.clone() );
},
reload: function() {
@@ -146,6 +172,12 @@ var HTMLView = View.extend({
* - this greatly simplifies the whole click check
*/
+ if( $e.hasClass('theme-ref') )
+ {
+ console.log($e);
+ this.selectTheme($e.attr('x-theme-class'));
+ }
+
/* other buttons */
if($e.hasClass('edit-button'))
this.openForEdit( this.editableFor($e) );
@@ -207,28 +239,6 @@ var HTMLView = View.extend({
this.currentOpen = null;
},
- renderPart: function($e, html) {
- // exceptions aren't good, but I don't have a better idea right now
- if($e.attr('x-annotation-box')) {
- // replace the whole annotation
- var $p = $e.parent();
- $p.html(html);
- var $box = $('*[x-annotation-box]', $p);
- $box.append( this.$menuTemplate.clone() );
-
- if(this.currentFocused && $p[0] == this.currentFocused[0])
- {
- this.currentFocused = $p;
- $box.css({'display': 'block'});
- }
-
- return;
- }
-
- $e.html(html);
- $e.append( this.$menuTemplate.clone() );
- },
-
editableFor: function($button)
{
var $e = $button;
@@ -296,8 +306,70 @@ var HTMLView = View.extend({
$origin.attr('x-open', 'open');
return false;
+ },
+
+ addTheme: function()
+ {
+ var selection = document.getSelection();
+ var n = selection.rangeCount;
+
+ if(n == 0)
+ window.alert("Nie zaznaczono żadnego obszaru");
+
+ // for now allow only 1 range
+ if(n > 1)
+ window.alert("Zaznacz jeden obszar");
+
+ // from this point, we will assume that the ranges are disjoint
+ for(var i=0; i < n; i++) {
+ var range = selection.getRangeAt(i);
+ console.log(i, range.startContainer, range.endContainer);
+ var date = Date.now();
+ var random = Math.floor(4000000000*Math.random());
+ var id = (''+date) + '-' + (''+random);
+
+ var ipoint = document.createRange();
+
+
+
+ // Firefox alters the later node when inserting, so
+ // insert from end
+ ipoint.setStart(range.endContainer, range.endOffset);
+ elem = $('')[0];
+ ipoint.insertNode(elem);
+
+ // insert theme-ref
+ ipoint.setStart(range.startContainer, range.startOffset);
+ var elem = $('Nowy motyw')[0];
+ ipoint.insertNode(elem);
+ ipoint.setStartBefore(elem);
+
+ // insert theme-begin
+ elem = $('')[0];
+ ipoint.insertNode(elem);
+ }
+
+ selection.removeAllRanges();
+ },
+
+ selectTheme: function(themeId)
+ {
+ var selection = document.getSelection();
+
+ // remove current selection
+ selection.removeAllRanges();
+
+ var range = document.createRange();
+ var s = $('#m'+themeId)[0];
+ var e = $('#e'+themeId)[0];
+ console.log('Selecting range:', themeId, range, s, e);
+
+ if(s && e) {
+ range.setStartAfter(s);
+ range.setEndBefore(e);
+ selection.addRange(range);
+ }
}
-
});
// Register view