mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 09:52:34 +01:00
90 lines
3.2 KiB
JavaScript
90 lines
3.2 KiB
JavaScript
import React from 'react';
|
|
import Fa from 'ui/components/Fa';
|
|
import Toolbar, {ToolbarBraker, ToolbarButton, ToolbarGroup, ToolbarSplitter} from 'ui/components/Toolbar';
|
|
import ImgIcon from 'ui/components/ImgIcon';
|
|
import {toIdAndOverrides} from '../../actions/actionRef';
|
|
import {ActionButtonBehavior} from '../../actions/ActionButtonBehavior';
|
|
import capitalize from 'gems/capitalize';
|
|
import {combine} from 'lstream';
|
|
import {useStream} from "ui/effects";
|
|
import {NoIcon} from "../../../sketcher/icons/NoIcon";
|
|
|
|
function ConfigurableToolbar({actions, size, ...props}) {
|
|
return <Toolbar size={size} {...props}>
|
|
<ToolbarActionButtons actions={actions} size={size} />
|
|
</Toolbar>
|
|
}
|
|
|
|
export function ToolbarActionButtons({actions, showTitles, size}) {
|
|
return actions.map((actionRef, i) => {
|
|
if (actionRef === '-') {
|
|
return <ToolbarSplitter key={'ToolbarSplitter' + i} />;
|
|
} else if (actionRef === '|') {
|
|
return <ToolbarBraker key={'ToolbarBraker' + i} />;
|
|
} else if (Array.isArray(actionRef)) {
|
|
return <div key={'ToolbarGroup' + i}>
|
|
<ToolbarGroup><ToolbarActionButtons actions={actionRef.slice(0, actionRef.length / 2)} showTitles={showTitles} size={size} /></ToolbarGroup>
|
|
<ToolbarGroup><ToolbarActionButtons actions={actionRef.slice(actionRef.length / 2, actionRef.length)} showTitles={showTitles} size={size} /></ToolbarGroup>
|
|
</div>;
|
|
}
|
|
let [id, overrides] = toIdAndOverrides(actionRef);
|
|
return <ConnectedActionButton actionId={id} key={id} size={size} {...overrides} noLabel={!showTitles}/>
|
|
});
|
|
}
|
|
|
|
function ActionButton({label, icon, icon96, icon32, cssIcons, symbol, size = 'large', noLabel, enabled, visible, actionId, ...props}) {
|
|
if (!visible) {
|
|
return null;
|
|
}
|
|
|
|
let smallOrMedium = size === 'medium' || size === 'small';
|
|
if (icon) {
|
|
const Icon = icon;
|
|
icon = <Icon size={size}/>;
|
|
}
|
|
if (!icon) {
|
|
if (smallOrMedium) {
|
|
if (cssIcons) {
|
|
icon = <Fa fa={cssIcons} fw />;
|
|
} else if (icon32) {
|
|
icon = <ImgIcon url={icon32} size={size === 'small' ? 16 : 24} />;
|
|
}
|
|
} else {
|
|
icon = <ImgIcon url={icon96} size={48} />;
|
|
}
|
|
}
|
|
if (!icon) {
|
|
const txtStub = symbol||(label&&label.charAt(0));
|
|
icon = txtStub ? <span>{txtStub}</span> : <NoIcon />;
|
|
}
|
|
|
|
return <ToolbarButton disabled={!enabled} {...props}>
|
|
{icon}
|
|
{!(smallOrMedium || noLabel)&& <div>{capitalize(label)}</div>}
|
|
</ToolbarButton>
|
|
}
|
|
|
|
export function ConnectedActionButton(props) {
|
|
|
|
const actionId = props.actionId;
|
|
const actionAppearance = useStream(ctx => ctx.streams.action.appearance[actionId]);
|
|
const actionState = useStream(ctx => ctx.streams.action.state[actionId]);
|
|
if (!actionAppearance || !actionState) {
|
|
return null;
|
|
}
|
|
|
|
return<ActionButtonBehavior actionId={actionId}>
|
|
{behaviourProps => <ActionButton {...behaviourProps} {...actionAppearance} {...actionState} {...props} />}
|
|
</ActionButtonBehavior>;
|
|
|
|
}
|
|
|
|
export function createPlugableToolbar(streamSelector) {
|
|
return function (props) {
|
|
const actions = useStream(ctx => streamSelector(ctx.streams));
|
|
if (!actions) {
|
|
return null;
|
|
}
|
|
return <ConfigurableToolbar actions={actions} {...props} />;
|
|
}
|
|
}
|