jsketcher/web/app/sketcher/components/ContextualControls.jsx
2020-03-06 00:49:06 -08:00

41 lines
No EOL
1.1 KiB
JavaScript

import React, {useContext} from 'react';
import ls from './ContextualControls.less';
import {matchAvailableActions} from "../actions";
import {useStream} from "../../../../modules/ui/effects";
import {SketcherAppContext} from "./SketcherApp";
import {MatchIndex, matchSelection} from "../selectionMatcher";
export function ContextualControls() {
const selection = useStream(ctx => ctx.viewer.streams.selection);
const ctx = useContext(SketcherAppContext);
if (selection.length === 0) {
return null;
}
const availableActions = matchAvailableActions(selection);
return <div className={ls.root}>
{
selection.map(s => <div onDoubleClick={debugEgg(s)} className={ls.item}>{s.simpleClassName}: {s.id}</div>)
}
<div className={ls.hr}>AVAILABLE ACTIONS:</div>
{
availableActions.map(a => <button onClick={() => a.invoke(ctx, matchSelection(a.selectionMatcher, new MatchIndex(selection), false))}
title={a.description}>{a.shortName}</button>)
}
</div>;
}
function debugEgg(obj) {
return e => {
obj.visitParams(p => console.log(p.toString()));
}
}