101.5.21 • Published 2 years ago

xtracta-flexlayout v101.5.21

Weekly downloads
-
License
ISC
Repository
bitbucket
Last release
2 years ago

Xtracta FlexLayout

Xtracta FlexLayout is an updated version of xtracta-flexlayout.

FlexLayout is a layout manager that arranges React components in multiple tab sets, tabs can be resized and moved.

FlexLayout Demo Screenshot

Run the Demo

Try it now using JSFiddle

Screenshot of Caplin Liberator Explorer using FlexLayout

FlexLayout's only dependencies are React and uuid.

Features:

  • splitters
  • tabs
  • tab dragging and ordering
  • tabset dragging (move all the tabs in a tabset in one operation)
  • dock to tabset or edge of frame
  • maximize tabset (double click tabset header or use icon)
  • tab overflow (show menu when tabs overflow, scroll tabs using mouse wheel)
  • border tabsets
  • popout tabs into new browser windows (only enabled in latest browsers)
  • submodels, allow layouts inside layouts
  • tab renaming (double click tab text to rename)
  • themeing - light, gray and dark
  • touch events - works on mobile devices (iPad, Android)
  • add tabs using drag, indirect drag, add to active tabset, add to tabset by id
  • preferred pixel size tabsets (try to keep their size when window resizes)
  • headed tabsets
  • tab and tabset attributes: enableHeader, enableTabStrip, enableDock, enableDrop...
  • customizable tabs and tabset header rendering
  • esc cancels drag
  • typescript type declarations included
  • supports overriding css class names via the classNameMapper prop, for use in css modules

Installation

FlexLayout is in the npm repository. Simply install React and FlexLayout from npm:

npm install react --save
npm install react-dom --save
npm install flexlayout-react --save

Import React and FlexLayout in your modules:

import React from "react";
import ReactDOM from "react-dom";
import FlexLayout from "flexlayout-react";

Include the light, gray or dark style in your html:

<link rel="stylesheet" href="node_modules/flexlayout-react/style/light.css" />

Usage

The <Layout> component renders the tabsets and splitters, it takes the following props:

Required props:

PropDescription
modelthe layout model
factorya factory function for creating React components

Optional props:

