mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
* Bumped dependencies to the latest version * Bumped root lockfile * Bumped app dependencies * Fixed linting * No command line switch needed anymore for native async/await * Fixed color error * Bumped Node.js versions for CI * Downgraded hterm-umdjs * Try to fix the AppVeyor build * Made colors work again
129 lines
3.7 KiB
JavaScript
129 lines
3.7 KiB
JavaScript
import React from 'react';
|
|
import {connect} from 'react-redux';
|
|
import Component from '../component';
|
|
import {decorate, getTermProps, getTermGroupProps} from '../utils/plugins';
|
|
import {resizeTermGroup} from '../actions/term-groups';
|
|
import Term_ from './term';
|
|
import SplitPane_ from './split-pane';
|
|
|
|
const Term = decorate(Term_, 'Term');
|
|
const SplitPane = decorate(SplitPane_, 'SplitPane');
|
|
|
|
class TermGroup_ extends Component {
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.bound = new WeakMap();
|
|
}
|
|
|
|
bind(fn, thisObj, uid) {
|
|
if (!this.bound.has(fn)) {
|
|
this.bound.set(fn, {});
|
|
}
|
|
const map = this.bound.get(fn);
|
|
if (!map[uid]) {
|
|
map[uid] = fn.bind(thisObj, uid);
|
|
}
|
|
return map[uid];
|
|
}
|
|
|
|
renderSplit(groups) {
|
|
const [first, ...rest] = groups;
|
|
if (rest.length === 0) {
|
|
return first;
|
|
}
|
|
|
|
const direction = this.props.termGroup.direction.toLowerCase();
|
|
return (<SplitPane
|
|
direction={direction}
|
|
sizes={this.props.termGroup.sizes}
|
|
onResize={this.props.onTermGroupResize}
|
|
borderColor={this.props.borderColor}
|
|
>
|
|
{ groups }
|
|
</SplitPane>);
|
|
}
|
|
|
|
renderTerm(uid) {
|
|
const session = this.props.sessions[uid];
|
|
const termRef = this.props.terms[uid];
|
|
const props = getTermProps(uid, this.props, {
|
|
isTermActive: uid === this.props.activeSession,
|
|
term: termRef ? termRef.term : null,
|
|
customCSS: this.props.customCSS,
|
|
fontSize: this.props.fontSize,
|
|
cursorColor: this.props.cursorColor,
|
|
cursorShape: this.props.cursorShape,
|
|
cursorBlink: this.props.cursorBlink,
|
|
fontFamily: this.props.fontFamily,
|
|
uiFontFamily: this.props.uiFontFamily,
|
|
fontSmoothing: this.props.fontSmoothing,
|
|
foregroundColor: this.props.foregroundColor,
|
|
backgroundColor: this.props.backgroundColor,
|
|
modifierKeys: this.props.modifierKeys,
|
|
padding: this.props.padding,
|
|
colors: this.props.colors,
|
|
url: session.url,
|
|
cleared: session.cleared,
|
|
cols: session.cols,
|
|
rows: session.rows,
|
|
copyOnSelect: this.props.copyOnSelect,
|
|
bell: this.props.bell,
|
|
bellSoundURL: this.props.bellSoundURL,
|
|
onActive: this.bind(this.props.onActive, null, uid),
|
|
onResize: this.bind(this.props.onResize, null, uid),
|
|
onTitle: this.bind(this.props.onTitle, null, uid),
|
|
onData: this.bind(this.props.onData, null, uid),
|
|
onURLAbort: this.bind(this.props.onURLAbort, null, uid),
|
|
borderColor: this.props.borderColor,
|
|
quickEdit: this.props.quickEdit,
|
|
uid
|
|
});
|
|
|
|
// This will create a new ref_ function for every render,
|
|
// which is inefficient. Should maybe do something similar
|
|
// to this.bind.
|
|
return (<Term
|
|
key={uid}
|
|
ref_={term => this.props.ref_(uid, term)}
|
|
{...props}
|
|
/>);
|
|
}
|
|
|
|
template() {
|
|
const {childGroups, termGroup} = this.props;
|
|
if (termGroup.sessionUid) {
|
|
return this.renderTerm(termGroup.sessionUid);
|
|
}
|
|
|
|
const groups = childGroups.map(child => {
|
|
const props = getTermGroupProps(child.uid, this.props.parentProps, Object.assign({}, this.props, {
|
|
termGroup: child
|
|
}));
|
|
|
|
return (<DecoratedTermGroup
|
|
key={child.uid}
|
|
{...props}
|
|
/>);
|
|
});
|
|
|
|
return this.renderSplit(groups);
|
|
}
|
|
}
|
|
|
|
const TermGroup = connect(
|
|
(state, ownProps) => ({
|
|
childGroups: ownProps.termGroup.children.map(uid =>
|
|
state.termGroups.termGroups[uid]
|
|
)
|
|
}),
|
|
(dispatch, ownProps) => ({
|
|
onTermGroupResize(splitSizes) {
|
|
dispatch(resizeTermGroup(ownProps.termGroup.uid, splitSizes));
|
|
}
|
|
})
|
|
)(TermGroup_);
|
|
|
|
const DecoratedTermGroup = decorate(TermGroup, 'TermGroup');
|
|
|
|
export default TermGroup;
|