Skip to content

Commit e3a9dc4

Browse files
committed
fix: add missing data-css attributes
1 parent 4c2a87a commit e3a9dc4

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

src/frontend/components/routes/bulk-action.tsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {
1717
} from '../app/index.js'
1818
import { useTranslation, useNotice, useResource } from '../../hooks/index.js'
1919
import allowOverride from '../../hoc/allow-override.js'
20+
import { getDataCss } from '../../index.js'
2021

2122
type MatchParams = Pick<BulkActionParams, 'actionName' | 'resourceId'>
2223

@@ -97,10 +98,13 @@ const BulkAction: React.FC = () => {
9798
return <NoActionError resourceId={resourceId!} actionName={actionName!} />
9899
}
99100

101+
const routeWrapperCss = getDataCss(resource.id, action.actionType, action.name, 'route-wrapper')
102+
const routeActionCss = getDataCss(resource.id, action.actionType, action.name, 'route')
103+
100104
if (action.showInDrawer) {
101105
if (!listAction) {
102106
return (
103-
<DrawerPortal width={action.containerWidth}>
107+
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
104108
<BaseActionComponent
105109
action={action as ActionJSON}
106110
resource={resource}
@@ -116,15 +120,15 @@ const BulkAction: React.FC = () => {
116120

117121
return (
118122
<>
119-
<DrawerPortal width={action.containerWidth}>
123+
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
120124
<BaseActionComponent
121125
action={action as ActionJSON}
122126
resource={resource}
123127
records={records}
124128
setTag={setTag}
125129
/>
126130
</DrawerPortal>
127-
<Wrapper width={listAction.containerWidth}>
131+
<Wrapper width={listAction.containerWidth} data-css={routeWrapperCss}>
128132
<ActionHeader
129133
resource={resource}
130134
action={listAction}
@@ -138,7 +142,7 @@ const BulkAction: React.FC = () => {
138142
}
139143

140144
return (
141-
<Wrapper width={action.containerWidth}>
145+
<Wrapper width={action.containerWidth} data-css={routeWrapperCss}>
142146
{!action?.showInDrawer ? <ActionHeader resource={resource} action={action} tag={tag} /> : ''}
143147
<BaseActionComponent
144148
action={action as ActionJSON}

src/frontend/components/routes/record-action.tsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import DrawerPortal from '../app/drawer-portal.js'
1515
import { ActionResponse, RecordActionResponse } from '../../../backend/actions/action.interface.js'
1616
import mergeRecordResponse from '../../hooks/use-record/merge-record-response.js'
1717
import allowOverride from '../../hoc/allow-override.js'
18+
import { getDataCss } from '../../index.js'
1819

1920
const api = new ApiClient()
2021

@@ -116,10 +117,13 @@ const RecordAction: React.FC = () => {
116117
return <NoRecordError resourceId={resourceId!} recordId={recordId!} />
117118
}
118119

120+
const routeWrapperCss = getDataCss(resource.id, action.actionType, action.name, 'route-wrapper')
121+
const routeActionCss = getDataCss(resource.id, action.actionType, action.name, 'route')
122+
119123
if (action.showInDrawer) {
120124
if (!listAction) {
121125
return (
122-
<DrawerPortal width={action.containerWidth}>
126+
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
123127
<BaseActionComponent action={action as ActionJSON} resource={resource} record={record} />
124128
</DrawerPortal>
125129
)
@@ -131,10 +135,10 @@ const RecordAction: React.FC = () => {
131135

132136
return (
133137
<>
134-
<DrawerPortal width={action.containerWidth}>
138+
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
135139
<BaseActionComponent action={action as ActionJSON} resource={resource} record={record} />
136140
</DrawerPortal>
137-
<Wrapper width={listAction.containerWidth}>
141+
<Wrapper width={listAction.containerWidth} data-css={routeWrapperCss}>
138142
<ActionHeader
139143
resource={resource}
140144
action={listAction}
@@ -148,7 +152,7 @@ const RecordAction: React.FC = () => {
148152
}
149153

150154
return (
151-
<Wrapper width={action.containerWidth}>
155+
<Wrapper width={action.containerWidth} data-css={routeWrapperCss}>
152156
<ActionHeader
153157
resource={resource}
154158
action={action}

src/frontend/components/routes/resource-action.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { NoActionError, NoResourceError } from '../app/error-message.js'
1313
import FilterDrawer from '../app/filter-drawer.js'
1414
import { ActionHeader } from '../app/index.js'
1515
import Wrapper from './utils/wrapper.js'
16-
import { getResourceElementCss } from '../../utils/data-css-name.js'
16+
import { getDataCss, getResourceElementCss } from '../../utils/data-css-name.js'
1717

1818
type PropsFromState = {
1919
resources: Array<ResourceJSON>
@@ -42,11 +42,12 @@ const ResourceAction: React.FC<Props> = (props) => {
4242
const listAction = resource.resourceActions.find((r) => r.name === listActionName)
4343

4444
const contentTag = getResourceElementCss(resource.id, action.name)
45+
const routeActionCss = getDataCss(resource.id, action.actionType, action.name, 'route')
4546

4647
if (action.showInDrawer) {
4748
if (!listAction) {
4849
return (
49-
<DrawerPortal width={action.containerWidth}>
50+
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
5051
<BaseActionComponent action={action} resource={resource} />
5152
</DrawerPortal>
5253
)
@@ -58,14 +59,14 @@ const ResourceAction: React.FC<Props> = (props) => {
5859

5960
return (
6061
<>
61-
<DrawerPortal width={action.containerWidth}>
62+
<DrawerPortal width={action.containerWidth} data-css={routeActionCss}>
6263
<BaseActionComponent
6364
action={action}
6465
resource={resource}
6566
setTag={setTag}
6667
/>
6768
</DrawerPortal>
68-
<Wrapper width={listAction.containerWidth}>
69+
<Wrapper width={listAction.containerWidth} data-css={contentTag}>
6970
<ActionHeader
7071
resource={resource}
7172
action={listAction}

0 commit comments

Comments
 (0)