2013-02-22 01:25:41 +01:00
/ * *
2013-04-13 21:00:13 +02:00
* EGroupware eTemplate2 - Split panel
2013-02-22 01:25:41 +01:00
*
* @ license http : //opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @ package etemplate
* @ subpackage api
* @ link http : //www.egroupware.org
* @ author Nathan Gray
* @ copyright Nathan Gray 2013
* @ version $Id$
* /
/ * e g w : u s e s
2016-06-06 17:38:20 +02:00
/ v e n d o r / b o w e r - a s s e t / j q u e r y / d i s t / j q u e r y . j s ;
2013-02-22 01:25:41 +01:00
jquery . splitter ;
et2 _core _baseWidget ;
* /
/ * *
* A container widget that accepts 2 children , and puts a resize bar between them .
*
* This is the etemplate2 implementation of the traditional split pane / split panel .
* The split can be horizontal or vertical , and can be limited in size . You can also
* turn on double - click docking to minimize one of the children .
*
* @ see http : //methvin.com/splitter/ Uses Splitter
2013-04-13 21:00:13 +02:00
* @ augments et2 _DOMWidget
2013-02-22 01:25:41 +01:00
* /
2016-02-29 21:40:43 +01:00
var et2 _split = ( function ( ) { "use strict" ; return et2 _DOMWidget . extend ( [ et2 _IResizeable , et2 _IPrint ] ,
2013-04-13 21:00:13 +02:00
{
2013-02-22 01:25:41 +01:00
attributes : {
"orientation" : {
"name" : "Orientation" ,
"description" : "Horizontal or vertical (v or h)" ,
"default" : "v" ,
"type" : "string"
} ,
"outline" : {
"name" : "Outline" ,
"description" : "Use a 'ghosted' copy of the splitbar and does not resize the panes until the mouse button is released. Reduces flickering or unwanted re-layout during resize" ,
"default" : false ,
"type" : "boolean"
} ,
"dock_side" : {
"name" : "Dock" ,
"description" : "Allow the user to 'Dock' the splitbar to one side of the splitter, essentially hiding one pane and using the entire splitter area for the other pane. One of leftDock, rightDock, topDock, bottomDock." ,
"default" : et2 _no _init ,
"type" : "string"
} ,
"width" : {
"default" : "100%"
} ,
// Not needed
"overflow" : { "ignore" : true } ,
"no_lang" : { "ignore" : true } ,
"rows" : { "ignore" : true } ,
"cols" : { "ignore" : true }
} ,
2014-01-17 13:43:14 +01:00
DOCK _TOLERANCE : 15 ,
2013-04-13 21:00:13 +02:00
/ * *
* Constructor
2015-02-25 12:18:26 +01:00
*
2013-04-13 21:00:13 +02:00
* @ memberOf et2 _split
* /
2013-02-22 01:25:41 +01:00
init : function ( ) {
this . _super . apply ( this , arguments ) ;
2016-06-02 16:51:15 +02:00
this . div = jQuery ( document . createElement ( "div" ) )
2013-11-21 00:27:10 +01:00
. addClass ( 'et2_split' ) ;
2013-02-22 01:25:41 +01:00
// Create the dynheight component which dynamically scales the inner
2013-07-20 15:45:22 +02:00
// container.
2013-10-03 14:56:29 +02:00
this . dynheight = new et2 _dynheight (
this . getParent ( ) . getDOMNode ( ) || this . getInstanceManager ( ) . DOMContainer ,
this . div , 100
) ;
2013-02-22 01:25:41 +01:00
// Add something so we can see it - will be replaced if there's children
2016-06-02 16:51:15 +02:00
this . left = jQuery ( "<div>Top / Left</div>" ) . appendTo ( this . div ) ;
this . right = jQuery ( "<div>Bottom / Right</div>" ) . appendTo ( this . div ) ;
2013-11-21 00:27:10 +01:00
// Deferred object so we can wait for children
this . loading = jQuery . Deferred ( ) ;
2015-02-11 00:03:35 +01:00
// Flag to temporarily ignore resizing
this . stop _resize = false ;
2013-02-22 01:25:41 +01:00
} ,
destroy : function ( ) {
2013-04-10 11:25:05 +02:00
// Stop listening
this . left . next ( ) . off ( "mouseup" ) ;
2015-02-25 12:18:26 +01:00
2013-02-22 17:02:47 +01:00
// Destroy splitter, restore children
2013-02-22 01:25:41 +01:00
this . div . trigger ( "destroy" ) ;
2013-02-22 17:02:47 +01:00
// Destroy dynamic full-height
2013-02-22 01:25:41 +01:00
this . dynheight . free ( ) ;
2014-02-13 19:28:53 +01:00
this . _super . apply ( this , arguments ) ;
2015-02-25 12:18:26 +01:00
2013-02-22 01:25:41 +01:00
// Remove placeholder children
if ( this . _children . length == 0 )
{
this . div . empty ( ) ;
}
this . div . remove ( ) ;
} ,
/ * *
* Tap in here to check if we have real children , because all children should be created
2013-02-22 17:02:47 +01:00
* by this point . If there are , replace the placeholders .
2013-02-22 01:25:41 +01:00
* /
2015-08-20 16:57:18 +02:00
loadFromXML : function ( ) {
2013-02-22 01:25:41 +01:00
this . _super . apply ( this , arguments ) ;
if ( this . _children . length > 0 )
{
if ( this . _children [ 0 ] )
{
this . left . detach ( ) ;
2016-06-02 16:51:15 +02:00
this . left = jQuery ( this . _children [ 0 ] . getDOMNode ( this . _children [ 0 ] ) )
2013-02-22 01:25:41 +01:00
. appendTo ( this . div ) ;
}
if ( this . _children [ 1 ] )
{
this . right . detach ( ) ;
2016-06-02 16:51:15 +02:00
this . right = jQuery ( this . _children [ 1 ] . getDOMNode ( this . _children [ 1 ] ) )
2013-02-22 01:25:41 +01:00
. appendTo ( this . div ) ;
}
}
2013-02-22 17:02:47 +01:00
// Nextmatches (and possibly other "full height" widgets) need to be adjusted
// Trigger the dynamic height thing to re-initialize
for ( var i = 0 ; i < this . _children . length ; i ++ )
{
if ( this . _children [ i ] . dynheight )
{
this . _children [ i ] . dynheight . outerNode = ( i == 0 ? this . left : this . right ) ;
this . _children [ i ] . dynheight . initialized = false ;
}
}
2013-02-22 01:25:41 +01:00
} ,
doLoadingFinished : function ( ) {
this . _super . apply ( this , arguments ) ;
// Use a timeout to give the children a chance to finish
var self = this ;
window . setTimeout ( function ( ) {
self . _init _splitter ( ) ;
} , 1 ) ;
2015-02-25 12:18:26 +01:00
2013-11-21 00:27:10 +01:00
// Not done yet, but widget will let you know
return this . loading . promise ( ) ;
2013-02-22 01:25:41 +01:00
} ,
/ * *
2013-02-22 17:02:47 +01:00
* Initialize the splitter UI
2013-02-22 01:25:41 +01:00
* Internal .
* /
_init _splitter : function ( ) {
if ( ! this . isAttached ( ) ) return ;
2014-01-27 23:04:56 +01:00
// Avoid trying to do anything while hidden - it ruins all the calculations
// Try again in resize()
if ( ! this . div . is ( ':visible' ) ) return ;
2013-02-22 01:25:41 +01:00
var options = {
type : this . orientation ,
dock : this . dock _side ,
2013-11-21 00:27:10 +01:00
splitterClass : "et2_split" ,
outline : true ,
2014-02-13 18:05:14 +01:00
eventNamespace : '.et2_split.' + this . id ,
// Default sizes, in case the preference doesn't work
// Splitter would normally just go to 50%, but our deferred loading
// ruins sizing for it
sizeTop : this . dynheight . outerNode . height ( ) / 2 ,
sizeLeft : this . dynheight . outerNode . width ( ) / 2
2013-02-22 01:25:41 +01:00
} ;
2015-09-10 11:56:38 +02:00
2015-02-25 12:18:26 +01:00
var widget = this ;
//Convert percent size to pixel
var per2pix = function ( _size )
{
var size = _size . replace ( "%" , '' ) ;
2015-03-03 14:50:11 +01:00
var pix = 0 ;
2015-02-25 12:18:26 +01:00
if ( widget . orientation == "v" )
{
2015-03-03 14:50:11 +01:00
pix = size * widget . dynheight . outerNode . width ( ) / 100 ;
2015-02-25 12:18:26 +01:00
}
else
{
2015-03-03 14:50:11 +01:00
pix = size * widget . dynheight . outerNode . height ( ) / 100 ;
2015-02-25 12:18:26 +01:00
}
2015-03-03 14:50:11 +01:00
return pix . toFixed ( 2 ) ;
2016-02-29 21:40:43 +01:00
} ;
2015-02-25 12:18:26 +01:00
//Convert pixel size to percent
var pix2per = function ( _size )
{
2015-03-03 14:50:11 +01:00
var per = 0 ;
2015-02-25 12:18:26 +01:00
if ( widget . orientation == "v" )
{
2015-03-03 14:50:11 +01:00
per = _size * 100 / widget . dynheight . outerNode . width ( ) ;
2015-02-25 12:18:26 +01:00
}
else
{
2015-03-03 14:50:11 +01:00
per = _size * 100 / widget . dynheight . outerNode . height ( ) ;
2015-02-25 12:18:26 +01:00
}
2015-03-03 14:50:11 +01:00
return per . toFixed ( 2 ) + "%" ;
2016-02-29 21:40:43 +01:00
} ;
2015-02-25 12:18:26 +01:00
2013-02-22 17:02:47 +01:00
// Check for position preference, load it in
2013-02-22 01:25:41 +01:00
if ( this . id )
{
var pref = this . egw ( ) . preference ( 'splitter-size-' + this . id , this . egw ( ) . getAppName ( ) ) ;
if ( pref )
{
2015-02-25 12:18:26 +01:00
// TODO:This condition can be removed for the next release
// because this is a correction data and supposely all new prefs size
// are all in percent
if ( pref [ Object . keys ( pref ) ] . toString ( ) . match ( /%/g ) )
{
pref [ Object . keys ( pref ) ] = per2pix ( pref [ Object . keys ( pref ) ] ) ;
}
2014-02-18 17:55:55 +01:00
if ( this . orientation == "v" && pref [ 'sizeLeft' ] < this . dynheight . outerNode . width ( ) ||
this . orientation == "h" && pref [ 'sizeTop' ] < this . dynheight . outerNode . height ( ) )
{
2016-06-02 16:51:15 +02:00
options = jQuery . extend ( options , pref ) ;
2014-02-18 17:55:55 +01:00
this . prefSize = pref [ this . orientation == "v" ? 'sizeLeft' : 'sizeTop' ] ;
}
2013-02-22 01:25:41 +01:00
}
2015-02-17 13:50:55 +01:00
// If there is no preference yet, set it to half size
// Otherwise the right pane gets the fullsize
2015-03-03 12:43:48 +01:00
if ( typeof this . prefSize == 'undefined' || ! this . prefSize )
2015-02-17 13:50:55 +01:00
{
this . prefSize = this . orientation == "v" ? options . sizeLeft : options . sizeTop ;
}
2013-02-22 01:25:41 +01:00
}
// Avoid double init
if ( this . div . hasClass ( options . splitterClass ) )
{
this . div . trigger ( "destroy" ) ;
}
2013-02-22 17:02:47 +01:00
// Initialize splitter
2013-02-22 01:25:41 +01:00
this . div . splitter ( options ) ;
2013-11-21 00:27:10 +01:00
2013-11-29 22:26:35 +01:00
this . div . trigger ( 'resize' , [ options . sizeTop || options . sizeLeft || 0 ] ) ;
2015-02-25 12:18:26 +01:00
2013-11-21 00:27:10 +01:00
// Start docked?
if ( options . dock )
{
2014-01-17 13:43:14 +01:00
if ( options . dock == "bottomDock" && Math . abs ( options . sizeTop - this . div . height ( ) ) < et2 _split . DOCK _TOLERANCE ||
2014-01-27 23:04:56 +01:00
options . dock == "topDock" && options . sizeTop == 0 ||
! this . div . is ( ':visible' ) // Starting docked if hidden simplifies life when resizing
)
2013-11-21 00:27:10 +01:00
{
this . dock ( ) ;
}
}
2015-02-25 12:18:26 +01:00
2013-02-22 01:25:41 +01:00
// Add icon to splitter bar
var icon = "ui-icon-grip-"
2015-02-25 12:18:26 +01:00
+ ( this . dock _side ? "solid" : "dotted" ) + "-"
2013-02-22 01:25:41 +01:00
+ ( this . orientation == "h" ? "horizontal" : "vertical" ) ;
2016-06-02 16:51:15 +02:00
jQuery ( document . createElement ( "div" ) )
2013-02-22 01:25:41 +01:00
. addClass ( "ui-icon" )
. addClass ( icon )
. appendTo ( this . left . next ( ) ) ;
2013-04-10 11:25:05 +02:00
// Save preference when size changed
if ( this . id && this . egw ( ) . getAppName ( ) )
{
2013-12-18 19:17:34 +01:00
var self = this ;
2013-11-21 00:27:10 +01:00
this . left . on ( "resize" + options . eventNamespace , function ( e ) {
2014-02-13 18:05:14 +01:00
2014-01-17 13:43:14 +01:00
// Force immediate layout, so proper layout & sizes are available
// for resize(). Chrome defers layout, so current DOM node sizes
2015-02-25 12:18:26 +01:00
// are not available to widgets if they ask.
2014-01-17 13:43:14 +01:00
var display = this . style . display ;
this . style . display = 'none' ;
this . offsetHeight ;
this . style . display = display ;
2015-02-25 12:18:26 +01:00
2014-02-13 18:05:14 +01:00
if ( e . namespace == options . eventNamespace . substr ( 1 ) && ! self . isDocked ( ) )
{
// Store current position in preferences
var size = self . orientation == "v" ? { sizeLeft : self . left . width ( ) } : { sizeTop : self . left . height ( ) } ;
2015-09-29 14:14:41 +02:00
self . prefSize = size [ self . orientation == "v" ? 'sizeLeft' : 'sizeTop' ] ;
2015-02-25 12:18:26 +01:00
var prefInPercent = self . orientation == "v" ? { sizeLeft : pix2per ( size . sizeLeft ) } : { sizeTop : pix2per ( size . sizeTop ) } ;
2015-09-30 17:29:26 +02:00
if ( parseInt ( self . orientation == 'v' ? prefInPercent . sizeLeft : prefInPercent . sizeTop ) < 100 )
{
self . egw ( ) . set _preference ( self . egw ( ) . getAppName ( ) , 'splitter-size-' + self . id , prefInPercent ) ;
}
2014-02-13 18:05:14 +01:00
}
2015-02-25 12:18:26 +01:00
2014-01-17 13:43:14 +01:00
// Ok, update children
2013-11-21 00:27:10 +01:00
self . iterateOver ( function ( widget ) {
2015-10-16 09:40:05 +02:00
// Extra resize would cause stalling chrome
// as resize might confilict with bottom download bar
// in chrome which does a window resize, so better to not
2016-02-29 21:40:43 +01:00
// trigger second resize and leave that to an application
2015-10-16 09:40:05 +02:00
// if it is neccessary.
2016-02-29 21:40:43 +01:00
2014-01-17 13:43:14 +01:00
// Above forcing is not enough for Firefox, defer
window . setTimeout ( jQuery . proxy ( function ( ) { this . resize ( ) ; } , widget ) , 200 ) ;
2013-11-21 00:27:10 +01:00
} , self , et2 _IResizeable ) ;
2013-04-10 11:25:05 +02:00
} ) ;
}
2013-11-21 00:27:10 +01:00
this . loading . resolve ( ) ;
2013-02-22 01:25:41 +01:00
} ,
/ * *
* Implement the et2 _IResizable interface to resize
* /
resize : function ( ) {
2014-01-27 23:04:56 +01:00
// Avoid doing anything while hidden - check here, and init if needed
if ( this . div . children ( ) . length <= 2 )
{
this . _init _splitter ( ) ;
}
2015-02-11 00:03:35 +01:00
if ( this . dynheight && ! this . stop _resize )
2013-02-22 01:25:41 +01:00
{
2013-11-21 00:27:10 +01:00
var old = { w : this . div . width ( ) , h : this . div . height ( ) } ;
2013-10-03 14:56:29 +02:00
this . dynheight . update ( function ( w , h ) {
if ( this . orientation == "v" )
{
this . left . height ( h ) ;
this . right . height ( h ) ;
2017-06-26 11:01:48 +02:00
if ( this . left . width ( ) + this . right . width ( ) + this . div . find ( '.splitter-bar' ) . outerWidth ( ) < this . div . width ( ) ||
this . left . width ( ) + this . right . width ( ) - this . div . find ( '.splitter-bar' ) . outerWidth ( ) > this . div . width ( ) )
this . div . trigger ( 'resize.et2_split.' + this . id , this . prefSize ) ;
2013-10-03 14:56:29 +02:00
}
if ( this . orientation == "h" )
{
this . left . width ( w ) ;
this . right . width ( w ) ;
2013-11-21 00:27:10 +01:00
if ( this . isDocked ( ) ) {
if ( this . dock _side == "topDock" )
{
this . right . height ( h ) ;
this . left . height ( 0 ) ;
}
else
{
this . left . height ( h ) ;
this . right . height ( 0 ) ;
}
2013-11-20 01:03:58 +01:00
}
2013-10-03 14:56:29 +02:00
}
2017-06-26 11:01:48 +02:00
if ( w != old . w || h != old . h )
2013-11-21 00:27:10 +01:00
{
2014-01-27 23:04:56 +01:00
this . div . trigger ( 'resize.et2_split.' + this . id , this . prefSize ) ;
2013-11-21 00:27:10 +01:00
}
2013-10-03 14:56:29 +02:00
} , this ) ;
2013-02-22 01:25:41 +01:00
}
} ,
getDOMNode : function ( ) {
return this . div [ 0 ] ;
} ,
/ * *
* Set splitter orientation
*
* @ param orient String "v" or "h"
* /
set _orientation : function ( orient ) {
this . orientation = orient ;
2015-02-25 12:18:26 +01:00
2013-02-22 01:25:41 +01:00
this . _init _splitter ( ) ;
} ,
/ * *
* Set the side for docking
*
* @ param dock String One of leftDock , rightDock , topDock , bottomDock
* /
set _dock _side : function ( dock ) {
this . dock _side = dock ;
this . _init _splitter ( ) ;
} ,
/ * *
* Turn on or off resizing while dragging
*
* @ param outline boolean
* /
set _outline : function ( outline ) {
this . outline = outline ;
this . _init _splitter ( ) ;
} ,
/ * *
* If the splitter has a dock direction set , dock it .
* Docking requires the dock attribute to be set .
* /
dock : function ( ) {
2013-11-21 00:27:10 +01:00
if ( this . isDocked ( ) ) return ;
2013-02-22 01:25:41 +01:00
this . div . trigger ( "dock" ) ;
} ,
/ * *
* If the splitter is docked , restore it to previous size
* Docking requires the dock attribute to be set .
* /
undock : function ( ) {
this . div . trigger ( "undock" ) ;
} ,
2013-11-21 00:27:10 +01:00
/ * *
* Determine if the splitter is docked
* @ return boolean
* /
isDocked : function ( ) {
2016-06-02 16:51:15 +02:00
var bar = jQuery ( '.splitter-bar' , this . div ) ;
2013-11-21 00:27:10 +01:00
return bar . hasClass ( 'splitter-bar-horizontal-docked' ) || bar . hasClass ( 'splitter-bar-vertical-docked' ) ;
} ,
2013-02-22 01:25:41 +01:00
/ * *
* Toggle the splitter ' s docked state .
* Docking requires the dock attribute to be set .
* /
toggleDock : function ( ) {
this . div . trigger ( "toggleDock" ) ;
2015-02-11 00:03:35 +01:00
} ,
// Printing
/ * *
* Prepare for printing by stopping all the fuss
*
* /
beforePrint : function ( ) {
// Resizing causes preference changes & relayouts. Don't do it.
this . stop _resize = true ;
// Add the class, if needed
this . div . addClass ( 'print' ) ;
// Don't return anything, just work normally
} ,
afterPrint : function ( ) {
this . div . removeClass ( 'print' ) ;
this . stop _resize = false ;
2013-02-22 01:25:41 +01:00
}
2016-02-29 21:40:43 +01:00
} ) ; } ) . call ( this ) ;
2013-02-22 01:25:41 +01:00
et2 _register _widget ( et2 _split , [ "split" ] ) ;