Skip to content

Commit 702da11

Browse files
authored
chore: #26 Refactor React Router example usage (#27)
1 parent 08ca751 commit 702da11

File tree

77 files changed

+3113
-3095
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+3113
-3095
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"just-debounce-it": "^3.2.0",
3434
"qs": "^6.14.0",
3535
"query-string": "9.1.1",
36-
"react": "^18.2.0",
37-
"react-dom": "^18.2.0",
36+
"react": "^18.3.0",
37+
"react-dom": "^18.3.0",
3838
"react-hook-form": "^7.51.3",
3939
"react-router": "^6.22.3",
4040
"react-router-dom": "^6.22.3",
41-
"typescript": "^5.7.3",
41+
"typescript": "^5.8.2",
4242
"yup": "^1.6.1",
4343
"zustand": "^5.0.3"
4444
},
@@ -50,8 +50,8 @@
5050
"@testing-library/user-event": "^14.6.1",
5151
"@types/eslint": "^9.6.1",
5252
"@types/node": "^20.12.7",
53-
"@types/react": "^18.2.79",
54-
"@types/react-dom": "^18.2.25",
53+
"@types/react": "^18.3.18",
54+
"@types/react-dom": "^18.3.5",
5555
"@typescript-eslint/eslint-plugin": "^8.24.0",
5656
"@typescript-eslint/parser": "^8.24.0",
5757
"@vitejs/plugin-react": "^4.3.4",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { LoginModule } from '..'
1+
import { LoginPage } from '..'
22
import { render } from '@testing-library/react'
33

44
describe('Login', () => {
55
it('should match a snapshot', () => {
66
process.env.VITE_APP_ENV = 'development'
7-
expect(render(<LoginModule />).asFragment()).toMatchSnapshot()
7+
expect(render(<LoginPage />).asFragment()).toMatchSnapshot()
88
})
99
})

src/components/login/index.tsx src/components/LoginPage/index.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { FC } from 'react'
21
import { Button, ButtonGroup, Subtitle, FlexContainer, Icon, elMb7, BodyText } from '@reapit/elements'
32
import { LoginContainer, LoginContentWrapper } from './__styles__'
43
import { reapitConnectBrowserSession } from '../../core/connect-session'
@@ -7,7 +6,7 @@ export const handleLoginClick = () => {
76
reapitConnectBrowserSession.connectLoginRedirect()
87
}
98

10-
export const LoginModule: FC = () => {
9+
export const LoginPage = () => {
1110
return (
1211
<LoginContainer>
1312
<LoginContentWrapper>
@@ -25,6 +24,3 @@ export const LoginModule: FC = () => {
2524
</LoginContainer>
2625
)
2726
}
28-
29-
export default LoginModule
30-
export * from './login-routes'

src/components/contacts/view/__tests__/__snapshots__/index.test.tsx.snap src/components/contacts/ContactDetailPage/FullContactDetails/__tests__/__snapshots__/index.test.tsx.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22

3-
exports[`ContactsEditView > should match a snapshot with data 1`] = `
3+
exports[`FullContactDetails > should match a snapshot with data 1`] = `
44
<DocumentFragment>
55
<div
66
class="mocked-styled-93 el-snack-holder"
@@ -708,7 +708,7 @@ exports[`ContactsEditView > should match a snapshot with data 1`] = `
708708
</DocumentFragment>
709709
`;
710710

711-
exports[`ContactsEditView > should match a snapshot with no data 1`] = `
711+
exports[`FullContactDetails > should match a snapshot with no data 1`] = `
712712
<DocumentFragment>
713713
<div
714714
class="mocked-styled-93 el-snack-holder"
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
import { Mock } from 'vitest'
2-
import { ContactsEditView } from '..'
3-
import { usePlatformGet } from '../../../../hooks'
2+
import { FullContactDetails } from '..'
3+
import { usePlatformGet } from '../../../../../hooks'
44
import {
55
mockSourceModelPagedResult,
66
mockContactCategories,
77
mockNegotiatorModelPagedResult,
88
mockOfficeModelPagedResult,
99
mockContactModel,
10-
} from '../../../../scripts/stubs'
11-
import { render } from '../../../../scripts/tests'
10+
} from '../../../../../scripts/stubs'
11+
import { render } from '../../../../../scripts/tests'
1212

13-
vi.mock('../../../../hooks', () => ({
13+
vi.mock('../../../../../hooks', () => ({
1414
usePlatformGet: vi.fn(),
1515
usePlatformUpdate: vi.fn(() => [vi.fn()]),
1616
}))
1717

1818
const mockUsePlatformGet = usePlatformGet as Mock
1919

20-
describe('ContactsEditView', () => {
20+
describe('FullContactDetails', () => {
2121
it('should match a snapshot with data', () => {
22-
mockUsePlatformGet
22+
vi.mocked(mockUsePlatformGet)
2323
.mockReturnValue([mockSourceModelPagedResult])
2424
.mockReturnValue([mockContactCategories])
2525
.mockReturnValue([mockNegotiatorModelPagedResult])
2626
.mockReturnValue([mockOfficeModelPagedResult])
2727

28-
expect(render(<ContactsEditView contact={mockContactModel} />).asFragment()).toMatchSnapshot()
28+
expect(render(<FullContactDetails contact={mockContactModel} />).asFragment()).toMatchSnapshot()
2929
})
3030

3131
it('should match a snapshot with no data', () => {
32-
expect(render(<ContactsEditView contact={null} />).asFragment()).toMatchSnapshot()
32+
expect(render(<FullContactDetails contact={null} />).asFragment()).toMatchSnapshot()
3333
})
3434
})

src/components/contacts/view/index.tsx src/components/contacts/ContactDetailPage/FullContactDetails/index.tsx

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { FC } from 'react'
21
import { elFadeIn, KeyValueList, StatusIndicator, Badge, BadgeGroup } from '@reapit/elements'
32
import {
43
ContactModel,
@@ -7,15 +6,15 @@ import {
76
OfficeModelPagedResult,
87
SourceModelPagedResult,
98
} from '@reapit/foundations-ts-definitions'
10-
import { usePlatformGet } from '../../../hooks'
11-
import { combineAddress } from '../../../utils/combine-address'
12-
import { combineName } from '../../../utils/combine-name'
9+
import { usePlatformGet } from '../../../../hooks'
10+
import { combineAddress } from '../../../../utils/combine-address'
11+
import { combineName } from '../../../../utils/combine-name'
1312

14-
export interface ContactsEditViewProps {
13+
export interface FullContactDetailsProps {
1514
contact: ContactModel | null
1615
}
1716

18-
export const ContactsEditView: FC<ContactsEditViewProps> = ({ contact }) => {
17+
export const FullContactDetails = ({ contact }: FullContactDetailsProps) => {
1918
const {
2019
title,
2120
forename,
@@ -206,4 +205,4 @@ export const ContactsEditView: FC<ContactsEditViewProps> = ({ contact }) => {
206205
)
207206
}
208207

209-
export default ContactsEditView
208+
export default FullContactDetails

0 commit comments

Comments
 (0)