Skip to content

Commit d2665b2

Browse files
committed
refactor: set interval in issue listing to 5 days
Part of #1075
1 parent f47ca0f commit d2665b2

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

dashboard/src/components/IssueTable/IssueTable.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ import { valueOrEmpty } from '@/lib/string';
4848
import { TooltipDateTime } from '@/components/TooltipDateTime';
4949
import { shouldShowRelativeDate } from '@/lib/date';
5050
import { RedirectFrom } from '@/types/general';
51+
import { REDUCED_TIME_SEARCH } from '@/utils/constants/general';
5152

5253
const getLinkProps = (
5354
row: Row<IssueListingTableItem>,
@@ -294,7 +295,10 @@ export const IssueTable = ({ issueListing }: IIssueTable): JSX.Element => {
294295
/>
295296
</span>
296297
<div className="flex items-center justify-between gap-10">
297-
<MemoizedInputTime navigateFrom="/issues" />
298+
<MemoizedInputTime
299+
navigateFrom="/issues"
300+
defaultInterval={REDUCED_TIME_SEARCH}
301+
/>
298302
<PaginationInfo
299303
table={table}
300304
intlLabel="global.issues"

dashboard/src/pages/Hardware/HardwareTable.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import { RedirectFrom, type TFilter } from '@/types/general';
4949

5050
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/Tooltip';
5151
import { MemoizedInputTime } from '@/components/InputTime';
52-
import { DEFAULT_HARDWARE_INTERVAL_IN_DAYS } from '@/utils/constants/hardware';
52+
import { REDUCED_TIME_SEARCH } from '@/utils/constants/general';
5353

5454
// TODO Extract and reuse the table
5555
interface ITreeTable {
@@ -450,7 +450,7 @@ export function HardwareTable({
450450
<div className="flex items-center justify-between gap-10">
451451
<MemoizedInputTime
452452
navigateFrom="/hardware"
453-
defaultInterval={DEFAULT_HARDWARE_INTERVAL_IN_DAYS}
453+
defaultInterval={REDUCED_TIME_SEARCH}
454454
/>
455455
<PaginationInfo
456456
table={table}

dashboard/src/routes/_main/hardware/route.tsx

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@ import {
66
zListingSize,
77
type SearchSchema,
88
} from '@/types/general';
9-
import { DEFAULT_HARDWARE_INTERVAL_IN_DAYS } from '@/utils/constants/hardware';
10-
import { DEFAULT_LISTING_ITEMS } from '@/utils/constants/general';
9+
import {
10+
DEFAULT_LISTING_ITEMS,
11+
REDUCED_TIME_SEARCH,
12+
} from '@/utils/constants/general';
1113

1214
const defaultValues = {
13-
intervalInDays: DEFAULT_HARDWARE_INTERVAL_IN_DAYS,
15+
intervalInDays: REDUCED_TIME_SEARCH,
1416
hardwareSearch: '',
1517
listingSize: DEFAULT_LISTING_ITEMS,
1618
};
1719

1820
const zHardwareSchema = z.object({
19-
intervalInDays: makeZIntervalInDays(DEFAULT_HARDWARE_INTERVAL_IN_DAYS),
21+
intervalInDays: makeZIntervalInDays(REDUCED_TIME_SEARCH),
2022
hardwareSearch: z.string().catch(''),
2123
listingSize: zListingSize,
2224
} satisfies SearchSchema);

dashboard/src/routes/_main/issues/route.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import {
99
} from '@/types/general';
1010
import {
1111
DEFAULT_LISTING_ITEMS,
12-
DEFAULT_TIME_SEARCH,
12+
REDUCED_TIME_SEARCH,
1313
} from '@/utils/constants/general';
1414

1515
export const issueListingDefaultValues = {
16-
intervalInDays: DEFAULT_TIME_SEARCH,
16+
intervalInDays: REDUCED_TIME_SEARCH,
1717
issueSearch: '',
1818
listingSize: DEFAULT_LISTING_ITEMS,
1919
culpritCode: true,
@@ -22,7 +22,7 @@ export const issueListingDefaultValues = {
2222
};
2323

2424
export const issueListingSearchSchema = z.object({
25-
intervalInDays: makeZIntervalInDays(DEFAULT_TIME_SEARCH),
25+
intervalInDays: makeZIntervalInDays(REDUCED_TIME_SEARCH),
2626
issueSearch: z.string().catch(''),
2727
listingSize: zListingSize,
2828
culpritCode: z.boolean().catch(true),

dashboard/src/utils/constants/general.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ export const DOCUMENTATION_URL = 'https://docs.kernelci.org/';
77
// eslint-disable-next-line no-magic-numbers
88
export const ItemsPerPageValues = [5, 10, 20, 30, 40, 50];
99
export const DEFAULT_TIME_SEARCH = 7;
10+
export const REDUCED_TIME_SEARCH = 5;
1011
export const DEFAULT_LISTING_ITEMS = 10;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
export const DEFAULT_HARDWARE_INTERVAL_IN_DAYS = 5;
21
export const TREE_SELECT_HEAD_VALUE = 'head';

0 commit comments

Comments
 (0)