From de6dc26d6ca0bb698a628b7a7c8442683f617697 Mon Sep 17 00:00:00 2001 From: Konstantin Ullrich Date: Fri, 13 Mar 2020 16:14:30 +0100 Subject: [PATCH] Replace native Context Menu with a syleguided one in SearchInput --- ts/components/session/SessionSearchInput.tsx | 81 +++++++++++++++++--- 1 file changed, 69 insertions(+), 12 deletions(-) diff --git a/ts/components/session/SessionSearchInput.tsx b/ts/components/session/SessionSearchInput.tsx index c92b0cb1b..8cae48432 100644 --- a/ts/components/session/SessionSearchInput.tsx +++ b/ts/components/session/SessionSearchInput.tsx @@ -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 { 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 ( -
- - this.props.onChange(e.target.value)} - onKeyDown={this.handleKeyDown} - placeholder={this.props.placeholder} - /> -
+ <> + +
+ + this.props.onChange(e.target.value)} + onKeyDown={this.handleKeyDown} + placeholder={this.props.placeholder} + /> +
+
+ + + {window.i18n('editMenuUndo')} + + + {window.i18n('editMenuRedo')} + +
+ + {window.i18n('editMenuCut')} + + + {window.i18n('editMenuCopy')} + + + {window.i18n('editMenuPaste')} + + + {window.i18n('editMenuSelectAll')} + +
+ ); } @@ -42,4 +75,28 @@ export class SessionSearchInput extends React.Component { } } } + + 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'); + } }