Skip to content

Commit

Permalink
fix rename tab (#1389)
Browse files Browse the repository at this point in the history
  • Loading branch information
heswell committed Jun 14, 2024
1 parent 6baa9f5 commit 4fd7740
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 84 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const CustomFilters = ({
interactedFilterState,
onCancelEdit,
onSave,
pillProps,
FilterPillProps,
promptProps,
} = useCustomFilters({
containerRef: rootRef,
Expand All @@ -74,7 +74,7 @@ export const CustomFilters = ({
filters.forEach((filter, i) => {
items.push(
<FilterPill
{...pillProps}
{...FilterPillProps}
editing={indexOfFilterBeingRenamed === i}
columnsByName={columnsByName}
data-index={i}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,6 @@ export const useCustomFilters = ({
[deleteConfirmed, getDeletePrompt]
);

// const handleBeginEditFilterName = useCallback((filter: Filter) => {
// editingFilterRef.current = filter;
// }, []);

// TODO handle cancel edit name
const handleExitEditFilterName: EditableLabelProps["onExitEditMode"] =
useCallback(
Expand Down Expand Up @@ -285,7 +281,7 @@ export const useCustomFilters = ({
[onToggleFilterActive]
);

const pillProps: Omit<FilterPillProps, "filter" | "selected"> = {
const FilterPillProps: Omit<FilterPillProps, "filter" | "selected"> = {
editLabelApiRef: editPillLabelAPI,
// onBeginEdit: handleBeginEditFilterName,
onClick: handlePillClick,
Expand Down Expand Up @@ -326,14 +322,14 @@ export const useCustomFilters = ({
};

return {
FilterPillProps,
activeFilterIndex,
addButtonProps,
columnsByName,
filters,
interactedFilterState,
onCancelEdit: handleCancelEdit,
onSave: filterSaveHandler,
pillProps,
promptProps,
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,22 +118,22 @@ export const EditableLabel = forwardRef(function EditableLabel(
[beginEdit]
);

const exitEditMode = ({
cancelEdit = false,
allowDeactivation = false,
} = {}) => {
setEditing(false);
const originalValue = initialValue.current;
if (originalValue !== value) {
if (cancelEdit) {
setValue(originalValue);
} else {
initialValue.current = value;
const exitEditMode = useCallback(
({ cancelEdit = false, allowDeactivation = false } = {}) => {
setEditing(false);
const originalValue = initialValue.current;
if (originalValue !== value) {
if (cancelEdit) {
setValue(originalValue);
} else {
initialValue.current = value;
}
}
}
onExitEditMode &&
onExitEditMode(originalValue, value, allowDeactivation, cancelEdit);
};
onExitEditMode &&
onExitEditMode(originalValue, value, allowDeactivation, cancelEdit);
},
[onExitEditMode, setEditing, setValue, value]
);

const handleChange = (evt: ChangeEvent<HTMLInputElement>) => {
const { value } = evt.target;
Expand All @@ -143,11 +143,11 @@ export const EditableLabel = forwardRef(function EditableLabel(

// We need the ref here as the blur fires before setEditing has taken effect,
// so we get a double call to exitEditMode if edit is cancelled.
const handleBlur = () => {
if (editingRef.current) {
const handleBlur = useCallback(() => {
if (editing || editingRef.current) {
exitEditMode({ allowDeactivation: true });
}
};
}, [editing, exitEditMode]);

const handleKeyDown = (evt: KeyboardEvent<HTMLInputElement>) => {
if (editing && evt.key === "Enter") {
Expand Down
5 changes: 4 additions & 1 deletion vuu-ui/packages/vuu-ui-controls/src/tabstrip/Tabstrip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ export const Tabstrip = ({
const rootRef = useRef<HTMLDivElement>(null);
const {
activeTabIndex,
focusVisible,
containerStyle,
focusVisible,
draggedItemIndex,
onClickAddTab,
interactedTabState,
tabProps,
...tabstripHook
} = useTabstrip({
Expand Down Expand Up @@ -96,6 +97,7 @@ export const Tabstrip = ({
"data-overflow-priority": selected ? "1" : undefined,
dragging: draggedItemIndex === index,
editable,
editing: interactedTabState?.index === index,
focusVisible: focusVisible === index,
id: tabId,
index,
Expand Down Expand Up @@ -137,6 +139,7 @@ export const Tabstrip = ({
tabProps,
tabClassName,
draggedItemIndex,
interactedTabState,
focusVisible,
location,
]
Expand Down
61 changes: 19 additions & 42 deletions vuu-ui/packages/vuu-ui-controls/src/tabstrip/useTabstrip.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import type { MenuActionHandler } from "@finos/vuu-data-types";
import type { OverflowItem } from "@finos/vuu-ui-controls";
import { dispatchMouseEvent, orientationType } from "@finos/vuu-utils";
import { orientationType } from "@finos/vuu-utils";
import {
KeyboardEvent,
MouseEvent as ReactMouseEvent,
RefObject,
useCallback,
useRef,
useState,
} from "react";
import { DropOptions, useDragDrop as useDragDrop } from "../drag-drop";
import { isTabMenuOptions } from "./TabMenuOptions";
Expand Down Expand Up @@ -39,12 +40,9 @@ export interface TabstripHookProps {
const editKeys = new Set(["Enter", " "]);
const isEditKey = (key: string) => editKeys.has(key);

const getElementWithIndex = (container: HTMLElement | null, index: number) => {
if (container) {
return container.querySelector(`[data-index="${index}"]`) as HTMLElement;
} else {
return null;
}
type InteractedTabState = {
index: number;
state: "rename";
};

export const useTabstrip = ({
Expand All @@ -61,6 +59,9 @@ export const useTabstrip = ({
keyBoardActivation,
}: TabstripHookProps) => {
const lastSelection = useRef(activeTabIndexProp);
const [interactedTabState, setInteractedTabState] = useState<
InteractedTabState | undefined
>();

const {
focusTab: keyboardHookFocusTab,
Expand Down Expand Up @@ -146,9 +147,7 @@ export const useTabstrip = ({

const handleExitEditMode = useCallback<ExitEditModeHandler>(
(originalValue, editedValue, allowDeactivation, tabIndex) => {
console.log(
`handleExitEditMode ${originalValue} ${editedValue} ${allowDeactivation} ${tabIndex}`
);
setInteractedTabState(undefined);
onExitEditMode?.(originalValue, editedValue, allowDeactivation, tabIndex);
if (!allowDeactivation) {
// this indicates that Enter or Esc key has been pressed, hence we
Expand All @@ -172,35 +171,12 @@ export const useTabstrip = ({
[keyboardHookHandleClick, selectionHookHandleClick]
);

const getEditableLabel = useCallback(
(tabIndex = highlightedIdx) => {
const targetEl = getElementWithIndex(containerRef.current, tabIndex);
if (targetEl) {
return targetEl.querySelector(".vuuEditableLabel") as HTMLElement;
}
},
[containerRef, highlightedIdx]
);

const tabInEditMode = useCallback(
(tabIndex = highlightedIdx) => {
const editableLabel = getEditableLabel(tabIndex);
if (editableLabel) {
return editableLabel.classList.contains("vuuEditableLabel-editing");
}
return false;
},
[getEditableLabel, highlightedIdx]
);

const editTab = useCallback(
(tabIndex = highlightedIdx) => {
const editableLabelEl = getEditableLabel(tabIndex);
if (editableLabelEl) {
dispatchMouseEvent(editableLabelEl, "dblclick");
}
console.log(`set interacted tab state ${tabIndex}`);
setInteractedTabState({ index: tabIndex, state: "rename" });
},
[getEditableLabel, highlightedIdx]
[highlightedIdx]
);

const handleKeyDown = useCallback(
Expand Down Expand Up @@ -264,16 +240,16 @@ export const useTabstrip = ({

//TODO( why do we sometimes see this fired twice eg following rename)
const handleTabMenuClose = useCallback(() => {
if (!tabInEditMode()) {
keyboardHookFocusTab(highlightedIdx);
} else {
if (interactedTabState?.index === highlightedIdx) {
keyboardHookSetHighlightedIndex(highlightedIdx);
} else {
keyboardHookFocusTab(highlightedIdx);
}
}, [
highlightedIdx,
interactedTabState?.index,
keyboardHookFocusTab,
keyboardHookSetHighlightedIndex,
tabInEditMode,
]);

const onSwitchWrappedItemIntoView = useCallback(
Expand Down Expand Up @@ -312,12 +288,13 @@ export const useTabstrip = ({

return {
activeTabIndex: selectionHookSelected,
containerStyle,
focusVisible: keyboardHook.focusVisible,
containerProps: {
...keyboardHook.containerProps,
onSwitchWrappedItemIntoView,
},
containerStyle,
focusVisible: keyboardHook.focusVisible,
interactedTabState,
navigationProps,
onClickAddTab: handleAddTabClick,
tabProps,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import { getSchema } from "@finos/vuu-data-test";
import { DataSourceConfig, SchemaColumn } from "@finos/vuu-data-types";
import {
ColumnItem,
ColumnList,
TableSettingsPanel,
} from "@finos/vuu-table-extras";
import { TableConfig } from "@finos/vuu-table-types";
import { getSchema } from "@finos/vuu-data-test";
import { MoveItemHandler } from "@finos/vuu-ui-controls";
import { moveItem } from "@finos/vuu-utils";
import { useCallback, useMemo, useState } from "react";

let displaySequence = 1;

export const DefaultColumnList = () => {
const columns = useMemo<ColumnItem[]>(
const initialColumns = useMemo<ColumnItem[]>(
() => [
{
subscribed: true,
Expand Down Expand Up @@ -119,11 +121,13 @@ export const DefaultColumnList = () => {
[]
);

const [columns, setColumns] = useState(initialColumns);

const handleChange = () => {
console.log("handleChange");
};
const handleMoveListItem = () => {
console.log("handleMoveListItem");
const handleMoveListItem: MoveItemHandler = (fromIndex, toIndex) => {
setColumns((cols) => moveItem(cols, fromIndex, toIndex));
};

return (
Expand All @@ -150,17 +154,7 @@ export const ManyColumnList = () => {
const [columns, setColumns] = useState<ColumnItem[]>(initialColumns);

const handleMoveListItem = useCallback((fromIndex, toIndex) => {
console.log(`drop ${fromIndex} ${toIndex}`);
setColumns((data) => {
const newData = data.slice();
const [tab] = newData.splice(fromIndex, 1);
if (toIndex === -1) {
return newData.concat(tab);
} else {
newData.splice(toIndex, 0, tab);
return newData;
}
});
setColumns((cols) => moveItem(cols, fromIndex, toIndex));
}, []);

const handleChange = () => {
Expand Down

0 comments on commit 4fd7740

Please sign in to comment.