Skip to content

Commit

Permalink
add task solution
Browse files Browse the repository at this point in the history
  • Loading branch information
romazh1988 committed Oct 13, 2024
1 parent 7d49869 commit a5ad29f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 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://romazh1988.github.io/react_keyboard/) and add it to the PR description.
37 changes: 31 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,32 @@
import React from 'react';
import React, { Component } from 'react';

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

class App extends Component<{}, AppState> {
state: AppState = {
pressedKey: 'Nothing was pressed yet',
};

handleKeyUp = (event: KeyboardEvent) => {
this.setState({ pressedKey: `The last pressed key is [${event.key}]` });
};

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

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

render() {
return (
<div className="App">
<p className="App__message">{this.state.pressedKey}</p>
</div>
);
}
}
export default App;
4 changes: 2 additions & 2 deletions 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 React, { createRoot } from 'react-dom/client';
import App from './App';

import './index.scss';

Expand Down

0 comments on commit a5ad29f

Please sign in to comment.