import { Button } from '@wordpress/components';
import { Operator } from '@wordpress/dataviews';
import { translate } from 'i18n-calypso';
import { useMemo } from 'react';
import PluginIcon from 'calypso/my-sites/plugins/plugin-icon/plugin-icon';
import { useDispatch } from 'calypso/state';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { PLUGINS_STATUS } from 'calypso/state/plugins/installed/status/constants';
import { Plugin } from 'calypso/state/plugins/installed/types';
import { PluginActions } from '../hooks/types';
import PluginActionStatus from '../plugin-management-v2/plugin-action-status';
export function useFields(
bulkActionDialog: ( action: string, plugins: Array< Plugin > ) => void,
openPluginSitesPane: ( plugin: Plugin ) => void,
isListView: boolean
) {
const dispatch = useDispatch();
const fields = useMemo(
() => [
{
id: 'status',
label: translate( 'Status' ),
getValue: ( { item }: { item: Plugin } ) => {
return item.status;
},
render: () => null,
elements: [
{
value: PLUGINS_STATUS.ACTIVE,
label: translate( 'Active' ),
},
{
value: PLUGINS_STATUS.INACTIVE,
label: translate( 'Inactive' ),
},
{
value: PLUGINS_STATUS.UPDATE,
label: translate( 'Update available' ),
},
],
filterBy: {
operators: [ 'isAny' as Operator ],
isPrimary: false,
},
enableHiding: false,
enableSorting: false,
},
{
id: 'icon',
label: translate( 'Icon' ),
render: ( { item }: { item: Plugin } ) => (
),
enableHiding: false,
enableSorting: false,
},
{
id: 'plugins',
label: translate( 'Installed plugins' ),
getValue: ( { item }: { item: Plugin } ) => item.name,
enableGlobalSearch: true,
render: ( { item }: { item: Plugin } ) => {
let pluginActionStatus = null;
if ( item.allStatuses?.length ) {
pluginActionStatus = (
);
}
return (
<>
{ item.name }
{ pluginActionStatus }
>
);
},
enableSorting: true,
},
{
id: 'sites',
label: translate( 'Sites' ),
enableHiding: false,
getValue: ( { item }: { item: Plugin } ) => {
// Used exclusively for sorting
return item.sites && Object.keys( item.sites ).length;
},
render: ( { item }: { item: Plugin } ) => {
const numberOfSites = item.sites && Object.keys( item.sites ).length;
return (
);
},
},
{
id: 'update',
label: translate( 'Update available' ),
getValue: ( { item }: { item: Plugin } ) => {
// Used exclusively for sorting
return item.status?.includes( PLUGINS_STATUS.UPDATE ) ? 'a' : 'b';
},
enableHiding: false,
render: ( { item }: { item: Plugin } ) => {
if (
item.status?.includes( PLUGINS_STATUS.UPDATE ) &&
item?.update?.new_version &&
! isListView
) {
return (
);
}
},
},
],
// eslint-disable-next-line react-hooks/exhaustive-deps
[ bulkActionDialog, openPluginSitesPane, isListView ]
);
return fields;
}