Layouts.DrawerLayout Class
samsara/layouts/DrawerLayout.js:30
        A layout composed of two sections: content and drawer.
The drawer is initially hidden behind the content, until it is moved by a call to setPosition. The source of the movement can be by subscribing the layout to user input (like a Mouse/Touch/Scroll input), or by manually calling setPosition with a transition.
The layout emits a start, update and end Stream with payload
 progress - Number between 0 and 1 indicating how open the drawer is
 value - Pixel displacement in how open the drawer is
It also emits close and open events.
The drawer can be revealed from any side of the content (top, left, bottom, right), by specifying a side option.
Constructor
Layouts.DrawerLayout
        
                - 
                                [options]
Parameters:
- 
                                [options]Object optionalOptions - 
                                            [side]Number optionalSide to reveal the drawer from. Defined in DrawerLayout.SIDES 
- 
                                            [revealLength]Number optionalThe maximum length to reveal the drawer 
- 
                                            [velocityThreshold]Number optionalThe velocity needed to complete the drawer transition 
- 
                                            [positionThreshold]Number optionalThe displacement needed to complete the drawer transition 
- 
                                            [transitionClose]Object optionalA transition definition for closing the drawer 
- 
                                            [transitionOpen]Object optionalA transition definition for opening the drawer 
 
- 
                                            
Item Index
Methods
Attributes
Methods
"on"
                    
                            - 
                                            type
- 
                                            handler
Adds a handler to the type channel which will be executed on emit.
add
                    
                            - 
                                            object
Extends the render tree subtree with a new node.
Parameters:
- 
                                            objectSizeNode | LayoutNode | SurfaceNode 
Returns:
addContent
                    
                            - 
                                            content
Set the content component with a Surface or View.
Parameters:
- 
                                            contentSurface | View
addDrawer
                    
                            - 
                                            drawer
Set the drawer component with a Surface of View.
Parameters:
- 
                                            drawerSurface | View
close
                    
                            - 
                                            [transition]
- 
                                            [callback]
Conceals the drawer with a transition.
                    Emits a close event when an closing transition has been committed to.
extend
                    
                            - 
                                            protoObj
- 
                                            constants
Allows a class to extend Controller. Note: this is a method defined on the Controller constructor
get
                    
                            - 
                                            key
Look up options value by key or get the full options hash.
Parameters:
- 
                                            keyStringKey 
Returns:
Associated object or full options hash
getOptions
                    
                            - 
                                            key
Options getter.
Parameters:
- 
                                            keyStringKey 
Returns:
object Options value for the key
key
                    
                            - 
                                            key
Return OptionsManager based on sub-object retrieved by key.
Parameters:
- 
                                            keyStringKey 
Returns:
Value
off
                    
                            - 
                                            type
- 
                                            handler
Removes the handler from the type channel.
                    This undoes the work of on.
open
                    
                            - 
                                            [transition]
- 
                                            [callback]
Reveals the drawer with a transition.
                    Emits an open event when an opening transition has been committed to.
OptionsManager.patch
                    
                            - 
                                            options
- 
                                            patch
Constructor method. Create OptionsManager from source dictionary with arguments overriden by patch dictionary.
Parameters:
- 
                                            optionsObjectOptions to be patched 
- 
                                            patch...ObjectOptions to overwrite 
Returns:
source
patch
                    
                            - 
                                            options
Patch options with provided patches. Triggers change event on the object.
Parameters:
- 
                                            optionsObjectPatch options 
Returns:
this
reset
                    
                            - 
                                            [transition]
Resets to last state of being open or closed
set
                    
                            - 
                                            sources
Introduce new data streams to the layout node in {key : value} pairs.
                    Here the key is one of "transform", "origin", "align" or "opacity".
                    The value is either a stream, or a simple type like a Number or Array.
                    Simple types will be wrapped in an Observerable to emit appropriate events.
Parameters:
- 
                                            sourcesObjectObject of data sources 
setOrigin
                    
                            - 
                                            origin
Setter for origin.
Parameters:
- 
                                            originNumber[] | StreamOrigin as [x,y], or a stream. 
setPosition
                    
                            - 
                                            position
- 
                                            [transition]
- 
                                            [callback]
Sets the position in pixels for the content's displacement.
setProportions
                    
                            - 
                                            proportions
Setter for proportions.
Parameters:
- 
                                            proportionsNumber[] | StreamProportions as [x,y], or a stream. 
setSize
                    
                            - 
                                            size
Setter for size.
Parameters:
- 
                                            sizeNumber[] | StreamSize as [width, height] in pixels, or a stream.