File size: 4,741 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
import React, { useState, useEffect } from 'react'
import { Loader } from '@adminjs/design-system'
import { useLocation, useParams } from 'react-router'
import { BulkActionParams } from '../../../backend/utils/view-helpers/view-helpers.js'
import ApiClient from '../../utils/api-client.js'
import getBulkActionsFromRecords from '../app/records-table/utils/get-bulk-actions-from-records.js'
import { ActionJSON, RecordJSON } from '../../interfaces/index.js'
import Wrapper from './utils/wrapper.js'
import {
ActionHeader,
DrawerPortal,
BaseActionComponent,
ErrorMessageBox,
NoResourceError,
NoActionError,
} from '../app/index.js'
import { useTranslation, useNotice, useResource } from '../../hooks/index.js'
import allowOverride from '../../hoc/allow-override.js'
import { getDataCss } from '../../index.js'
type MatchParams = Pick<BulkActionParams, 'actionName' | 'resourceId'>
const api = new ApiClient()
const BulkAction: React.FC = () => {
const params = useParams<MatchParams>()
const [records, setRecords] = useState<Array<RecordJSON>>([])
const [loading, setLoading] = useState(false)
const [tag, setTag] = useState('')
const [filterVisible, setFilterVisible] = useState(false)
const { translateMessage } = useTranslation()
const addNotice = useNotice()
const location = useLocation()
const { resourceId, actionName } = params
const resource = useResource(resourceId!)
const listActionName = 'list'
const listAction = resource?.resourceActions.find((r) => r.name === listActionName)
const fetchRecords = (): Promise<void> => {
const recordIdsString = new URLSearchParams(location.search).get('recordIds')
const recordIds = recordIdsString ? recordIdsString.split(',') : []
setLoading(true)
return api
.bulkAction({
resourceId: resourceId!,
recordIds,
actionName: actionName!,
})
.then((response) => {
setLoading(false)
setRecords(response.data.records)
})
.catch((error) => {
setLoading(false)
addNotice({
message: 'errorFetchingRecords',
type: 'error',
resourceId,
})
throw error
})
}
useEffect(() => {
fetchRecords()
}, [params.resourceId, params.actionName, location.search])
if (!resource) {
return <NoResourceError resourceId={resourceId!} />
}
if (!records && !loading) {
return (
<ErrorMessageBox title="No records">
<p>{translateMessage('noRecordsSelected', resourceId)}</p>
</ErrorMessageBox>
)
}
const action = getBulkActionsFromRecords(records || []).find((r) => r.name === actionName)
if (loading) {
const actionFromResource = resource.actions.find((r) => r.name === actionName)
return actionFromResource?.showInDrawer ? (
<DrawerPortal>
<Loader />
</DrawerPortal>
) : (
<Loader />
)
}
if (!action) {
return <NoActionError resourceId={resourceId!} actionName={actionName!} />
}
const routeWrapperCss = getDataCss(resource.id, action.actionType, action.name, 'route-wrapper')
const routeActionCss = getDataCss(resource.id, action.actionType, action.name, 'route')
if (action.showInDrawer) {
if (!listAction) {
return (
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
<BaseActionComponent
action={action as ActionJSON}
resource={resource}
records={records}
/>
</DrawerPortal>
)
}
const toggleFilter = listAction.showFilter
? (): void => setFilterVisible(!filterVisible)
: undefined
return (
<>
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
<BaseActionComponent
action={action as ActionJSON}
resource={resource}
records={records}
setTag={setTag}
/>
</DrawerPortal>
<Wrapper width={listAction.containerWidth} data-css={routeWrapperCss}>
<ActionHeader
resource={resource}
action={listAction}
tag={tag}
toggleFilter={toggleFilter}
/>
<BaseActionComponent action={listAction} resource={resource} setTag={setTag} />
</Wrapper>
</>
)
}
return (
<Wrapper width={action.containerWidth} data-css={routeWrapperCss}>
{!action?.showInDrawer ? <ActionHeader resource={resource} action={action} tag={tag} /> : ''}
<BaseActionComponent
action={action as ActionJSON}
resource={resource}
records={records}
setTag={setTag}
/>
</Wrapper>
)
}
export default allowOverride(BulkAction, 'BulkActionRoute')
|