-
Notifications
You must be signed in to change notification settings - Fork 36
World Clock assignment - Calvin #12
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
Open
Cnkh6069
wants to merge
2
commits into
rocketacademy:main
Choose a base branch
from
Cnkh6069:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,55 @@ | ||
| import logo from "/logo.png"; | ||
| import "./App.css"; | ||
| import { useState } from "react"; | ||
| import { useEffect } from "react"; | ||
| import Clock from "./Clock"; | ||
| import { Container } from "react-bootstrap"; | ||
| import Row from "react-bootstrap/Row"; | ||
| import Col from "react-bootstrap/Col"; | ||
| // import "bootstrap/dist/css/bootstrap.min.css"; | ||
|
|
||
| function App() { | ||
| export default function App() { | ||
| return ( | ||
| <> | ||
| <div> | ||
| <img src={logo} className="logo" alt="Rocket logo" /> | ||
| </div> | ||
| <h1>World Clock</h1> | ||
| <div className="card"> | ||
| <p> | ||
| Edit <code>src/App.jsx</code> and save to test HMR | ||
| </p> | ||
| </div> | ||
| </> | ||
| <Container> | ||
| <Row> | ||
| <Col> | ||
| <div> | ||
| <img src={logo} className="logo" alt="Rocket logo" /> | ||
| </div> | ||
| </Col> | ||
| </Row> | ||
| <Row> | ||
| <Col> | ||
| <h1>Calvin's World Clock</h1> | ||
| <p>Best Effort</p> | ||
| </Col> | ||
| </Row> | ||
|
|
||
| <Row className="table-row"> | ||
| <Col className="table-cell">Cities</Col> | ||
|
|
||
| <Col className="table-time">TimeZone</Col> | ||
| </Row> | ||
| <Row className="table-row"> | ||
| <Col className="table-cell">Asia/Singapore:</Col> | ||
| <Col className="table-time"> | ||
| <Clock timeZone="Asia/Singapore" /> | ||
| </Col> | ||
| </Row> | ||
|
|
||
| <Row className="table-row"> | ||
| <Col className="table-cell">Australia/Canberra:</Col> | ||
| <Col className="table-cell"> | ||
| <Clock timeZone="Australia/Canberra" /> | ||
| </Col> | ||
| </Row> | ||
|
|
||
| <Row className="table-row"> | ||
| <Col className="table-cell">Europe/Berlin:</Col> | ||
| <Col className="table-cell"> | ||
| <Clock timeZone="Europe/Berlin" /> | ||
| </Col> | ||
| </Row> | ||
| </Container> | ||
| ); | ||
| } | ||
|
|
||
| export default App; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| import { useState, useEffect } from "react"; | ||
|
|
||
| export default function Clock(props) { | ||
| const [date, setDate] = useState(new Date()); | ||
| //to run effect at each render to refresh by 1 second | ||
| useEffect(() => { | ||
| const timerId = setInterval(() => { | ||
| setDate(new Date()); | ||
| }, 1000); | ||
| return () => { | ||
| clearInterval(timerId); | ||
| }; | ||
| }); | ||
| //Label for the time | ||
| return ( | ||
| <> | ||
| <p> | ||
| {props.timeZone}: | ||
| {date.toLocaleString("en-GB", { timeZone: `${props.timeZone}` })} | ||
| </p> | ||
| </> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,24 @@ | ||
| import ReactDOM from "react-dom/client"; | ||
| import App from "./App.jsx"; | ||
| import "./index.css"; | ||
| import React from "react"; | ||
|
|
||
| ReactDOM.createRoot(document.getElementById("root")).render(<App />); | ||
| { | ||
| ReactDOM.createRoot(document.getElementById("root")).render(<App />); | ||
| } | ||
|
|
||
| // function tick() { | ||
| // const element = ( | ||
| // <div> | ||
| // <h1> Hello, world!</h1> | ||
| // <h2> It is {new Date().toLocaleTimeString()}.</h2> | ||
| // <h2> | ||
| // <App /> | ||
| // </h2> | ||
| // </div> | ||
| // ); | ||
| // root.render(element); | ||
| // } | ||
| // setInterval(tick, 1000); | ||
|
|
||
| // const root = ReactDOM.createRoot(document.getElementById("root")); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can improve this by using a data structure and map it!
and then