import * as React from 'react'; import { DocumentCard, DocumentCardActions, DocumentCardActivity, DocumentCardLocation, DocumentCardPreview, DocumentCardTitle, IDocumentCardPreviewProps, } from '@fluentui/react/lib/DocumentCard'; import { ImageFit } from '@fluentui/react/lib/Image'; import { TestImages } from '@fluentui/example-data'; const previewProps: IDocumentCardPreviewProps = { getOverflowDocumentCountText: (overflowCount: number) => `+${overflowCount} more`, previewImages: [ { name: '2016 Conference Presentation', linkProps: { href: 'http://bing.com', target: '_blank', }, previewImageSrc: TestImages.documentPreview, iconSrc: TestImages.iconPpt, imageFit: ImageFit.cover, width: 318, height: 196, }, { name: 'New Contoso Collaboration for Conference Presentation Draft', linkProps: { href: 'http://bing.com', target: '_blank', }, previewImageSrc: TestImages.documentPreviewTwo, iconSrc: TestImages.iconPpt, imageFit: ImageFit.cover, width: 318, height: 196, }, { name: 'Spec Sheet for design', linkProps: { href: 'http://bing.com', target: '_blank', }, previewImageSrc: TestImages.documentPreviewThree, iconSrc: TestImages.iconPpt, imageFit: ImageFit.cover, width: 318, height: 196, }, { name: 'Contoso Marketing Presentation', linkProps: { href: 'http://bing.com', target: '_blank', }, previewImageSrc: TestImages.documentPreview, iconSrc: TestImages.iconPpt, imageFit: ImageFit.cover, width: 318, height: 196, }, { name: 'Notes from Ignite conference', linkProps: { href: 'http://bing.com', target: '_blank', }, previewImageSrc: TestImages.documentPreviewTwo, iconSrc: TestImages.iconPpt, imageFit: ImageFit.cover, width: 318, height: 196, }, { name: 'FY17 Cost Projections', linkProps: { href: 'http://bing.com', target: '_blank', }, previewImageSrc: TestImages.documentPreviewThree, iconSrc: TestImages.iconPpt, imageFit: ImageFit.cover, width: 318, height: 196, }, ], }; const onActionClick = (action: string, ev: React.SyntheticEvent): void => { console.log(`You clicked the ${action} action`); ev.stopPropagation(); ev.preventDefault(); }; const documentCardActions = [ { iconProps: { iconName: 'Share' }, onClick: onActionClick.bind(this, 'share'), ariaLabel: 'share action', }, { iconProps: { iconName: 'Pin' }, onClick: onActionClick.bind(this, 'pin'), ariaLabel: 'pin action', }, { iconProps: { iconName: 'Ringer' }, onClick: onActionClick.bind(this, 'notifications'), ariaLabel: 'notifications action', }, ]; export const DocumentCardCompleteExample: React.FunctionComponent = () => ( );