fix(admin-ui): Inventory and order UI fixes and tweaks (#3461)

This PR aims to tackle a few different small fixes and tweaks related to inventory and order details UI, in connection to multiwarehousing features.

- Successfully deleting an allocation should now only present one toast
- Updated copy in allocation editing toasts
- Inventory table search should now be the same height as the location selection trigger
- Inventory table rows should now correctly visually indicate that they are clickable
- Removed Filters from Inventory table for the time being
- Added actions to Inventory table rows for adjusting availability (same action as clicking the row, which remains) and going to the product detail page for the inventory item

Resolves CORE-1229, CORE-1228, CORE-1227, CORE-1233, CORE-1230
This commit is contained in:
Rares Stefan
2023-03-14 10:53:13 +01:00
committed by GitHub
parent 55a1f232a3
commit 478903b55a
4 changed files with 68 additions and 19 deletions

View File

@@ -11,6 +11,7 @@ type TableRowProps = React.HTMLAttributes<HTMLTableRowElement> & {
forceDropdown?: boolean
actions?: ActionType[]
linkTo?: string
clickable?: boolean
}
type TableCellProps = React.TdHTMLAttributes<HTMLTableCellElement> & {
@@ -28,6 +29,7 @@ export type TableProps = {
filteringOptions?: FilteringOptionProps[] | React.ReactNode
tableActions?: React.ReactNode
enableSearch?: boolean
searchClassName?: string
immediateSearchFocus?: boolean
searchPlaceholder?: string
searchValue?: string
@@ -55,6 +57,7 @@ const Table = React.forwardRef<HTMLTableElement, TableProps>(
children,
tableActions,
enableSearch,
searchClassName,
immediateSearchFocus,
searchPlaceholder,
searchValue,
@@ -89,6 +92,7 @@ const Table = React.forwardRef<HTMLTableElement, TableProps>(
placeholder={searchPlaceholder}
searchValue={searchValue}
onSearch={handleSearch!}
className={searchClassName}
/>
)}
</div>
@@ -217,7 +221,18 @@ Table.Cell = React.forwardRef<HTMLTableCellElement, TableCellProps>(
)
Table.Row = React.forwardRef<HTMLTableRowElement, TableRowProps>(
({ className, actions, children, linkTo, forceDropdown, ...props }, ref) => {
(
{
className,
actions,
children,
linkTo,
forceDropdown,
clickable,
...props
},
ref
) => {
const navigate = useNavigate()
return (
<tr
@@ -225,7 +240,9 @@ Table.Row = React.forwardRef<HTMLTableRowElement, TableRowProps>(
className={clsx(
"inter-small-regular border-grey-20 text-grey-90 border-t border-b",
className,
{ "hover:bg-grey-5 cursor-pointer": linkTo !== undefined }
{
"hover:bg-grey-5 cursor-pointer": linkTo !== undefined || clickable,
}
)}
{...props}
{...(linkTo && {