* Readonly document view.
[redakcja.git] / platforma / static / js / wiki / view_editor_source.js
index 9dffaf0..a0a2e69 100644 (file)
                                },
                                iframeClass: 'xml-iframe',
                                textWrapping: true,
-                               lineNumbers: false,
+                               lineNumbers: true,
                                width: "100%",
                                tabMode: 'spaces',
                                indentUnit: 0,
+                               readOnly: CurrentDocument.readonly || false,
                                initCallback: function(){
 
-                                        self.codemirror.grabKeys(function(event) {
+                                       self.codemirror.grabKeys(function(event) {
                                                if (event.button) {
                                                        $(event.button).trigger('click');
                                                        event.button = null;
                                        $('#source-editor .toolbar button').click(function(event){
                                                event.preventDefault();
                                                var params = eval("(" + $(this).attr('data-ui-action-params') + ")");
-                                               scriptletCenter.scriptlets[$(this).attr('data-ui-action')](self.codemirror, params);
+                                               scriptletCenter.callInteractive({
+                                                       action: $(this).attr('data-ui-action'),
+                                                       context: self.codemirror,
+                                                       extra: params
+                                               });
                                        });
 
                                        $('.toolbar select').change(function(event){
                                        $('.toolbar select').change();
 
                                        console.log("Initialized CodeMirror");
+
                                        // textarea is no longer needed
                                        $('codemirror_placeholder').remove();
+
                                        old_callback.call(self);
                                }
                        });
        CodeMirrorPerspective.prototype = new $.wiki.Perspective();
 
        CodeMirrorPerspective.prototype.freezeState = function() {
+               this.config().position = this.codemirror.win.scrollY || 0;
+       };
 
+       CodeMirrorPerspective.prototype.unfreezeState = function () {
+               this.codemirror.win.scroll(0, this.config().position || 0);
        };
 
        CodeMirrorPerspective.prototype.onEnter = function(success, failure) {
 
                console.log('Entering', this.doc);
                this.codemirror.setCode(this.doc.text);
+
+               /* fix line numbers bar */
+               var $nums = $('.CodeMirror-line-numbers');
+           var barWidth = $nums.width();
+
+               $(this.codemirror.frame.contentDocument.body).css('padding-left', barWidth);
+               // $nums.css('left', -barWidth);
+
+               $(window).resize();
+               this.unfreezeState(this._uistate);
+
                if(success) success();
        }
 
        CodeMirrorPerspective.prototype.onExit = function(success, failure) {
-               $.wiki.Perspective.prototype.onExit.call(this);
+               this.freezeState();
 
+               $.wiki.Perspective.prototype.onExit.call(this);
                console.log('Exiting', this.doc);
                this.doc.setText(this.codemirror.getCode());
+
                if(success) success();
        }