All files / src/components/NoResultsFound NoResultsFound.tsx

100% Statements 6/6
100% Branches 0/0
100% Functions 2/2
100% Lines 6/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 363x 3x           3x 5x 3x                             1x                      
import React from 'react';
import { Button, EmptyState, useI18nContext } from '@procore/core-react';
 
export interface NoResultsFoundProps {
  setManuallyAddCompany: React.Dispatch<React.SetStateAction<boolean>>;
}
 
export function NoResultsFound(props: NoResultsFoundProps) {
  const i18n = useI18nContext();
  return (
    <EmptyState compact>
      <EmptyState.NoResults />
      <EmptyState.Title>
        {i18n.t(
          'views.generic.directory.add_company_package.no_company_was_found'
        )}
      </EmptyState.Title>
      <EmptyState.Description>
        {i18n.t(
          'views.generic.directory.add_company_package.add_the_company_manually'
        )}
      </EmptyState.Description>
      <EmptyState.Actions>
        <Button
          onClick={() => props.setManuallyAddCompany(true)}
          data-pendo={'new-add-company-add-company-manually-button'}
        >
          {i18n.t(
            'views.generic.directory.add_company_package.add_company_manually'
          )}
        </Button>
      </EmptyState.Actions>
    </EmptyState>
  );
}