PropDescription
fontthe tab font (overrides value in css). Example: font={{size:"12px", style:"italic"}}
iconsobject mapping keys among close, maximize, restore, more, popout to React nodes to use in place of the default icons
onActionfunction called whenever the layout generates an action to update the model (allows for intercepting actions before they are dispatched to the model, for example, asking the user to confirm a tab close.) Returning undefined from the function will halt the action, otherwise return the action to continue
onRenderTabfunction called when rendering a tab, allows leading (icon), content section, buttons and name used in overflow menu to be customized
onRenderTabSetfunction called when rendering a tabset, allows header and buttons to be customized
onModelChangefunction called when model has changed
onExternalDragfunction called when an external object (not a tab) gets dragged onto the layout, with a single dragenter argument. Should return either undefined to reject the drag/drop or an object with keys dragText, jsonDrop, to create a tab via drag (similar to a call toaddTabToTabSet). FunctiononDropis passed the added tabNodeand thedropDragEvent`, unless the drag was canceled.
classNameMapperfunction called with default css class name, return value is class name that will be used. Mainly for use with css modules.
i18nMapperfunction called for each I18nLabel to allow user translation, currently used for tab and tabset move messages, return undefined to use default values
supportsPopoutif left undefined will do simple check based on userAgent
popoutURLURL of popout window relative to origin, defaults to popout.html
realtimeResizeboolean value, defaults to false, resize tabs as splitters are dragged. Warning: this can cause resizing to become choppy when tabs are slow to draw
onTabDragfunction called while dragging a tab, whether from the layout or using addTabWithDragAndDrop. Called with the TabNode being dragged / the tab json from addTabWithDragAndDrop, the TabNode being dragged over, the x and y coordinates relative to the dragged-over tab, and the DockLocation that would be used. Should return undefined for default behavior, or an object containing x, y, width, height, callback, cursor fields. Coordinates are in pixels relative to the dragged-over tab, and callback will be called with the same arguments if the tab is dropped. cursor is an optional string field that should contain a CSS cursor value, such as copy or row-resize. If callback is called, the layout does not perform its default behavior on drop.
onRenderDragRectcallback for rendering the drag rectangles
onRenderFloatingTabPlaceholdercallback for rendering the floating tab placeholder
onContextMenucallback for handling context actions on tabs and tabsets
onAuxMouseClickcallback for handling mouse clicks on tabs and tabsets with alt, meta, shift keys, also handles center mouse clicks
iconFactorya factory function for creating icon components for tab bar buttons. NOTE: for greater customization of the tab use onRenderTab instead of this callback
titleFactorya factory function for creating title components for tab bar buttons. NOTE: for greater customization of the tab use onRenderTab instead of this callback
FloatWindowContainera react component that wrap float window tab. Useful for those using @mui and @emotion

The model is tree of Node objects that define the structure of the layout.

The factory is a function that takes a Node object and returns a React component that should be hosted by a tab in the layout.

The model can be created using the Model.fromJson(jsonObject) static method, and can be saved using the model.toJson() method.

this.state = {model: FlexLayout.Model.fromJson(json)};

render() {
	<Layout model={this.state.model} factory={factory}/>
}

Example Configuration:

var json = {
    global: {},
    borders: [],
    layout: {
        type: "row",
        weight: 100,
        children: [
            {
                type: "tabset",
                weight: 50,
                children: [
                    {
                        type: "tab",
                        name: "One",
                        component: "button",
                    },
                ],
            },
            {
                type: "tabset",
                weight: 50,
                children: [
                    {
                        type: "tab",
                        name: "Two",
                        component: "button",
                    },
                ],
            },
        ],
    },
};

Example Code

import React from "react";
import ReactDOM from "react-dom";
import FlexLayout from "flexlayout-react";

class Main extends React.Component {

    constructor(props) {
        super(props);
        this.state = {model: FlexLayout.Model.fromJson(json)};
    }

    factory = (node) => {
        var component = node.getComponent();
        if (component === "button") {
            return <button>{node.getName()}</button>;
        }
    }

    render() {
        return (
            <FlexLayout.Layout model={this.state.model} factory={this.factory}/>
        )
    }
}

ReactDOM.render(<Main/>, document.getElementById("container"));

(See the examples for full source code)

The above code would render two tabsets horizontally each containing a single tab that hosts a button component. The tabs could be moved and resized by dragging and dropping. Additional grids could be added to the layout by sending actions to the model.

Try it now using JSFiddle

A simple Create React App (CRA) example (using typescript) can be found here:

https://github.com/nealus/FlexLayout_cra_example

The model is built up using 4 types of 'node':

  • row - rows contains a list of tabsets and child rows, the top level 'row' will render horizontally (unless the global attribute rootOrientationVertical is set) , child 'rows' will render in the opposite orientation to their parent.

  • tabset - tabsets contain a list of tabs and the index of the selected tab

  • tab - tabs specify the name of the component that they should host (that will be loaded via the factory) and the text of the actual tab.

  • border - borders contain a list of tabs and the index of the selected tab, they can only be used in the borders top level element.

The main layout is defined with rows within rows that contain tabsets that themselves contain tabs.

The model json contains 3 top level elements:

  • global - where global options are defined
  • layout - where the main row/tabset/tabs layout hierarchy is defined
  • borders - (optional) where up to 4 borders are defined ("top", "bottom", "left", "right").

Weights on rows and tabsets specify the relative weight of these nodes within the parent row, the actual values do not matter just their relative values (ie two tabsets of weights 30,70 would render the same if they had weights of 3,7).

NOTE: the easiest way to create your initial layout JSON is to use the demo app, modify one of the existing layouts by dragging/dropping and adding nodes then press the 'Show Layout JSON in console' button to print the JSON to the browser developer console.

example borders section:

    borders: [
         {
            type: "border",
            location: "left",
            children: [
                {
                    type: "tab",
                    enableClose: false,
                    name: "Navigation",
                    component: "grid",
                }
            ]
        },
        {
            type: "border",
            location: "right",
            children: [
                {
                    type: "tab",
                    enableClose: false,
                    name: "Options",
                    component: "grid",
                }
            ]
        },
        {
            type: "border",
            location: "bottom",
            children: [
                {
                    type: "tab",
                    enableClose: false,
                    name: "Activity Blotter",
                    component: "grid",
                },
                {
                    type: "tab",
                    enableClose: false,
                    name: "Execution Blotter",
                    component: "grid",
                }
            ]
        }
    ]

To control where nodes can be dropped you can add a callback function to the model:

model.setOnAllowDrop(this.allowDrop);

example:

    allowDrop(dragNode, dropInfo) {
        let dropNode = dropInfo.node;

        // prevent non-border tabs dropping into borders
        if (dropNode.getType() == "border" && (dragNode.getParent() == null || dragNode.getParent().getType() != "border"))
            return false;

        // prevent border tabs dropping into main layout
        if (dropNode.getType() != "border" && (dragNode.getParent() != null && dragNode.getParent().getType() == "border"))
            return false;

        return true;
    }

By changing global or node attributes you can change the layout appearance and functionality, for example:

Setting tabSetEnableTabStrip:false in the global options would change the layout into a multi-splitter (without tabs or drag and drop).

 global: {tabSetEnableTabStrip:false},

Floating Tabs (Popouts)

Note: this feature only works for Chrome, Firefox, Safari, latest Edge (the Chrome based one) and Opera, it does NOT work for any version of IE or the previous version of Edge. For unsupported browsers the popout icons will not be shown and any saved layout with popouts will show with all their tabs in the main layout.

For supported browsers tabs can be rendered into external browser windows (for use in multi-monitor setups) by configuring them with the enableFloat attribute. When this attribute is present an additional icon is shown in the tab header bar allowing the tab to be popped out into an external window.

For popouts to work there needs to be an additional html page 'popout.html' hosted at the same location as the main page (copy the one from examples/demo). The popout.html is the host page for the popped out tab, the styles from the main page will be copied into it at runtime.

Because popouts are rendering into a different document to the main layout any code in the popped out tab that uses the global document or window objects will not work correctly (for example custom popup menus), they need to instead use the document/window of the popout. To get the document/window of the popout use the following method on one of the elements rendered in the popout (for example a ref or target in an event handler):

    const currentDocument = this.selfRef.current.ownerDocument;
    const currentWindow = currentDocument.defaultView!;

In the above code selfRef is a React ref to the toplevel element in the tab being rendered.

Note: some libraries already support popout windows by allowing you to specify the document to use, for example see the getDocument() callback in agGrid at https://www.ag-grid.com/javascript-grid-callbacks/

Global Config attributes

Attributes allowed in the 'global' element

AttributeDefaultDescription
splitterSize8width in pixels of all splitters between tabsets/borders
splitterExtra0additional width in pixels of the splitter hit test area
enableEdgeDocktrue
tabEnableClosetrueallow user to close all tabs via close button
tabCloseType1see values in ICloseType
tabEnableDragtrueallow user to drag all tabs to new location
tabEnableRenametrueallow user to rename all tabs by double clicking
tabEnableFloatfalseenable popouts in all tabs (in popout capable browser)
tabClassNamenull
tabIconnull
tabEnableRenderOnDemandtruewhether to avoid rendering component until tab is visible
tabDragSpeed0.3CSS transition speed of drag outlines (in seconds)
tabBorderWidth-1width when added to border, -1 will use border size
tabBorderHeight-1height when added to border, -1 will use border size
tabSetEnableDeleteWhenEmptytrue
tabSetEnableDroptrueallow user to drag tabs into all tabsets
tabSetEnableDragtrueallow user to drag tabs out of all tabsets
tabSetEnableDividetrueallow user to drag tabs to region of all tabsets, splitting into new tabset
tabSetEnableMaximizetrueallow user to maximize all tabsets to fill view via maximize button
tabSetEnableClosefalseallow user to close all tabsets via close button
tabSetAutoSelectTabtruewhether to select new/moved tabs in all tabsets
tabSetClassNameTabStripnullheight in pixels of tab strips in all tabsets
tabSetClassNameHeadernull
tabSetEnableTabStriptrueenable tab strip and allow multiple tabs in all tabsets
tabSetHeaderHeight0height of tabset header in pixels; if left as 0 then the value will be calculated from the current fontSize
tabSetTabStripHeight0height of tabset tab bar in pixels; if left as 0 then the value will be calculated from the current fontSize
borderBarSize0size of the border bars in pixels; if left as 0 then the value will be calculated from the current fontSize
borderEnableAutoHidefalsehide border if it has zero tabs
borderEnableDroptrueallow user to drag tabs into this border
borderAutoSelectTabWhenOpentruewhether to select new/moved tabs in border when the border is already open
borderAutoSelectTabWhenClosedfalsewhether to select new/moved tabs in border when the border is curently closed
borderClassNamenull
borderSize200initial width in pixels for left/right borders, height for top/bottom borders
borderMinSize0minimum width in pixels for left/right borders, height for top/bottom borders
tabSetMinHeight0minimum width (in px) for all tabsets
tabSetMinWidth0minimum height (in px) for all tabsets
tabSetTabLocationtopshow tabs in location top or bottom
rootOrientationVerticalfalsethe top level 'row' will layout horizontally by default, set this option true to make it layout vertically

Row Attributes

Attributes allowed in nodes of type 'row'.

AttributeDefaultDescription
typerow
weight100
widthnullpreferred pixel width
heightnullpreferred pixel height
childrenrequireda list of row and tabset nodes

Tab Attributes

Attributes allowed in nodes of type 'tab'.

Inherited defaults will take their value from the associated global attributes (see above).

AttributeDefaultDescription
typetab
namerequiredinternal unique string identifying tab (for factory)
componentrequiredstring identifying which component to run (for factory)
confignulla place to hold json config for the hosted component
idauto generated
helpTextoptionalAn optional help text for the tab to be displayed upon tab hover.
enableCloseinheritedallow user to close tab via close button
closeTypeinheritedsee values in ICloseType
enableDraginheritedallow user to drag tab to new location
enableRenameinheritedallow user to rename tabs by double clicking
enableFloatinheritedenable popout (in popout capable browser)
floatingfalse
classNameinherited
iconinherited
enableRenderOnDemandinheritedwhether to avoid rendering component until tab is visible
borderWidthinheritedwidth when added to border, -1 will use border size
borderHeightinheritedheight when added to border, -1 will use border size

Tab nodes have a getExtraData() method that initially returns an empty object, this is the place to add extra data to a tab node that will not be saved.

TabSet Attributes

Attributes allowed in nodes of type 'tabset'.

Inherited defaults will take their value from the associated global attributes (see above).

Note: tabsets can be dynamically created as tabs are moved and deleted when all their tabs are removed (unless enableDeleteWhenEmpty is false).

AttributeDefaultDescription
typetabset
weight100relative weight for sizing of this tabset in parent row
widthnullpreferred pixel width
heightnullpreferred pixel height
namenullnamed tabsets will show a header bar above the tabs
confignulla place to hold json config used in your own code
selected0index of selected/visible tab in tabset
maximizedfalsewhether tabset is currently maximized to fill view
enableClosefalseallow user to close tabset via a close button
idauto generated
childrenrequireda list of tab nodes
enableDeleteWhenEmptyinherited
enableDropinheritedallow user to drag tabs into this tabset
enableDraginheritedallow user to drag tabs out this tabset
enableDivideinheritedallow user to drag tabs to region of this tabset, splitting into new tabset
enableMaximizeinheritedallow user to maximize tabset to fill view via maximize button
autoSelectTabinheritedwhether to select new/moved tabs in tabset
classNameTabStripinherited
classNameHeaderinherited
enableTabStripinheritedenable tab strip and allow multiple tabs in this tabset
headerHeightinherited
tabStripHeightinheritedheight in pixels of tab strip
tabLocationinheritedshow tabs in location top or bottom
minHeightinheritedminimum width (in px) for this tabset
minWidthinheritedminimum height (in px) for this tabset

Border Attributes

Attributes allowed in nodes of type 'border'.

Inherited defaults will take their value from the associated global attributes (see above).

AttributeDefaultDescription
typeborder
sizeinheritedsize of the tab body when selected
minSizeinherited
selected-1index of selected/visible tab in border; -1 means no tab unselected / border closed
idauto generatedborder_ + border name e.g. border_left
confignulla place to hold json config used in your own code
showtrueshow/hide this border
enableAutoHidefalsehide border if it has zero tabs
childrenrequireda list of tab nodes
barSizeinheritedsize of this border's bar in pixels; if left as 0 then the value will be calculated from the current fontSize
enableDropinherited
autoSelectTabWhenOpeninheritedwhether to select new/moved tabs in border when the border is already open
autoSelectTabWhenClosedinheritedwhether to select new/moved tabs in border when the border is currently closed
classNameinherited

Model Actions

All changes to the model are applied through actions. You can intercept actions resulting from GUI changes before they are applied by implementing the onAction callback property of the Layout. You can also apply actions directly using the Model.doAction() method. This method takes a single argument, created by one of the following action generators (typically accessed as FlexLayout.Actions.<actionName>):

Action CreatorDescription
Actions.addNode(newNodeJson, toNodeId, location, index, select?)add a new tab node to the given tabset node; select specifies whether to select new tab, defaulting to autoSelectTab attribute; returns the created Node
Actions.moveNode(fromNodeId, toNodeId, location, index, select?)move a tab node from its current location to the new node and location; select specifies whether to select tab, defaulting to new tabset's autoSelectTab attribute
Actions.deleteTab(tabNodeId)delete the given tab
Actions.renameTab(tabNodeId, newName)rename the given tab
Actions.selectTab(tabNodeId)select the given tab
Actions.setActiveTabset(tabsetNodeId)set the tabset as the active tabset
Actions.adjustSplit(splitterNodeId, value)adjust the size of the given splitter
Actions.adjustBorderSplit(borderNodeId, pos)updates the size of the given border node
Actions.maximizeToggle(tabsetNodeId)toggles whether the given tabset node is maximized
Actions.updateModelAttributes(attributes)updates the global attributes
Actions.updateNodeAttributes(nodeId, attributes)updates the attributes of the given node
Actions.floatTab(nodeId)popout the tab into a floating browser window
Actions.unFloatTab(nodeId)restore a popped out tab to the main layout

Examples

model.doAction(
    FlexLayout.Actions.updateModelAttributes({
        splitterSize: 40,
        tabSetHeaderHeight: 40,
        tabSetTabStripHeight: 40,
    })
);

The above example would increase the size of the splitters, tabset headers and tabs, this could be used to make adjusting the layout easier on a small device.

model.doAction(FlexLayout.Actions.addNode({ type: "tab", component: "grid", name: "a grid", id: "5" }, "1", FlexLayout.DockLocation.CENTER, 0));

This example adds a new grid component to the center of tabset with id "1" and at the 0'th tab position (use value -1 to add to the end of the tabs). Note: you can get the id of a node (e.g., the node returned by the addNode action) using the method node.getId(). If an id wasn't assigned when the node was created, then one will be created for you of the form #<uuid> (e.g. #0c459064-8dee-444e-8636-eb9ab910fb27).

Layout Component Methods to Create New Tabs

Methods on the Layout Component for adding tabs, the tabs are specified by their layout json.

Example:

this.layoutRef.current.addTabToTabSet("NAVIGATION", {type:"tab", component:"grid", name:"a grid"});

This would add a new grid component to the tabset with id "NAVIGATION" (where this.layoutRef is a ref to the Layout element, see https://reactjs.org/docs/refs-and-the-dom.html ).

Layout MethodDescription
addTabToTabSet(tabsetId, json)adds a new tab to the tabset with the given Id
addTabToActiveTabSet(json)adds a new tab to the active tabset
addTabWithDragAndDrop(dragText, json, onDrop)adds a new tab by dragging a marker to the required location, with the drag starting immediately; on success, onDrop is passed the created tab Node; on cancel, no arguments are passed
addTabWithDragAndDropIndirect(dragText, json, onDrop)adds a new tab by dragging a marker to the required location, the marker is shown and must be clicked on to start dragging

Tab Node Events

You can handle events on nodes by adding a listener, this would typically be done in the components constructor() method.

Example:

    constructor(props) {
        super(props);
        let config = this.props.node.getConfig();

        // save state in flexlayout node tree
        this.props.node.setEventListener("save", (p) => {
             config.subject = this.subject;
        };
    }
EventparametersDescription
resizecalled when tab is resized during layout, called before it is rendered with the new size
closecalled when a tab is closed
visibilitycalled when the visibility of a tab changes
savecalled before a tabnode is serialized to json, use to save node config by adding data to the object returned by node.getConfig()

Running the Examples and Building the Project

First install dependencies:

yarn install

Compile the project and run the examples:

yarn start

Open your browser at http://localhost:8080/examples/ to show the examples directory, click on the examples to run them.

The 'yarn start' command will watch for changes to flexlayout and example source, so you can make changes to the code and then refresh the browser to see the result.

To run the tests in the Cypress interactive runner use:

yarn cypress

FlexLayout Cypress tests

To build the npm distribution run 'yarn build', this will create the artifacts in the dist dir.

100.5.2-1.1

2 years ago

101.5.21

2 years ago

100.5.21

2 years ago

1.0.1-alpha2

2 years ago

1.0.1-alpha1

2 years ago

10.5.21

2 years ago

10.5.21-alpha1

2 years ago

2.0.13-alpha1

3 years ago

2.0.3

3 years ago

2.0.13

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.11

3 years ago

2.0.7

3 years ago

2.0.12

3 years ago

2.0.6

3 years ago

2.0.9

3 years ago

2.0.10

3 years ago

2.0.8

3 years ago

2.0.13-alpha

3 years ago

2.0.2

3 years ago

2.0.0-1

3 years ago

2.0.1

3 years ago

2.0.0-0

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.1

3 years ago

1.0.2

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.1.4

3 years ago

1.0.5

3 years ago

1.1.3

3 years ago

1.0.4

3 years ago

1.1.2

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago