2021-06-28 18:02:45 +00:00
|
|
|
import { allCommands } from 'app/client/components/commands';
|
|
|
|
import { menuDivider, menuItemCmd } from 'app/client/ui2018/menus';
|
|
|
|
import { dom } from 'grainjs';
|
|
|
|
|
2022-04-19 13:01:08 +00:00
|
|
|
export interface IRowContextMenu {
|
2021-06-28 18:02:45 +00:00
|
|
|
disableInsert: boolean;
|
|
|
|
disableDelete: boolean;
|
|
|
|
isViewSorted: boolean;
|
2022-04-19 13:01:08 +00:00
|
|
|
numRows: number;
|
2021-06-28 18:02:45 +00:00
|
|
|
}
|
|
|
|
|
2022-04-19 13:01:08 +00:00
|
|
|
export function RowContextMenu({ disableInsert, disableDelete, isViewSorted, numRows }: IRowContextMenu) {
|
2021-06-28 18:02:45 +00:00
|
|
|
const result: Element[] = [];
|
|
|
|
if (isViewSorted) {
|
|
|
|
// When the view is sorted, any newly added records get shifts instantly at the top or
|
|
|
|
// bottom. It could be very confusing for users who might expect the record to stay above or
|
|
|
|
// below the active row. Thus in this case we show a single `insert row` command.
|
|
|
|
result.push(
|
|
|
|
menuItemCmd(allCommands.insertRecordAfter, 'Insert row',
|
|
|
|
dom.cls('disabled', disableInsert)),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
result.push(
|
|
|
|
menuItemCmd(allCommands.insertRecordBefore, 'Insert row above',
|
|
|
|
dom.cls('disabled', disableInsert)),
|
|
|
|
menuItemCmd(allCommands.insertRecordAfter, 'Insert row below',
|
|
|
|
dom.cls('disabled', disableInsert)),
|
|
|
|
);
|
|
|
|
}
|
2022-04-19 13:01:08 +00:00
|
|
|
result.push(
|
|
|
|
menuItemCmd(allCommands.duplicateRows, `Duplicate ${numRows === 1 ? 'row' : 'rows'}`,
|
|
|
|
dom.cls('disabled', disableInsert || numRows === 0)),
|
|
|
|
);
|
2021-06-28 18:02:45 +00:00
|
|
|
result.push(
|
|
|
|
menuDivider(),
|
2022-02-07 14:09:23 +00:00
|
|
|
// TODO: should show `Delete ${num} rows` when multiple are selected
|
2021-06-28 18:02:45 +00:00
|
|
|
menuItemCmd(allCommands.deleteRecords, 'Delete',
|
|
|
|
dom.cls('disabled', disableDelete)),
|
|
|
|
);
|
|
|
|
result.push(
|
|
|
|
menuDivider(),
|
|
|
|
menuItemCmd(allCommands.copyLink, 'Copy anchor link'));
|
|
|
|
return result;
|
|
|
|
}
|