Make WordPress Core

Ticket #24425: 24425.draft.27.diff

File 24425.draft.27.diff, 24.9 KB (added by ocean90, 11 years ago)

Moves Tooltip, Checkbox and Buttons to its own view

  • wp-admin/css/colors-fresh.css

     
    13791379        border: 1px solid #dfdfdf;
    13801380}
    13811381
    1382 #diff-slider .ui-slider-tooltip,
    1383 #diff-slider-ticks .ui-slider-tooltip {
     1382.ui-slider-tooltip,
     1383.ui-slider-tooltip {
    13841384        border-color: #d7d7d7;
    13851385        background-color: #fff;
    13861386}
  • wp-admin/css/wp-admin-rtl.css

     
    975975        left: 6px;
    976976}
    977977
    978 #toggle-revision-compare-mode {
     978.revision-toggle-compare-mode {
    979979        right: auto;
    980980        left: 0;
    981981        padding: 9px 0 0 9px;
    982982}
    983983
    984 #diff-next-revision {
     984.revisions-next {
    985985        float: left;
    986986}
    987987
    988 #diff-previous-revision {
     988.revisions-previous {
    989989        float: right;
    990990}
    991991
  • wp-admin/css/wp-admin.css

     
    35023502        margin-bottom: 10px;
    35033503}
    35043504
     3505.comparing-two-revisions .revisions-controls {
     3506        height: 90px;
     3507}
     3508
    35053509.revisions-meta {
    35063510        margin-top: 15px;
    35073511}
     
    35103514        top: 0;
    35113515        right: 0;
    35123516}
     3517.comparing-two-revisions .revisions-previous,
     3518.comparing-two-revisions .revisions-next {
     3519        display: none;
     3520}
    35133521
    35143522.revisions-previous {
    35153523        float: left;
     
    35903598        width: 95%;
    35913599}
    35923600
    3593 #diff-slider .ui-slider-tooltip,
    3594 #diff-slider-ticks .ui-slider-tooltip {
     3601.revisions .ui-slider-tooltip {
     3602        position: absolute;
     3603        bottom: 86px;
     3604        margin-left: -70px;
    35953605        display: none;
    3596         position: absolute;
    3597         bottom: 21px;
    3598         margin-left: -74px;
     3606        line-height: 28px;
    35993607}
    36003608
    3601 #diff-slider .ui-state-active .ui-slider-tooltip,
    3602 #diff-slider .ui-state-focus .ui-slider-tooltip,
    3603 #diff-slider .ui-state-hover .ui-slider-tooltip {
    3604         display: block;
    3605 }
    3606 
    36073609#diff-title-to strong {
    36083610        display: inline;
    36093611}
     
    36553657        margin-top: 20px;
    36563658}
    36573659
    3658 .comparing-two-revisions #diff-previous-revision,
    3659 .comparing-two-revisions #diff-next-revision,
     3660#diff-previous-revision,
     3661#diff-next-revision,
    36603662#diff-header-from {
    36613663        display: none;
    36623664}
     
    37403742.ui-slider-tooltip img {
    37413743        float: left;
    37423744        margin-right: 5px;
    3743         margin-top: 5px;
     3745        margin-top: 2px;
     3746        padding: 0;
     3747        vertical-align: middle;
    37443748}
    37453749
    37463750
     
    37483752
    37493753.ui-tooltip,
    37503754.ui-slider-tooltip {
    3751         padding: 8px;
     3755        padding: 4px;
    37523756        position: absolute;
    37533757        z-index: 9999;
    37543758        max-width: 300px;
     
    37683772
    37693773.ui-tooltip,
    37703774.ui-slider-tooltip {
    3771         padding: 5px 10px;
     3775        padding: 4px 4px;
    37723776}
    37733777
    37743778.arrow {
     
    37763780        height: 16px;
    37773781        overflow: hidden;
    37783782        position: absolute;
    3779         left: 50%;
     3783        left: 0;
    37803784        margin-left: -35px;
    3781         bottom: -16px;
    3782         z-index: 99999;
     3785        bottom: 71px;
     3786        z-index: 10000;
     3787        display: none;
    37833788}
    37843789
    37853790.arrow.top {
     
    38713876
    38723877.wp-slider.ui-slider-horizontal {
    38733878        height: .8em;
     3879        z-index: 10001;
    38743880}
    38753881
    38763882.wp-slider.ui-slider-horizontal .ui-slider-handle {
  • wp-admin/js/revisions.js

     
    33(function($) {
    44        var revisions;
    55
    6         revisions = wp.revisions = { model: {}, view: {}, controller: {} };
     6        revisions = wp.revisions = { model: {}, view: {}, controller: {}, router: {} };
    77
    88        // Link settings.
    99        revisions.settings = typeof _wpRevisionsSettings === 'undefined' ? {} : _wpRevisionsSettings;
     
    3030
    3131                comparator: function( revision ) {
    3232                        return revision.id;
    33                 },
     33                }
    3434        });
    3535
    3636        revisions.model.Field = Backbone.Model.extend({});
     
    101101                        return this.fetch({ data: { compare: comparisons }, remove: false });
    102102                },
    103103
    104 /**/
    105104                loadLast: function( num ) {
    106105                        num     = num || 1;
    107106                        var ids = this.getProximalDiffIds();
     
    194193                initialize: function( attributes, options ) {
    195194                        this.revisions = options.revisions;
    196195                        this.diffs     = new revisions.model.Diffs( [], {revisions: this.revisions} );
     196                        this.listenTo( this, 'change:from', this.updateDiffFrom );
     197                        this.listenTo( this, 'change:to', this.updateDiffTo );
     198                        this.revisionsRouter = new revisions.router.Router();
     199                        this.revisionsRouter.model = this;
    197200
    198                         this.listenTo( this, 'change:from change:to', this.updateDiffId );
    199201                },
    200202
    201                 updateDiffId: function() {
     203                updateDiffTo: function() {
    202204                        var from = this.get( 'from' );
    203205                        var to   = this.get( 'to' );
    204                         this.set( 'diffId', (from ? from.id : '0') + ':' + to.id );
     206                        this.set( 'diffId', (from ? from.id : '0' ) + ':' + to.id );
     207                },
     208
     209                updateDiffFrom: function() {
     210                        if ( this.get( 'compareTwoMode' ) ) {
     211                                this.updateDiffTo();
     212                        }
    205213                }
     214
    206215        });
    207216
    208217
     
    243252                                        this.model.diffs.loadAllBy( 50 );
    244253                                }, this ) );
    245254                        }
     255                        Backbone.history.start();
    246256                },
    247257
    248258                render: function() {
     
    266276        });
    267277
    268278        // The control view.
    269         // This contains the revision slider, previous/next buttons, and the compare checkbox.
     279        // This contains the revision slider, previous/next buttons, the meta info and the compare checkbox.
    270280        revisions.view.Controls = wp.Backbone.View.extend({
    271281                tagName: 'div',
    272282                className: 'revisions-controls',
    273283
    274284                initialize: function() {
    275285                        // Add the button view
    276                         this.views.add( new revisions.view.Buttons({ 
     286                        this.views.add( new revisions.view.Buttons({
    277287                                model: this.model
    278288                        }));
    279289
     290                        // Add the checkbox view
     291                        this.views.add( new revisions.view.Checkbox({
     292                                model: this.model
     293                        }));
     294
     295                        // Add the tooltip view
     296                        this.views.add( new revisions.view.Tooltip({
     297                                model: this.model
     298                        }));
     299
    280300                        // Add the Slider view
    281301                        this.views.add( new revisions.view.Slider({
    282302                                model: this.model
     
    314334                        if( this.model.get( 'to' ).attributes.current ) {
    315335                                $( '#restore-revision' ).prop( 'disabled', true);
    316336                        } else {
    317                                 $( '#restore-revision' ).prop( 'disabled', false)
     337                                $( '#restore-revision' ).prop( 'disabled', false);
    318338                        }
    319339                }
    320340        });
    321341
     342        // The checkbox view.
     343        // Encapsulates all of the configuration for the compare check-box.
     344        revisions.view.Checkbox = wp.Backbone.View.extend({
     345                tagName: 'div',
     346                className: 'revisions-checkbox',
     347                template: wp.template('revisions-checkbox'),
    322348
     349                initialize: function() {
     350                        this.$el.html( this.template() );
     351                        this.listenTo( this.model, 'change:compareTwoMode', this.updateCompareTwoMode );
     352                },
     353
     354                events: {
     355                        'click .compare-two-revisions': 'compareTwoToggle'
     356                },
     357
     358                updateCompareTwoMode: function(){
     359                        if ( this.model.get( 'compareTwoMode' ) ){
     360                                $( '.revisions-control-frame' ).addClass( 'comparing-two-revisions' );
     361                                // in RTL mode the 'left handle' is the second in the slider, 'right' is first
     362                                $( '.wp-slider a.ui-slider-handle' ).first().addClass( isRtl ? 'right-handle' : 'left-handle' );
     363                                $( '.wp-slider a.ui-slider-handle' ).last().addClass( isRtl ? 'left-handle' : 'right-handle' );
     364                        } else {
     365                                $( '.revisions-control-frame' ).removeClass( 'comparing-two-revisions' );
     366                                $( '.wp-slider a.ui-slider-handle' ).removeClass( 'left-handle' ).removeClass( 'right-handle' );
     367                        }
     368
     369                },
     370
     371                // Toggle the compare two mode feature when the compare two check-box is checked.
     372                compareTwoToggle: function( event ){
     373                        // Activate compare two mode?
     374                        if ( $( '.compare-two-revisions' ).is( ':checked' ) ) {
     375                                this.model.set( { compareTwoMode: true } );
     376                        } else {
     377                                this.model.set( { compareTwoMode: false } );
     378                        }
     379                        this.model.revisionsRouter.navigateRoute( this.model.get( 'to').id, this.model.get( 'from' ).id );
     380
     381                }
     382        });
     383
     384        // The tooltip view.
     385        // Encapsulates the tooltip.
     386        revisions.view.Tooltip = wp.Backbone.View.extend({
     387                tagName: 'div',
     388                className: 'revisions-tooltip',
     389                template: wp.template('revisions-tooltip'),
     390
     391                initialize: function() {
     392                        this.$el.html( this.template() );
     393                }
     394        });
     395
    323396        // The buttons view.
    324         // Encapsulates all of the configuration for the previous/next buttons, and the compare checkbox.
     397        // Encapsulates all of the configuration for the previous / next buttons.
    325398        revisions.view.Buttons = wp.Backbone.View.extend({
    326399                tagName: 'div',
    327400                className: 'revisions-buttons',
    328                 template: wp.template('revisions-controls'),
     401                template: wp.template('revisions-buttons'),
    329402
    330403                initialize: function() {
    331                         this.$el.html( this.template() )
     404                        this.$el.html( this.template() );
    332405                },
    333406
    334407                events: {
    335408                        'click #next': 'nextRevision',
    336409                        'click #previous': 'previousRevision'
    337410                },
    338                
     411
     412                // Go to a specific modelindex, taking into account RTL mode.
    339413                gotoModel: function( toIndex ) {
    340414                        var attributes = {
    341                                 to: this.model.revisions.at( isRtl ? this.model.revisions.length - toIndex - 1 : toIndex ) // Reverse directions for Rtl
     415                                to: this.model.revisions.at( isRtl ? this.model.revisions.length - toIndex - 1 : toIndex ) // Reverse directions for RTL.
    342416                        };
    343417                        // If we're at the first revision, unset 'from'.
    344                         if ( isRtl ? this.model.revisions.length - toIndex - 1 : toIndex ) // Reverse directions for Rtl
     418                        if ( isRtl ? this.model.revisions.length - toIndex - 1 : toIndex ) // Reverse directions for RTL
    345419                                attributes.from = this.model.revisions.at( isRtl ? this.model.revisions.length - toIndex - 2 : toIndex - 1 );
    346420                        else
    347421                                this.model.unset('from', { silent: true });
    348422
    349423                        this.model.set( attributes );
     424
     425                        this.model.revisionsRouter.navigateRoute( attributes.to.id, attributes.from ? attributes.from.id : 0 );
     426
    350427                },
    351428
     429                // Go to the 'next' revision, direction takes into account RTL mode.
    352430                nextRevision: function() {
    353                         var toIndex = this.model.revisions.indexOf( this.model.get( 'to' ) );
     431                        var toIndex = isRtl ? this.model.revisions.length - this.model.revisions.indexOf( this.model.get( 'to' ) ) - 1 : this.model.revisions.indexOf( this.model.get( 'to' ) );
    354432                        toIndex     = isRtl ? toIndex - 1 : toIndex + 1;
    355433                        this.gotoModel( toIndex );
    356434                },
    357                
     435
     436                // Go to the 'previous' revision, direction takes into account RTL mode.
    358437                previousRevision: function() {
    359                         var toIndex = this.model.revisions.indexOf( this.model.get('to') );
     438                        var toIndex = isRtl ? this.model.revisions.length - this.model.revisions.indexOf( this.model.get( 'to' ) ) - 1 : this.model.revisions.indexOf( this.model.get( 'to' ) );
    360439                        toIndex     = isRtl ? toIndex + 1 : toIndex - 1;
    361440                        this.gotoModel( toIndex );
    362441                },
    363442
    364443                ready: function() {
    365444                        this.listenTo( this.model, 'change:diffId', this.disabledButtonCheck );
     445
     446                        // Hide compare two mode toggle when fewer than three revisions.
     447                        if ( this.model.revisions.length < 3 ) {
     448                                $( '.revision-toggle-compare-mode' ).hide();
     449                        }
    366450                },
    367451
    368                 // Check to see if the Previous or Next buttons need to be disabled or enabled
     452                // Check to see if the Previous or Next buttons need to be disabled or enabled.
    369453                disabledButtonCheck: function() {
    370                         var maxVal   = isRtl ? 0 : this.model.revisions.length - 1,
    371                                 minVal   = isRtl ? this.model.revisions.length - 1 : 0,
    372                                 next     = $( '.revisions-next .button' ),
     454                        var maxVal = this.model.revisions.length - 1,
     455                                minVal = 0,
     456                                next = $( '.revisions-next .button' ),
    373457                                previous = $( '.revisions-previous .button' ),
    374                                 val      = this.model.revisions.indexOf( this.model.get( 'to' ) );
     458                                val = this.model.revisions.indexOf( this.model.get( 'to' ) );
    375459
    376                         // Disable "Next" button if you're on the last node
     460                        // Disable "Next" button if you're on the last node.
    377461                        if ( maxVal === val )
    378462                                next.prop( 'disabled', true );
    379463                        else
    380464                                next.prop( 'disabled', false );
    381465
    382                         // Disable "Previous" button if you're on the first node
     466                        // Disable "Previous" button if you're on the first node.
    383467                        if ( minVal === val )
    384468                                previous.prop( 'disabled', true );
    385469                        else
    386470                                previous.prop( 'disabled', false );
    387                 },
    388 
    389 
     471                }
    390472        });
    391473
    392474        // The slider view.
     
    395477                tagName: 'div',
    396478                className: 'wp-slider',
    397479
     480                events: {
     481                        'mousemove'  : 'mousemove',
     482                        'mouseenter' : 'mouseenter',
     483                        'mouseleave' : 'mouseleave'
     484                },
     485
    398486                initialize: function() {
    399487                        _.bindAll( this, 'start', 'slide', 'stop' );
    400488
     
    404492
    405493                        // Find the initially selected revision
    406494                        var initiallySelectedRevisionIndex =
    407                                 this.model.revisions.indexOf( 
     495                                this.model.revisions.indexOf(
    408496                                        this.model.revisions.findWhere(  { id: Number( revisions.settings.selectedRevision ) } ) );
    409497
    410498                        this.settings = new revisions.model.Slider({
     
    418506
    419507                ready: function() {
    420508                        this.$el.slider( this.settings.toJSON() );
     509
     510                        // Listen for changes in Compare Two Mode setting
     511                        this.listenTo( this.model, 'change:compareTwoMode', this.updateSliderSettings );
     512
    421513                        this.settings.on( 'change', function( model, options ) {
    422                                 // Apply changes to slider settings here.
    423                                 this.$el.slider( { value: this.model.revisions.indexOf( this.model.get( 'to' ) ) } ); // Set handle to current to model
     514                                this.updateSliderSettings();
    424515                        }, this );
    425                         // Reset to the initially selected revision
    426                         this.slide( '', this.settings.attributes );
    427516
    428517                        // Listen for changes in the diffId
    429518                        this.listenTo( this.model, 'change:diffId', this.diffIdChanged );
    430519
     520                        // Reset to the initially selected revision
     521                        this.slide( '', this.settings.attributes );
     522
     523                        if ( this.model.get( 'compareTwoMode' ) )
     524                                $( '.compare-two-revisions' ).trigger( 'click' );
    431525                },
    432526
     527                mousemove: function( e ) {
     528                        var sliderLeft = Math.ceil( this.$el.offset().left ),
     529                                sliderWidth = Math.ceil( this.$el.width() ) + 2,
     530                                tickWidth = Math.ceil( ( sliderWidth ) / this.model.revisions.length ),
     531                                hoveringAt = Math.floor( ( e.clientX - sliderLeft ) / tickWidth );
     532
     533                        // Ensure sane value for hoveringAt.
     534                        if ( hoveringAt < 0 )
     535                                hoveringAt = 0;
     536                        else if ( hoveringAt >= this.model.revisions.length )
     537                                hoveringAt = this.model.revisions.length - 1;
     538
     539                        var tooltipHtml = this.model.revisions.at( hoveringAt ).get( 'author' ).avatar +
     540                                this.model.revisions.at( hoveringAt ).get( 'author' ).name +
     541                                ', ' + this.model.revisions.at( hoveringAt ).get( 'dateShort' );
     542
     543                        this.addTooltip( $( e.currentTarget ), tooltipHtml, e );
     544                },
     545
     546                mouseenter: function( e ) {
     547                        $( e.currentTarget ).parent().find( '.ui-slider-tooltip' ).show();
     548                        $( e.currentTarget ).parent().find( '.arrow' ).show();
     549                },
     550
     551                mouseleave: function( e ) {
     552                        $( e.currentTarget ).parent().find( '.ui-slider-tooltip' ).hide();
     553                        $( e.currentTarget ).parent().find( '.arrow' ).hide();
     554                },
     555
     556                updateSliderSettings: function() {
     557                        if ( isRtl ) {
     558                                this.$el.slider( { // Order reversed in RTL mode
     559                                        value: this.model.revisions.length - this.model.revisions.indexOf( this.model.get( 'to' ) ) - 1
     560                                } );
     561                        } else {
     562                                if ( this.model.get( 'compareTwoMode' ) ) {
     563                                        this.$el.slider( { // Set handles to current from/to models
     564                                                values: [
     565                                                        this.model.revisions.indexOf( this.model.get( 'from' ) ),
     566                                                        this.model.revisions.indexOf( this.model.get( 'to' ) )
     567                                                                ],
     568                                                value: null,
     569                                                range: true // Range mode ensures handles can't cross
     570                                        } );
     571                                } else {
     572                                        this.$el.slider( { // Set handle to current to model
     573                                                value: this.model.revisions.indexOf( this.model.get( 'to' ) ),
     574                                                values: null, // Clear existing two handled values
     575                                                range: false
     576                                        } );
     577                                }
     578                        }
     579                        if ( this.model.get( 'compareTwoMode' ) ){
     580                                $( '.revisions' ).addClass( 'comparing-two-revisions' );
     581
     582                                // in RTL mode the 'left handle' is the second in the slider, 'right' is first
     583                                $( 'a.ui-slider-handle', this.$el )
     584                                        .first()
     585                                        .addClass( isRtl ? 'right-handle' : 'left-handle' )
     586                                        .removeClass( isRtl ? 'left-handle' : 'right-handle' );
     587                                $( 'a.ui-slider-handle', this.$el )
     588                                        .last()
     589                                        .addClass( isRtl ? 'left-handle' : 'right-handle' )
     590                                        .removeClass( isRtl ? 'right-handle' : 'left-handle' );
     591                        } else {
     592                                $( '.revisions' ).removeClass( 'comparing-two-revisions' );
     593                        }
     594                },
     595
    433596                diffIdChanged: function() {
    434597                        // Reset the view settings when diffId is changed
    435                         this.settings.set( { 'value': this.model.revisions.indexOf( this.model.get( 'to' ) ) } );
     598                        if ( this.model.get( 'compareTwoMode' ) ) {
     599                                this.settings.set( { 'values': [
     600                                                this.model.revisions.indexOf( this.model.get( 'from' ) ),
     601                                                this.model.revisions.indexOf( this.model.get( 'to' ) )
     602                                        ] } );
     603                        } else {
     604                                this.settings.set( { 'value': this.model.revisions.indexOf( this.model.get( 'to' ) ) } );
     605                        }
    436606                },
    437607
    438608                start: function( event, ui ) {
    439                         // Track the mouse position to enable smooth dragging, overrides default jquery ui step behaviour
    440                         $( window ).mousemove( function( e ) {
    441                                 var sliderLeft  = $( '.wp-slider' ).offset().left,
    442                                         sliderRight = sliderLeft + $( '.wp-slider' ).width();
     609                        if ( true !== this.model.get( 'compareTwoMode' )) {
     610                                // Track the mouse position to enable smooth dragging, overrides default jquery ui step behaviour .
     611                                $( window ).mousemove( function( e ) {
     612                                        var sliderLeft = this.$el.offset().left,
     613                                                sliderRight = sliderLeft + this.$el.width();
    443614
    444                                 // Follow mouse movements, as long as handle remains inside slider
    445                                 if ( e.clientX < sliderLeft ) {
    446                                         $( ui.handle ).css( 'left', 0 ); // Mouse to left of slider
    447                                 } else if ( e.clientX > sliderRight ) {
    448                                         $( ui.handle ).css( 'left', sliderRight - sliderLeft); // Mouse to right of slider
    449                                 } else {
    450                                         $( ui.handle ).css( 'left', e.clientX - sliderLeft ); // Mouse in slider
    451                                 }
    452                         } ); // End mousemove
     615                                        // Follow mouse movements, as long as handle remains inside slider.
     616                                        if ( e.clientX < sliderLeft ) {
     617                                                $( ui.handle ).css( 'left', 0 ); // Mouse to left of slider.
     618                                        } else if ( e.clientX > sliderRight ) {
     619                                                $( ui.handle ).css( 'left', sliderRight - sliderLeft); // Mouse to right of slider.
     620                                        } else {
     621                                                $( ui.handle ).css( 'left', e.clientX - sliderLeft ); // Mouse in slider.
     622                                        }
     623                                } ); // End mousemove.
     624                        }
    453625                },
    454626
     627                getSliderPosition: function( ui ){
     628                        return isRtl ? this.model.revisions.length - ui.value - 1 : ui.value;
     629                },
     630
     631                addTooltip: function( handle, message, e ) {
     632                        var offset = $( '.revisions-buttons' ).offset().left,
     633                                calculatedX = e.clientX - offset;
     634
     635                        handle.parent().find( '.ui-slider-tooltip' ).html( message ).css( 'left', calculatedX );
     636                        handle.parent().find( '.arrow' ).css( 'left', calculatedX );
     637                },
     638
    455639                slide: function( event, ui ) {
    456                         var attributes = {
    457                                 to: this.model.revisions.at( isRtl ? this.model.revisions.length - ui.value - 1 : ui.value ) // Reverse directions for Rtl
    458                         };
     640                        var attributes;
     641                        // Compare two revisions mode
     642                        if ( 'undefined' !== typeof ui.values && this.model.get( 'compareTwoMode' ) ) {
     643                                // Prevent sliders from occupying same spot
     644                                if ( ui.values[1] === ui.values[0] )
     645                                        return false;
     646                                attributes = {
     647                                        to: this.model.revisions.at( isRtl ? this.model.revisions.length - ui.values[1] - 1 : ui.values[1] ), // Reverse directions for RTL.
     648                                        from: this.model.revisions.at( isRtl ? this.model.revisions.length - ui.values[0] - 1 : ui.values[0] ) // Reverse directions for RTL.
     649                                };
    459650
    460                         // If we're at the first revision, unset 'from'.
    461                         if ( isRtl ? this.model.revisions.length - ui.value - 1 : ui.value ) // Reverse directions for Rtl
    462                                 attributes.from = this.model.revisions.at( isRtl ? this.model.revisions.length - ui.value - 2 : ui.value - 1 );
    463                         else
    464                                 this.model.unset('from', { silent: true });
     651                        } else {
     652                                // Compare single revision mode
     653                                var sliderPosition = this.getSliderPosition( ui );
     654                                attributes = {
     655                                        to: this.model.revisions.at( sliderPosition )
     656                                };
    465657
     658                                // If we're at the first revision, unset 'from'.
     659                                if ( sliderPosition ) // Reverse directions for RTL.
     660                                        attributes.from = this.model.revisions.at( sliderPosition - 1  );
     661                                else
     662                                        this.model.unset('from', { silent: true });
     663
     664                        }
    466665                        this.model.set( attributes );
     666
     667                        // Maintain state history when dragging
     668                        this.model.revisionsRouter.navigateRoute( attributes.to.id, ( attributes.from ? attributes.from.id : 0 ) );
     669
    467670                },
    468671
    469672                stop: function( event, ui ) {
    470                         $( window ).unbind( 'mousemove' ); // Stop tracking the mouse
    471                         // Reset settings pops handle back to the step position
    472                         this.settings.trigger( 'change' );
     673                        if ( true !== this.model.get( 'compareTwoMode' )) {
     674                                $( window ).unbind( 'mousemove' ); // Stop tracking the mouse.
     675                                // Reset settings pops handle back to the step position.
     676                                this.settings.trigger( 'change' );
     677                        }
    473678                }
    474679        });
    475680
     
    486691                }
    487692        });
    488693
     694        // The revisions router
     695        // takes URLs with #hash fragments and routes them
     696        revisions.router.Router = Backbone.Router.extend({
     697                model: null,
     698
     699                routes: {
     700                        'revision/from/:from/to/:to/handles/:handles': 'gotoRevisionId'
     701                },
     702
     703                navigateRoute: function( to, from ) {
     704                        var navigateTo = '/revision/from/' + from + '/to/' + to + '/handles/';
     705                        if ( this.model.get( 'compareTwoMode' ) ){
     706                                navigateTo = navigateTo + '2';
     707                        } else {
     708                                navigateTo = navigateTo + '1';
     709                        }
     710                        this.navigate( navigateTo );
     711                },
     712
     713                gotoRevisionId: function( from, to, handles ) {
     714                        if ( '2' === handles ) {
     715                                this.model.set( { compareTwoMode: true } );
     716                                $( '.compare-two-revisions' ).prop( 'checked', true );
     717                        } else {
     718                                this.model.set( { compareTwoMode: false } );
     719                                $( '.compare-two-revisions' ).prop( 'checked', false );
     720                        }
     721                        if ('undefined' !== typeof this.model ) {
     722                                var selectedToRevision =
     723                                        this.model.revisions.findWhere( { 'id': Number( to ) } ),
     724                                        selectedFromRevision =
     725                                        this.model.revisions.findWhere( { 'id': Number( from ) } );
     726
     727                                this.model.set( {
     728                                        to:   selectedToRevision,
     729                                        from: selectedFromRevision } );
     730                        }
     731                }
     732        });
     733
    489734        // Initialize the revisions UI.
    490735        revisions.init = function() {
    491736                revisions.view.frame = new revisions.view.Frame({
    492737                        collection: new revisions.model.Revisions( revisions.settings.revisionData )
    493738                }).render();
     739                // Only allow compare two mode if three or more revisions
    494740        };
    495741
    496742        $( revisions.init );
  • wp-admin/revision.php

     
    118118        <span class="spinner"></span>
    119119        <div class="revisions-control-frame"></div>
    120120        <div class="revisions-diff-frame"></div>
     121
    121122</script>
    122123
    123 <script id="tmpl-revisions-controls" type="text/html">
    124 
    125         <div class="revision-toggle-compare-mode">
    126                 <label>
    127                         <input type="checkbox" class="compare-two-revisions" />
    128                         <?php esc_attr_e( 'Compare two revisions' ); ?>
    129                 </label>
    130         </div>
    131 
     124<script id="tmpl-revisions-buttons" type="text/html">
    132125        <div class="revisions-previous">
    133126                <input class="button" type="button" id="previous" value="<?php echo esc_attr_x( 'Previous', 'Button label for a previous revision' ); ?>" />
    134127        </div>
     
    138131        </div>
    139132</script>
    140133
     134<script id="tmpl-revisions-tooltip" type="text/html">
     135        <div class="ui-slider-tooltip ui-widget-content ui-corner-all "></div>
     136        <div class="arrow"></div>
     137</script>
    141138
     139<script id="tmpl-revisions-checkbox" type="text/html">
     140        <div class="revision-toggle-compare-mode">
     141                <label>
     142                        <input type="checkbox" class="compare-two-revisions" />
     143                        <?php esc_attr_e( 'Compare two revisions' ); ?>
     144                </label>
     145        </div>
     146</script>
     147
    142148<script id="tmpl-revisions-meta" type="text/html">
    143149        <div id="diff-header">
    144150                <div id="diff-header-from" class="diff-header">
     
    177183        <# }); #>
    178184</script>
    179185
    180 <script id="tmpl-revisions-diff-old" type="text/html">
    181         <div id="toggle-revision-compare-mode">
    182                 <label>
    183                         <input type="checkbox" id="compare-two-revisions" />
    184                         <?php esc_attr_e( 'Compare two revisions' ); ?>
    185                 </label>
    186         </div>
    187 
    188         <div id="diff-header">
    189                 <div id="diff-header-from" class="diff-header">
    190                         <div id="diff-title-from" class="diff-title">
    191                                 <strong><?php _ex( 'From:', 'Followed by post revision info' ); ?></strong> {{{ data.titleFrom }}}
    192                         </div>
    193                         <div class="clear"></div>
    194                 </div>
    195 
    196                 <div id="diff-header-to" class="diff-header">
    197                         <div id="diff-title-to" class="diff-title">
    198                                 <strong><?php _ex( 'To:', 'Followed by post revision info' ); ?></strong> {{{ data.titleTo }}}
    199                         </div>
    200 
    201                         <input type="button" id="restore-revision" class="button button-primary" data-restore-link="{{{ data.restoreLink }}}" value="<?php esc_attr_e( 'Restore This Revision' )?>" />
    202                         <div class="clear"></div>
    203                 </div>
    204         </div>
    205 
    206         <div id="diff-table">{{{ data.diff }}}</div>
    207 </script>
    208 
    209 <script id="tmpl-revision-interact-old" type="text/html">
    210         <div id="diff-previous-revision">
    211                 <input class="button" type="button" id="previous" value="<?php echo esc_attr_x( 'Previous', 'Button label for a previous revision' ); ?>" />
    212         </div>
    213 
    214         <div id="diff-next-revision">
    215                 <input class="button" type="button" id="next" value="<?php echo esc_attr_x( 'Next', 'Button label for a next revision' ); ?>" />
    216         </div>
    217 
    218 </script>
    219 
    220186<script id="tmpl-revision-ticks" type="text/html">
    221187        <div class="revision-tick completed-{{{ data.completed }}} scope-of-changes-{{{ data.scopeOfChanges }}}">
    222188                <span class="ui-slider-tooltip ui-widget-content ui-corner-all hidden"></span>
    223189        </div>
    224190</script>
     191
    225192<?php
    226193require_once( './admin-footer.php' );