import * as React from 'react'; import { PrimaryButton } from 'office-ui-fabric-react/lib/Button'; import { IPersonaProps, IPersona } from 'office-ui-fabric-react/lib/Persona'; import { people } from '@uifabric/example-data'; import { SelectedPeopleList, ISelectedPeopleList, SelectedPersona, ItemWithContextMenu, TriggerOnContextMenu, copyToClipboard, } from '@uifabric/experiments/lib/SelectedItemsList'; export interface IPeopleSelectedItemsListExampleState { currentSelectedItems: IPersonaProps[]; } export class SelectedPeopleListWithContextMenuExample extends React.Component< {}, IPeopleSelectedItemsListExampleState > { private _selectionList: ISelectedPeopleList; /** * Build a custom selected item capable of being edited with a dropdown and * capable of editing */ private SelectedItem = ItemWithContextMenu({ menuItems: item => [ { key: 'remove', text: 'Remove', onClick: () => { this._selectionList.removeItems([item]); }, }, { key: 'copy', text: 'Copy', onClick: () => copyToClipboard(this._getCopyItemsText([item])), }, ], itemComponent: TriggerOnContextMenu(SelectedPersona), }); constructor(props: {}) { super(props); this.state = { currentSelectedItems: [people[40]], }; } public render(): JSX.Element { return (
Right click any persona to open the context menu
{this._renderExtendedPicker()}
); } private _renderExtendedPicker(): JSX.Element { return (
); } private _onAddItemButtonClicked = (): void => { const randomPerson = people[Math.floor(Math.random() * (people.length - 1))]; this.setState({ currentSelectedItems: [...this.state.currentSelectedItems, randomPerson] }); }; private _onItemsRemoved = (items: IPersona[]): void => { const currentSelectedItemsCopy = [...this.state.currentSelectedItems]; items.forEach(item => { const indexToRemove = currentSelectedItemsCopy.indexOf(item); currentSelectedItemsCopy.splice(indexToRemove, 1); this.setState({ currentSelectedItems: [...currentSelectedItemsCopy] }); }); }; private _getCopyItemsText(items: IPersonaProps[]): string { let copyText = ''; items.forEach((item: IPersonaProps, index: number) => { copyText += item.text; if (index < items.length - 1) { copyText += ', '; } }); return copyText; } }