-
Notifications
You must be signed in to change notification settings - Fork 4.2k
🐛 Bug: Fix greeting timezone mismatch and add night greeting #8924
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
MinitJain
wants to merge
8
commits into
makeplane:preview
Choose a base branch
from
MinitJain:fix/user-greeting-timezone-mismatch
base: preview
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 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e3b3a77
fix: resolve greeting timezone mismatch and add night greeting
MinitJain df7aea7
fix: use hourCycle h23 to prevent midnight returning 24 and add night…
MinitJain 388502a
fix: memoize timezone validation and log invalid timezone warning
MinitJain 9e47a43
fix: use phrase-level greeting keys to fix grammatical composition
MinitJain bab77e6
fix: remove night greeting bucket and extract shared useGreeting hook
MinitJain 93e15fc
perf(greetings): memoize Intl formatters and hide decorative emojis f…
MinitJain 84922cf
i18n: remove unused flat night key from all 19 locale files
MinitJain fc1a396
fix(greeting): use browser local time instead of user-configured time…
MinitJain 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
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,60 @@ | ||
| /** | ||
| * Copyright (c) 2023-present Plane Software, Inc. and contributors | ||
| * SPDX-License-Identifier: AGPL-3.0-only | ||
| * See the LICENSE file for details. | ||
| */ | ||
|
|
||
| import { useMemo } from "react"; | ||
| import type { IUser } from "@plane/types"; | ||
| import { useCurrentTime } from "@/hooks/use-current-time"; | ||
|
|
||
| export type TGreeting = "morning" | "afternoon" | "evening"; | ||
|
|
||
| export const useGreeting = (user: IUser) => { | ||
| const { currentTime } = useCurrentTime(); | ||
|
|
||
| const userTimezone = useMemo(() => { | ||
| if (!user?.user_timezone) return undefined; | ||
| try { | ||
| new Intl.DateTimeFormat(undefined, { timeZone: user.user_timezone }); | ||
| return user.user_timezone; | ||
| } catch (e) { | ||
| console.warn( | ||
| `[useGreeting] Invalid user_timezone "${user.user_timezone}", falling back to browser timezone.`, | ||
| e | ||
| ); | ||
| return undefined; | ||
| } | ||
| }, [user?.user_timezone]); | ||
|
|
||
| const hour = new Intl.DateTimeFormat("en-US", { | ||
| timeZone: userTimezone, | ||
| hourCycle: "h23", | ||
| hour: "numeric", | ||
| }).format(currentTime); | ||
|
|
||
| const date = new Intl.DateTimeFormat("en-US", { | ||
| timeZone: userTimezone, | ||
| month: "short", | ||
| day: "numeric", | ||
| }).format(currentTime); | ||
|
|
||
| const weekDay = new Intl.DateTimeFormat("en-US", { | ||
| timeZone: userTimezone, | ||
| weekday: "long", | ||
| }).format(currentTime); | ||
|
|
||
| const timeString = new Intl.DateTimeFormat("en-US", { | ||
| timeZone: userTimezone, | ||
| hourCycle: "h23", | ||
| hour: "2-digit", | ||
| minute: "2-digit", | ||
| }).format(currentTime); | ||
|
|
||
| const hourNum = parseInt(hour, 10); | ||
| // 5–11: morning, 12–16: afternoon, 17–4: evening | ||
| const greeting: TGreeting = | ||
| hourNum >= 5 && hourNum < 12 ? "morning" : hourNum >= 12 && hourNum < 17 ? "afternoon" : "evening"; | ||
|
|
||
| return { greeting, timeString, weekDay, date }; | ||
| }; |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.