Changeset 057453c for src/sections/company/company-list-dialog.tsx
- Timestamp:
- 02/26/25 10:05:32 (5 weeks ago)
- Branches:
- main
- Children:
- 299af01
- Parents:
- 5d6f37a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sections/company/company-list-dialog.tsx
r5d6f37a r057453c 9 9 import ListItemButton, { listItemButtonClasses } from '@mui/material/ListItemButton'; 10 10 // types 11 import { Customer } from ' mvpmasters-shared';11 import { Customer } from 'src/schemas'; 12 12 // components 13 13 import Iconify from 'src/components/iconify'; 14 14 import SearchNotFound from 'src/components/search-not-found'; 15 15 import { createFullAddress } from 'src/utils/create-full-address'; 16 import { Tenant } from 'src/schemas'; 16 17 17 18 // ---------------------------------------------------------------------- … … 19 20 type Props = { 20 21 title?: string; 21 list: Customer[]; 22 tenant?: Tenant; 23 list?: Customer[]; 22 24 action?: React.ReactNode; 23 25 // … … 26 28 // 27 29 selected: (selectedId: string) => boolean; 28 onSelect: (address: Customer | null) => void;30 onSelect: (address: Customer | Tenant | null) => void; 29 31 }; 30 32 31 33 export default function AddressListDialog({ 32 34 title = 'Address Book', 35 tenant, 33 36 list, 34 37 action, … … 43 46 44 47 const dataFiltered = applyFilter({ 45 inputData: list ,48 inputData: list || (tenant ? [tenant] : []), 46 49 query: searchCompany, 47 50 }); … … 54 57 55 58 const handleSelectCompany = useCallback( 56 (company: Customer | null) => {59 (company: Customer | Tenant | null) => { 57 60 onSelect(company); 58 61 setSearchCompany(''); … … 156 159 // ---------------------------------------------------------------------- 157 160 158 function applyFilter({ inputData, query }: { inputData: Customer[]; query: string }) {161 function applyFilter({ inputData, query }: { inputData: Tenant[] | Customer[]; query: string }) { 159 162 if (query) { 160 163 return inputData.filter(
Note:
See TracChangeset
for help on using the changeset viewer.