Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurii-Yaremko committed Aug 14, 2024
1 parent 1a3e715 commit c6e0018
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Make the `App` a class component with `pressedKey` in the `state`.
- Implement a solution following the [React task guideline](https://github.com/mate-academy/react_task-guideline#react-tasks-guideline).
- Use the [React TypeScript cheat sheet](https://mate-academy.github.io/fe-program/js/extra/react-typescript).
- Open one more terminal and run tests with `npm test` to ensure your solution is correct.
- Replace `<your_account>` with your Github username in the [DEMO LINK](https://<your_account>.github.io/react_keyboard/) and add it to the PR description.
- Replace `<your_account>` with your Github username in the [DEMO LINK](https://Yurii-Yaremko.github.io/react_keyboard/) and add it to the PR description.
45 changes: 40 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,42 @@
import React from 'react';

export const App: React.FC = () => (
<div className="App">
<p className="App__message">The last pressed key is [Enter]</p>
</div>
);
// export const App: React.FC = () => (
// <div className="App">
// <p className="App__message">The last pressed key is [Enter]</p>
// </div>
// );
type State = {
putKey: string;
};

export class App extends React.Component<State> {
state: State = {
putKey: '',
};

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

componentDidMount() {
document.addEventListener('keyup', this.handlePutKeyboard);
}

componentWillUnmount() {
document.removeEventListener('keyup', this.handlePutKeyboard);
}

render() {
const { putKey } = this.state;

return (
<div className="App">
<p className="App__message">
{putKey === ''
? `Nothing was pressed yet`
: `The last pressed key is [${putKey}]`}
</p>
</div>
);
}
}

0 comments on commit c6e0018

Please sign in to comment.