From 234ff1062f88a1ef44337ae69bf1c847d57fbd17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 26 Apr 2023 12:58:05 +0300 Subject: [PATCH] Refactor #3907 - For Menu --- api-generator/components/menu.js | 6 ++ components/lib/menu/Menu.d.ts | 101 +++++++++++++++++++++++++++++++ components/lib/menu/Menu.vue | 19 +++--- components/lib/menu/Menuitem.vue | 18 +++--- 4 files changed, 128 insertions(+), 16 deletions(-) diff --git a/api-generator/components/menu.js b/api-generator/components/menu.js index 8adf6d338..4d98f2ac2 100644 --- a/api-generator/components/menu.js +++ b/api-generator/components/menu.js @@ -34,6 +34,12 @@ const MenuProps = [ type: 'boolean', default: 'true', description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path." + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Uses to pass attributes to DOM elements inside the component.' } ]; diff --git a/components/lib/menu/Menu.d.ts b/components/lib/menu/Menu.d.ts index bc86bd7e4..9262d5a41 100755 --- a/components/lib/menu/Menu.d.ts +++ b/components/lib/menu/Menu.d.ts @@ -11,6 +11,102 @@ import { VNode } from 'vue'; import { MenuItem } from '../menuitem'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; +export declare type MenuPassThroughOptionType = MenuPassThroughAttributes | ((options: MenuPassThroughMethodOptions) => MenuPassThroughAttributes) | null | undefined; + +/** + * Custom passthrough(pt) option method. + */ +export interface MenuPassThroughMethodOptions { + props: MenuProps; + state: MenuState; +} + +/** + * Custom passthrough(pt) options. + * @see {@link MenuProps.pt} + */ +export interface MenuPassThroughOptions { + /** + * Uses to pass attributes to the root's DOM element. + */ + root?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the submenu header's DOM element. + */ + submenuHeader?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the list's DOM element. + */ + menu?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the list item's DOM element. + */ + menuitem?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the content's DOM element. + */ + content?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the action's DOM element. + */ + action?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the icon's DOM element. + */ + icon?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the label's DOM element. + */ + label?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the separator's DOM element. + */ + separator?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the start of the component. + */ + start?: MenuPassThroughOptionType; + /** + * Uses to pass attributes to the end of the component. + */ + end?: MenuPassThroughOptionType; +} + +/** + * Custom passthrough attributes for each DOM elements + */ +export interface MenuPassThroughAttributes { + [key: string]: any; +} + +/** + * Defines current inline state in Menu component. + */ +export interface MenuState { + /** + * Current id state as a string. + */ + id: string; + /** + * Current visible state as a boolean. + * @defaultValue false + */ + overlayVisible: boolean; + /** + * Current focus state as a boolean. + * @defaultValue false + */ + focused: boolean; + /** + * Focused option index. + */ + focusedOptionIndex: number; + /** + * Selected option index. + */ + selectedOptionIndex: number; +} + /** * Defines valid properties in Menu component. */ @@ -56,6 +152,11 @@ export interface MenuProps { * Identifier of the underlying input element. */ 'aria-labelledby'?: string | undefined; + /** + * Uses to pass attributes to DOM elements inside the component. + * @type {MenuPassThroughOptions} + */ + pt?: MenuPassThroughOptions; } /** diff --git a/components/lib/menu/Menu.vue b/components/lib/menu/Menu.vue index d5413b7c3..e8cffe0d4 100644 --- a/components/lib/menu/Menu.vue +++ b/components/lib/menu/Menu.vue @@ -1,8 +1,8 @@