Skip to content

Commit

Permalink
fix(app): get back unboxingFlow path update function (#16411)
Browse files Browse the repository at this point in the history
* fix(app): get back unboxingFlow path update function
  • Loading branch information
koji authored Oct 3, 2024
1 parent 5cde3b8 commit 4bca02a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
10 changes: 10 additions & 0 deletions app/src/pages/RobotDashboard/WelcomeModal.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as React from 'react'
import { useTranslation } from 'react-i18next'
import { useDispatch } from 'react-redux'

import {
COLORS,
Expand All @@ -14,10 +15,12 @@ import { useCreateLiveCommandMutation } from '@opentrons/react-api-client'

import { SmallButton } from '../../atoms/buttons'
import { Modal } from '../../molecules/Modal'
import { updateConfigValue } from '../../redux/config'

import welcomeModalImage from '../../assets/images/on-device-display/welcome_dashboard_modal.png'

import type { SetStatusBarCreateCommand } from '@opentrons/shared-data'
import type { Dispatch } from '../../redux/types'

interface WelcomeModalProps {
setShowWelcomeModal: (showWelcomeModal: boolean) => void
Expand All @@ -27,6 +30,7 @@ export function WelcomeModal({
setShowWelcomeModal,
}: WelcomeModalProps): JSX.Element {
const { t } = useTranslation(['device_details', 'shared'])
const dispatch = useDispatch<Dispatch>()

const { createLiveCommand } = useCreateLiveCommandMutation()
const animationCommand: SetStatusBarCreateCommand = {
Expand All @@ -44,6 +48,12 @@ export function WelcomeModal({
}

const handleCloseModal = (): void => {
dispatch(
updateConfigValue(
'onDeviceDisplaySettings.unfinishedUnboxingFlowRoute',
null
)
)
setShowWelcomeModal(false)
}

Expand Down
7 changes: 6 additions & 1 deletion app/src/pages/RobotDashboard/__tests__/WelcomeModal.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ import { useCreateLiveCommandMutation } from '@opentrons/react-api-client'

import { renderWithProviders } from '../../../__testing-utils__'
import { i18n } from '../../../i18n'
import { updateConfigValue } from '../../../redux/config'
import { WelcomeModal } from '../WelcomeModal'

import type { SetStatusBarCreateCommand } from '@opentrons/shared-data'

vi.mock('../../../redux/config')
vi.mock('@opentrons/react-api-client')
vi.mock('../../../redux/config')

const mockFunc = vi.fn()
const WELCOME_MODAL_IMAGE_NAME = 'welcome_dashboard_modal.png'
Expand Down Expand Up @@ -61,6 +62,10 @@ describe('WelcomeModal', () => {
it('should call a mock function when tapping next button', () => {
render(props)
fireEvent.click(screen.getByText('Next'))
expect(vi.mocked(updateConfigValue)).toHaveBeenCalledWith(
'onDeviceDisplaySettings.unfinishedUnboxingFlowRoute',
null
)
expect(props.setShowWelcomeModal).toHaveBeenCalled()
})
})

0 comments on commit 4bca02a

Please sign in to comment.