Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-frontends
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-frontends
Commits
34904d26
Commit
34904d26
authored
4 days ago
by
Stephanie Freitag
Browse files
Options
Downloads
Patches
Plain Diff
HOLI-11059: clean up old guest mode on web
parent
f889f9ea
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/screens/onboarding/helpers/__tests__/guestModeStorage.web.test.ts
+23
-0
23 additions, 0 deletions
...onboarding/helpers/__tests__/guestModeStorage.web.test.ts
core/screens/onboarding/helpers/guestModeStorage.web.ts
+8
-2
8 additions, 2 deletions
core/screens/onboarding/helpers/guestModeStorage.web.ts
with
31 additions
and
2 deletions
core/screens/onboarding/helpers/__tests__/guestModeStorage.web.test.ts
+
23
−
0
View file @
34904d26
import
{
getGuestMode
,
storeGuestMode
}
from
'
@holi/core/screens/onboarding/helpers/guestModeStorage.web
'
import
{
getCookie
,
setCookie
,
deleteCookie
}
from
'
cookies-next
'
import
{
logError
}
from
'
@holi/core/errors/helpers
'
import
AsyncStorage
from
'
@react-native-async-storage/async-storage
'
jest
.
mock
(
'
@holi/core/errors/helpers
'
,
()
=>
({
logError
:
jest
.
fn
(),
...
...
@@ -17,7 +18,18 @@ jest.mock('cookies-next', () => {
}
})
const
mockDeleteStorage
=
AsyncStorage
.
removeItem
as
jest
.
Mock
jest
.
mock
(
'
@react-native-async-storage/async-storage
'
,
()
=>
{
return
{
removeItem
:
jest
.
fn
(),
}
})
describe
(
'
guestModeStorage
'
,
()
=>
{
beforeEach
(()
=>
{
mockDeleteStorage
.
mockResolvedValue
({})
})
it
(
'
should return true when guest mode is enabled
'
,
async
()
=>
{
mockGetCookie
.
mockReturnValueOnce
(
'
true
'
)
...
...
@@ -74,4 +86,15 @@ describe('guestModeStorage', () => {
location
:
'
guestModeStorage.storeGuestMode
'
,
})
})
it
(
'
should clean up old guest mode
'
,
async
()
=>
{
jest
.
useFakeTimers
()
await
getGuestMode
()
jest
.
runOnlyPendingTimers
()
expect
(
mockDeleteStorage
).
toHaveBeenCalledWith
(
'
guest_mode
'
)
jest
.
useRealTimers
()
})
})
This diff is collapsed.
Click to expand it.
core/screens/onboarding/helpers/guestModeStorage.web.ts
+
8
−
2
View file @
34904d26
import
{
logError
}
from
'
@holi/core/errors/helpers
'
import
{
getCookie
,
setCookie
,
deleteCookie
}
from
'
cookies-next
'
import
AsyncStore
from
'
@react-native-async-storage/async-storage
'
export
const
GUEST_MODE_COOKIE_NAME
=
'
guest_mode
'
const
one_year_in_seconds
:
number
=
60
*
60
*
24
*
365
...
...
@@ -17,10 +18,12 @@ export const storeGuestMode = async (guestMode?: boolean): Promise<void> => {
})
}
}
export
const
getGuestMode
=
async
():
Promise
<
boolean
>
=>
{
try
{
const
userData
=
getCookie
(
GUEST_MODE_COOKIE_NAME
)
return
userData
?
true
:
false
const
guestMode
=
getCookie
(
GUEST_MODE_COOKIE_NAME
)
cleanUpOldGuestMode
().
catch
(()
=>
{})
return
!!
guestMode
}
catch
(
error
)
{
logError
(
error
,
'
Failed to get guest mode
'
,
{
location
:
'
guestModeStorage.getGuestMode
'
,
...
...
@@ -30,3 +33,6 @@ export const getGuestMode = async (): Promise<boolean> => {
}
export
const
clearGuestMode
=
()
=>
storeGuestMode
()
// Deprecated guest mode stored in AsyncStorage in 1.53
const
cleanUpOldGuestMode
=
()
=>
AsyncStore
.
removeItem
(
'
guest_mode
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment