|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
|
|
|
|
|
import { ContextMenu, ContextMenuTrigger, MenuItem } from 'react-contextmenu';
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
searchString: string;
|
|
|
|
@ -12,24 +13,56 @@ export class SessionSearchInput extends React.Component<Props> {
|
|
|
|
|
public constructor(props: Props) {
|
|
|
|
|
super(props);
|
|
|
|
|
this.handleKeyDown = this.handleKeyDown.bind(this);
|
|
|
|
|
this.handleUndo = this.handleUndo.bind(this);
|
|
|
|
|
this.handleRedo = this.handleRedo.bind(this);
|
|
|
|
|
this.handleCut = this.handleCut.bind(this);
|
|
|
|
|
this.handleCopy = this.handleCopy.bind(this);
|
|
|
|
|
this.handlePast = this.handlePast.bind(this);
|
|
|
|
|
this.handleSelectAll = this.handleSelectAll.bind(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public render() {
|
|
|
|
|
const { searchString } = this.props;
|
|
|
|
|
const triggerId = `session-search-input-context`;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="session-search-input">
|
|
|
|
|
<SessionIconButton
|
|
|
|
|
iconSize={SessionIconSize.Medium}
|
|
|
|
|
iconType={SessionIconType.Search}
|
|
|
|
|
/>
|
|
|
|
|
<input
|
|
|
|
|
value={searchString}
|
|
|
|
|
onChange={e => this.props.onChange(e.target.value)}
|
|
|
|
|
onKeyDown={this.handleKeyDown}
|
|
|
|
|
placeholder={this.props.placeholder}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<>
|
|
|
|
|
<ContextMenuTrigger id={triggerId}>
|
|
|
|
|
<div className="session-search-input">
|
|
|
|
|
<SessionIconButton
|
|
|
|
|
iconSize={SessionIconSize.Medium}
|
|
|
|
|
iconType={SessionIconType.Search}
|
|
|
|
|
/>
|
|
|
|
|
<input
|
|
|
|
|
value={searchString}
|
|
|
|
|
onChange={e => this.props.onChange(e.target.value)}
|
|
|
|
|
onKeyDown={this.handleKeyDown}
|
|
|
|
|
placeholder={this.props.placeholder}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ContextMenuTrigger>
|
|
|
|
|
<ContextMenu id={triggerId}>
|
|
|
|
|
<MenuItem onClick={this.handleUndo}>
|
|
|
|
|
{window.i18n('editMenuUndo')}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
<MenuItem onClick={this.handleRedo}>
|
|
|
|
|
{window.i18n('editMenuRedo')}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
<hr />
|
|
|
|
|
<MenuItem onClick={this.handleCut}>
|
|
|
|
|
{window.i18n('editMenuCut')}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
<MenuItem onClick={this.handleCopy}>
|
|
|
|
|
{window.i18n('editMenuCopy')}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
<MenuItem onClick={this.handlePast}>
|
|
|
|
|
{window.i18n('editMenuPaste')}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
<MenuItem onClick={this.handleSelectAll}>
|
|
|
|
|
{window.i18n('editMenuSelectAll')}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
</ContextMenu>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -42,4 +75,28 @@ export class SessionSearchInput extends React.Component<Props> {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handleUndo() {
|
|
|
|
|
document.execCommand('undo');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handleRedo() {
|
|
|
|
|
document.execCommand('redo');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handleCut() {
|
|
|
|
|
document.execCommand('cut');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handleCopy() {
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handlePast() {
|
|
|
|
|
document.execCommand('paste');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handleSelectAll() {
|
|
|
|
|
document.execCommand('selectAll');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|