Skip to content
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

Préavis – Sépare le suivi des temps de rendu de celui d'affichage des loading spinners #3655

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function LogbookPriorNotificationForm() {
}

customSentry.endMeasurement(
CustomSentryMeasurementName.LOGBOOK_PRIOR_NOTIFICATION_FORM_SPINNER,
CustomSentryMeasurementName.LOGBOOK_PRIOR_NOTIFICATION_FORM_LOADING,
openedPriorNotificationDetail.reportId,
2000
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export function ManualPriorNotificationForm() {
const editedManualPriorNotificationFormValues = useMainAppSelector(
state => state.priorNotification.editedManualPriorNotificationFormValues
)
const editedPriorNotificationId = useMainAppSelector(state => state.priorNotification.editedPriorNotificationId)
const openedPriorNotificationDetail = useMainAppSelector(
state => state.priorNotification.openedPriorNotificationDetail
)
Expand Down Expand Up @@ -80,16 +81,24 @@ export function ManualPriorNotificationForm() {
}

if (!editedManualPriorNotificationFormValues || isLoading) {
const customSentryProps = editedPriorNotificationId
? {
id: editedPriorNotificationId,
maxExpectedDurationInMs: 2000,
name: CustomSentryMeasurementName.MANUAL_PRIOR_NOTIFICATION_FORM_SPINNER
}
: undefined

return (
<SideWindowCard onBackgroundClick={close}>
<LoadingSpinnerWall />
<LoadingSpinnerWall customSentryProps={customSentryProps} />
</SideWindowCard>
)
}

if (openedPriorNotificationDetail?.reportId) {
customSentry.endMeasurement(
CustomSentryMeasurementName.MANUAL_PRIOR_NOTIFICATION_FORM_SPINNER,
CustomSentryMeasurementName.MANUAL_PRIOR_NOTIFICATION_FORM_LOADING,
openedPriorNotificationDetail.reportId,
2000
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
} from '@features/PriorNotification/utils'
import { useMainAppDispatch } from '@hooks/useMainAppDispatch'
import { useMainAppSelector } from '@hooks/useMainAppSelector'
import { CustomSentryMeasurementName } from '@libs/customSentry'
import { DisplayedErrorKey } from '@libs/DisplayedError/constants'
import { Accent, Button, Level } from '@mtes-mct/monitor-ui'
import { useIsSuperUser } from 'auth/hooks/useIsSuperUser'
Expand Down Expand Up @@ -40,6 +41,7 @@ export function PriorNotificationCard({
const displayedError = useMainAppSelector(
state => state.displayedError[DisplayedErrorKey.SIDE_WINDOW_PRIOR_NOTIFICATION_CARD_ERROR]
)
const editedPriorNotificationId = useMainAppSelector(state => state.priorNotification.editedPriorNotificationId)
const isSuperUser = useIsSuperUser()

const controlledDisplayedErrorKey = displayedError
Expand All @@ -62,9 +64,17 @@ export function PriorNotificationCard({
}

if (!detail || isLoading) {
const customSentryProps = editedPriorNotificationId
? {
id: editedPriorNotificationId,
maxExpectedDurationInMs: 2000,
name: CustomSentryMeasurementName.LOGBOOK_PRIOR_NOTIFICATION_FORM_SPINNER
}
: undefined

return (
<StyledCard $isSuperUser={isSuperUser} onBackgroundClick={close}>
<LoadingSpinnerWall />
<LoadingSpinnerWall customSentryProps={customSentryProps} />
</StyledCard>
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { customSentry, CustomSentryMeasurementName } from '@libs/customSentry'
import { TableWithSelectableRows } from '@mtes-mct/monitor-ui'
import { useEffect } from 'react'
import styled from 'styled-components'

import { getTableColumns } from './columns'
Expand All @@ -11,6 +13,10 @@ export function TableBodyLoader({ isFromUrl }: TableBodyLoaderProps) {
const emptyRows = new Array(DEFAULT_PAGE_SIZE).fill(undefined)
const tableColumns = getTableColumns(isFromUrl)

useEffect(() => () => {
customSentry.endMeasurement(CustomSentryMeasurementName.MANUAL_PRIOR_NOTIFICATION_FORM_SPINNER, '0', 2000)
})

return (
<tbody>
{emptyRows.map((_, index) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export function PriorNotificationList({ isFromUrl }: PriorNotificationListProps)
}, [previousListFilter, listFilter, table])

if (isBodyLoaderVisible) {
customSentry.startMeasurement(CustomSentryMeasurementName.PRIOR_NOTIFICATION_LIST_BODY_LOADING, '0')
customSentry.startMeasurement(CustomSentryMeasurementName.PRIOR_NOTIFICATION_LIST_BODY_SPINNER, '0')
} else {
customSentry.endMeasurement(CustomSentryMeasurementName.PRIOR_NOTIFICATION_LIST_BODY_SPINNER, '0', 2000)
Expand Down
10 changes: 10 additions & 0 deletions frontend/src/features/PriorNotification/slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export interface PriorNotificationState {
editedLogbookPriorNotificationFormValues: PriorNotification.LogbookForm | undefined
editedManualPriorNotificationComputedValues: Undefine<PriorNotification.ManualComputedValues> | undefined
editedManualPriorNotificationFormValues: ManualPriorNotificationFormValues | undefined
// TODO Remove this prop once loading / spinner perfs tests are removed.
editedPriorNotificationId: string | undefined
isPriorNotificationFormDirty: boolean
listFilterValues: ListFilter
openedPriorNotificationComponentType: OpenedPriorNotificationType | undefined
Expand All @@ -22,6 +24,8 @@ const INITIAL_STATE: PriorNotificationState = {
editedLogbookPriorNotificationFormValues: undefined,
editedManualPriorNotificationComputedValues: undefined,
editedManualPriorNotificationFormValues: undefined,
// TODO Remove this prop once loading / spinner perfs tests are removed.
editedPriorNotificationId: undefined,
isPriorNotificationFormDirty: false,
listFilterValues: DEFAULT_LIST_FILTER_VALUES,
openedPriorNotificationComponentType: undefined,
Expand All @@ -34,6 +38,7 @@ const priorNotificationSlice = createSlice({
reducers: {
closePriorNotificationCardAndForm(state) {
state.editedLogbookPriorNotificationFormValues = undefined
state.editedPriorNotificationId = undefined
state.editedManualPriorNotificationComputedValues = undefined
state.editedManualPriorNotificationFormValues = undefined
state.isPriorNotificationFormDirty = false
Expand All @@ -60,6 +65,11 @@ const priorNotificationSlice = createSlice({
state.editedManualPriorNotificationFormValues = action.payload
},

// TODO Remove this function once loading / spinner perfs tests are removed.
setEditedPriorNotificationId(state, action: PayloadAction<string>) {
state.editedPriorNotificationId = action.payload
},

setIsPriorNotificationFormDirty(state, action: PayloadAction<boolean>) {
state.isPriorNotificationFormDirty = action.payload
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,19 @@ export const openLogbookPriorNotificationForm =
(identifier: PriorNotification.Identifier, fingerprint?: string): MainAppThunk<Promise<void>> =>
async dispatch => {
try {
customSentry.startMeasurement(
CustomSentryMeasurementName.LOGBOOK_PRIOR_NOTIFICATION_FORM_LOADING,
identifier.reportId
)
customSentry.startMeasurement(
CustomSentryMeasurementName.LOGBOOK_PRIOR_NOTIFICATION_FORM_SPINNER,
identifier.reportId
)

dispatch(displayedErrorActions.unset(DisplayedErrorKey.SIDE_WINDOW_PRIOR_NOTIFICATION_FORM_ERROR))
dispatch(priorNotificationActions.closePriorNotificationCardAndForm())
// TODO Remove this function once loading / spinner perfs tests are removed.
dispatch(priorNotificationActions.setEditedPriorNotificationId(identifier.reportId))
dispatch(priorNotificationActions.openPriorNotification(OpenedPriorNotificationType.LogbookForm))

const logbookPriorNotification = await dispatch(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ export const openManualPriorNotificationForm =
async dispatch => {
try {
if (identifier) {
customSentry.startMeasurement(
CustomSentryMeasurementName.MANUAL_PRIOR_NOTIFICATION_FORM_LOADING,
identifier.reportId
)
customSentry.startMeasurement(
CustomSentryMeasurementName.MANUAL_PRIOR_NOTIFICATION_FORM_SPINNER,
identifier.reportId
Expand All @@ -34,6 +38,10 @@ export const openManualPriorNotificationForm =

dispatch(displayedErrorActions.unset(DisplayedErrorKey.SIDE_WINDOW_PRIOR_NOTIFICATION_FORM_ERROR))
dispatch(priorNotificationActions.closePriorNotificationCardAndForm())
// TODO Remove this function once loading / spinner perfs tests are removed.
if (identifier) {
dispatch(priorNotificationActions.setEditedPriorNotificationId(identifier.reportId))
}
dispatch(priorNotificationActions.openPriorNotification(OpenedPriorNotificationType.ManualForm))

if (!identifier) {
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/libs/customSentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ type CustomSentryMeasurementValue = {
}

export enum CustomSentryMeasurementName {
LOGBOOK_PRIOR_NOTIFICATION_FORM_LOADING = 'LOGBOOK_PRIOR_NOTIFICATION_FORM_LOADING',
LOGBOOK_PRIOR_NOTIFICATION_FORM_SPINNER = 'LOGBOOK_PRIOR_NOTIFICATION_FORM_SPINNER',
MANUAL_PRIOR_NOTIFICATION_FORM_LOADING = 'MANUAL_PRIOR_NOTIFICATION_FORM_LOADING',
MANUAL_PRIOR_NOTIFICATION_FORM_SPINNER = 'MANUAL_PRIOR_NOTIFICATION_FORM_SPINNER',
PRIOR_NOTIFICATION_CARD_DOWNLOAD_BUTTON = 'PRIOR_NOTIFICATION_CARD_DOWNLOAD_BUTTON',
PRIOR_NOTIFICATION_LIST_BODY_LOADING = 'PRIOR_NOTIFICATION_LIST_BODY_LOADING',
PRIOR_NOTIFICATION_LIST_BODY_SPINNER = 'PRIOR_NOTIFICATION_LIST_BODY_SPINNER'
}

Expand Down
30 changes: 29 additions & 1 deletion frontend/src/ui/LoadingSpinnerWall.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,42 @@
import { FulfillingBouncingCircleSpinner } from '@components/FulfillingBouncingCircleSpinner'
import { customSentry, type CustomSentryMeasurementName } from '@libs/customSentry'
import { THEME } from '@mtes-mct/monitor-ui'
import { useEffect } from 'react'
import styled from 'styled-components'

import VesselSVG from '../features/icons/Icone_navire.svg?react'

export type LoadingSpinnerWallProps = {
customSentryProps?:
| {
id: string
maxExpectedDurationInMs?: number
name: CustomSentryMeasurementName
}
| undefined
isVesselShowed?: boolean
message?: string
}
export function LoadingSpinnerWall({ isVesselShowed = false, message = 'Chargement...' }: LoadingSpinnerWallProps) {
export function LoadingSpinnerWall({
customSentryProps,
isVesselShowed = false,
message = 'Chargement...'
}: LoadingSpinnerWallProps) {
useEffect(
() => () => {
if (!customSentryProps) {
return
}

customSentry.endMeasurement(
customSentryProps.name,
customSentryProps.id,
customSentryProps.maxExpectedDurationInMs
)
},
[customSentryProps]
)

return (
<Wrapper data-cy="first-loader">
<FulfillingBouncingCircleSpinner className="update-vessels" color={THEME.color.lightGray} size={48} />
Expand Down
Loading