Skip to content

chore: Calendarの内部処理を整理する #5346

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

Merged
merged 55 commits into from
Mar 13, 2025

Conversation

AtsushiM
Copy link
Member

関連URL

概要

変更内容

確認方法

@yagimushi yagimushi force-pushed the chore-refactoring-Calendar branch from 8a18400 to 1c2384a Compare January 29, 2025 05:10
@yagimushi yagimushi force-pushed the chore-refactoring-Calendar branch from e9a39e5 to 5a054a4 Compare January 29, 2025 05:19
const lastDate = dayjs(date).add(1, 'month').date(0).date()
const day = dayjs(date)
const startDay = day.date(1).day()
const lastDate = day.add(1, 'month').date(0).date()
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dayjsのdateやaddメソッドは別オブジェクトを生成するため、dayjs自体の実行結果を別変数にしました。
こうすることでメソッド呼び出し、実行のコストが浮きます

Comment on lines +64 to +71
const length = Math.max(Math.min(toYear, 9999) - fromYear + 1, 0)
const result: number[] = []

for (let i = 0; i < length; i++) {
result[i] = fromYear + i
}

return result
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

元の処理では

  • numOfYear分の長さの配列を生成
  • その後nillで全部埋める
  • その後nullを無視してindexを元に年を計算....

とかなり無駄な処理をしてしまっていました。
結局何回ループするのか? が微妙に分かりづらいので

  • 空配列を生成
  • 空配列に対してindexを元に年を計算して詰める

ようにロジックを変更しました

},
})

export const YearPicker: FC<Props & ElementProps> = ({
export const YearPicker: FC<Props & ElementProps> = ({ isDisplayed, ...rest }) =>
isDisplayed ? <ActualYearPicker {...rest} /> : null
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isDisplayedではない場合でYearPickerを常に計算するようになっていたため、
他コンポーネントと合わせて、そもそも表示しない場合はロジックを実行しないようにしました。
年の選択UIはそもそも利用されない可能性も十分に有るため、既存のロジックより効率的なはずです

const fromDay = dayjs(from)
const toDay = dayjs(to)
// HINT: dayjsのisSameは文字列でも比較可能なため、cacheが効きやすいstringにする
const nowDateStr = dayjs().startOf('date').toString()
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nowの情報が欲しいため、memo化できません。
ただここで生成する文字列は1日単位なのでキャシュしちゃってもいいかもですが...

Comment on lines +67 to +86
const formattedFrom = useMemo(() => {
const date = getFromDate(from)
const day = dayjs(date)

return {
day,
date,
year: day.year(),
}
}, [from])
const formattedTo = useMemo(() => {
const date = getToDate(to)
const day = dayjs(date)

return {
day,
date,
year: day.year(),
}
}, [to])
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from, to はほぼ固定で変わる可能性は低いため、memo化しています
またこれらをベースに計算される値も同様です

@AtsushiM AtsushiM marked this pull request as ready for review February 3, 2025 22:37
@AtsushiM AtsushiM requested a review from a team as a code owner February 3, 2025 22:37
@AtsushiM AtsushiM requested review from misako0927 and hiroki0525 and removed request for a team February 3, 2025 22:37
slots: {
container:
'smarthr-ui-Calendar shr-inline-block shr-overflow-hidden shr-rounded-m shr-bg-white shr-text-black shr-shadow-layer-3 forced-colors:shr-border-shorthand forced-colors:shr-shadow-none',
header: 'smarthr-ui-Calendar-header shr-border-b-shorthand shr-flex shr-items-center shr-p-1',
yearMonth: 'smarthr-ui-Calendar-yearMonth shr-me-0.5 shr-text-base shr-font-bold',
monthButtons: 'smarthr-ui-Calendar-monthButtons shr-ms-auto shr-flex',
tableLayout: 'shr-relative',
yearSelectButton:
'smarthr-ui-Calendar-selectingYear [&[aria-expanded="true"]_.smarthr-ui-Icon]:shr-rotate-180',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@@ -13,13 +15,12 @@ import React, {
import { tv } from 'tailwind-variants'

import { Button } from '../Button'
import { FaCaretDownIcon, FaCaretUpIcon, FaChevronLeftIcon, FaChevronRightIcon } from '../Icon'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: アイコンを逆さまにして表示するようにしたので必要なくなったよう


const calendar = tv({
const classNameGenerator = tv({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nits: classNamesGenerator のほうが正しいかも?と思いました

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

あー、これlintで一律同じような名前に揃える、という感じになっているので...
一旦このままいかせてください。
必要に応じてlintを変えます

@AtsushiM AtsushiM requested a review from Qs-F February 25, 2025 22:56
Copy link
Contributor

@Qs-F Qs-F left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTMです!

@AtsushiM AtsushiM merged commit db163e9 into master Mar 13, 2025
15 checks passed
@AtsushiM AtsushiM deleted the chore-refactoring-Calendar branch March 13, 2025 03:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants