Ignore:
Timestamp:
02/26/25 10:05:32 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
299af01
Parents:
5d6f37a
Message:

feat: implement employees

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sections/company/company-list-dialog.tsx

    r5d6f37a r057453c  
    99import ListItemButton, { listItemButtonClasses } from '@mui/material/ListItemButton';
    1010// types
    11 import { Customer } from 'mvpmasters-shared';
     11import { Customer } from 'src/schemas';
    1212// components
    1313import Iconify from 'src/components/iconify';
    1414import SearchNotFound from 'src/components/search-not-found';
    1515import { createFullAddress } from 'src/utils/create-full-address';
     16import { Tenant } from 'src/schemas';
    1617
    1718// ----------------------------------------------------------------------
     
    1920type Props = {
    2021  title?: string;
    21   list: Customer[];
     22  tenant?: Tenant;
     23  list?: Customer[];
    2224  action?: React.ReactNode;
    2325  //
     
    2628  //
    2729  selected: (selectedId: string) => boolean;
    28   onSelect: (address: Customer | null) => void;
     30  onSelect: (address: Customer | Tenant | null) => void;
    2931};
    3032
    3133export default function AddressListDialog({
    3234  title = 'Address Book',
     35  tenant,
    3336  list,
    3437  action,
     
    4346
    4447  const dataFiltered = applyFilter({
    45     inputData: list,
     48    inputData: list || (tenant ? [tenant] : []),
    4649    query: searchCompany,
    4750  });
     
    5457
    5558  const handleSelectCompany = useCallback(
    56     (company: Customer | null) => {
     59    (company: Customer | Tenant | null) => {
    5760      onSelect(company);
    5861      setSearchCompany('');
     
    156159// ----------------------------------------------------------------------
    157160
    158 function applyFilter({ inputData, query }: { inputData: Customer[]; query: string }) {
     161function applyFilter({ inputData, query }: { inputData: Tenant[] | Customer[]; query: string }) {
    159162  if (query) {
    160163    return inputData.filter(
Note: See TracChangeset for help on using the changeset viewer.