Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution #1803

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 29 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
import React from 'react';
import { PureComponent, ReactNode } from 'react';

export const App: React.FC = () => (
<div className="App">
<p className="App__message">The last pressed key is [Enter]</p>
</div>
);
export default class App extends PureComponent {
state = { key: null };

handleKeyUp = (event: KeyboardEvent) => {
this.setState({ key: event.key });
};

componentDidMount(): void {
document.addEventListener('keyup', this.handleKeyUp);
}

componentWillUnmount(): void {
document.removeEventListener('keyup', this.handleKeyUp);
}

render(): ReactNode {
const { key } = this.state;
const title = key
? `The last pressed key is [${key}]`
: 'Nothing was pressed yet';

return (
<div className="App">
<p className="App__message">{title}</p>
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createRoot } from 'react-dom/client';
import { App } from './App';
import App from './App';

import './index.scss';

Expand Down
Loading