Skip to content

Commit

Permalink
last pressed key is shown
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksymMohyla committed Oct 7, 2024
1 parent 7d49869 commit c2c250f
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 17 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ Make the `App` a class component with `pressedKey` in the `state`.
- before any key was pressed show the `Nothing was pressed yet` message;
- when a key is pressed show a `The last pressed key is [key]` message;
- use `componentDidMount` to add `keyup` handler:
```ts
// DON'T import KeyboardEvent from React, because it is a regular event
document.addEventListener('keyup', (event: KeyboardEvent) => {
console.log(event.key);
});
```
```ts
// DON'T import KeyboardEvent from React, because it is a regular event
document.addEventListener('keyup', (event: KeyboardEvent) => {
console.log(event.key);
});
```
- use `removeEventListener` to remove a global handler in `componentWillUnmount`.

## Instructions

- Install Prettier Extention and use this [VSCode settings](https://mate-academy.github.io/fe-program/tools/vscode/settings.json) to enable format on save.
- 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://MaksymMohyla.github.io/react_keyboard/) and add it to the PR description.
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"@cypress/react18": "^2.0.1",
"@mate-academy/scripts": "^1.8.5",
"@mate-academy/scripts": "^1.9.12",
"@mate-academy/students-ts-config": "*",
"@mate-academy/stylelint-config": "*",
"@types/node": "^20.14.10",
Expand Down
31 changes: 26 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
import React from 'react';
import { render } from 'react-dom';

Check failure on line 2 in src/App.tsx

View workflow job for this annotation

GitHub Actions / run_linter (20.x)

ReactDOM.render is deprecated since React 18.0.0, use createRoot instead, see https://reactjs.org/link/switch-to-createroot

Check failure on line 2 in src/App.tsx

View workflow job for this annotation

GitHub Actions / run_linter (20.x)

'render' is defined but never used

export const App: React.FC = () => (
<div className="App">
<p className="App__message">The last pressed key is [Enter]</p>
</div>
);
export class App extends React.Component {
state = {
message: 'Nothing was pressed yet',
};

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

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

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

render() {
return (
<div className="App">
<p className="App__message">{this.state.message}</p>
</div>
);
}
}

0 comments on commit c2c250f

Please sign in to comment.