-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Update navigation and implement onLocationUpdate logic #43
Merged
Merged
Changes from all commits
Commits
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 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 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 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,8 +1,24 @@ | ||
import { describe, expect, test } from 'vitest' | ||
import { describe, expect, test, vi } from 'vitest' | ||
import { createRouterNavigation } from '@/utilities/routerNavigation' | ||
import { random } from '@/utilities/testHelpers' | ||
|
||
describe('createRouterNavigation', () => { | ||
test('is not implemented, and throws exception', () => { | ||
expect(() => createRouterNavigation()).toThrowError('not implemented') | ||
test('Browser like navigation is not supported', () => { | ||
const onLocationUpdate = vi.fn() | ||
const navigation = createRouterNavigation({ onLocationUpdate }) | ||
|
||
expect(() => navigation.back()).toThrowError() | ||
expect(() => navigation.forward()).toThrowError() | ||
expect(() => navigation.go(1)).toThrowError() | ||
}) | ||
|
||
test('when update is called and same origin calls onLocationUpdate', () => { | ||
const onLocationUpdate = vi.fn() | ||
const url = random.number().toString() | ||
const history = createRouterNavigation({ onLocationUpdate }) | ||
|
||
history.update(url) | ||
|
||
expect(onLocationUpdate).toHaveBeenCalledWith(url) | ||
}) | ||
}) |
This file contains 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,30 +1,79 @@ | ||
import { isBrowser } from '@/utilities/isBrowser' | ||
import { updateBrowserUrl } from '@/utilities/updateBrowserUrl' | ||
|
||
type RouterNavigationOptions = { | ||
onLocationUpdate: (url: string) => Promise<void>, | ||
} | ||
|
||
type RouterNavigationUpdateOptions = { | ||
replace?: boolean, | ||
} | ||
|
||
type NavigationForward = () => void | ||
type NavigationBack = () => void | ||
type NavigationGo = (delta: number) => void | ||
type NavigationUpdate = (url: string, options?: RouterNavigationUpdateOptions) => Promise<void> | ||
type NavigationCleanup = () => void | ||
|
||
type RouterNavigation = { | ||
forward: () => void, | ||
back: () => void, | ||
go: (delta: number) => void, | ||
update: (url: string, options?: RouterNavigationUpdateOptions) => void, | ||
forward: NavigationForward, | ||
back: NavigationBack, | ||
go: NavigationGo, | ||
update: NavigationUpdate, | ||
cleanup?: () => void, | ||
} | ||
|
||
export function createRouterNavigation(): RouterNavigation { | ||
return isBrowser() ? createWebNavigation() : createMemoryNavigation() | ||
export function createRouterNavigation(options: RouterNavigationOptions): RouterNavigation { | ||
if (isBrowser()) { | ||
return createBrowserNavigation(options) | ||
} | ||
|
||
return createNodeNavigation(options) | ||
} | ||
|
||
function createWebNavigation(): RouterNavigation { | ||
function createBrowserNavigation({ onLocationUpdate }: RouterNavigationOptions): RouterNavigation { | ||
|
||
const update: NavigationUpdate = async (url, options) => { | ||
await updateBrowserUrl(url, options) | ||
|
||
return await onLocationUpdate(url) | ||
} | ||
|
||
const cleanup: NavigationCleanup = () => { | ||
removeEventListener('popstate', onPopstate) | ||
} | ||
|
||
const onPopstate = (): void => { | ||
onLocationUpdate(window.location.toString()) | ||
} | ||
|
||
addEventListener('popstate', onPopstate) | ||
|
||
return { | ||
go: window.history.go, | ||
back: window.history.back, | ||
forward: window.history.forward, | ||
update: updateBrowserUrl, | ||
forward: history.forward, | ||
back: history.back, | ||
go: history.go, | ||
update, | ||
cleanup, | ||
} | ||
} | ||
|
||
function createMemoryNavigation(): RouterNavigation { | ||
throw 'not implemented' | ||
} | ||
function createNodeNavigation({ onLocationUpdate }: RouterNavigationOptions): RouterNavigation { | ||
const notSupported = (): void => { | ||
throw new Error('Browser like navigation is not supported outside of a browser context') | ||
} | ||
|
||
const update: NavigationUpdate = async (url) => { | ||
return await onLocationUpdate(url) | ||
} | ||
|
||
const cleanup: NavigationCleanup = () => {} | ||
|
||
return { | ||
forward: notSupported, | ||
back: notSupported, | ||
go: notSupported, | ||
cleanup, | ||
update, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
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.
Deleted this test because we decided
updateBrowserUrl
shouldn't even get called ifisBrowser()
isfalse
.