Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
chelsea7smile committed Dec 9, 2024
1 parent 7d49869 commit 23a508c
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 12 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://chelsea7smile.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
42 changes: 36 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,37 @@
import React from 'react';
import * as React from 'react';

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

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

handleKeyPress = (event: KeyboardEvent): void => {
this.setState({
pressedKey: `[${event.key}]`,
});
};

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

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

render() {
return (
<div>
<h1 className="App__message">
{this.state.pressedKey
? `The last pressed key is ${this.state.pressedKey}`
: 'Nothing was pressed yet'}
</h1>
</div>
);
}
}

0 comments on commit 23a508c

Please sign in to comment.