钩子¶
Owl hooks 是一种代码复用的方式,即使它依赖于某些组件的生命周期。Owl 提供的大多数钩子都与组件的生命周期相关,但其中一些(例如 useComponent)提供了一种构建特定钩子的方式。
使用这些钩子,可以构建许多定制的钩子,帮助解决特定问题或使某些常见任务更容易。本页的其余部分记录了Odoo Web框架提供的钩子列表。
名称 |
简短描述 |
---|---|
加载资源 |
|
自动聚焦到由 autofocus 引用的元素 |
|
订阅和取消订阅总线 |
|
显示视图控制面板的分页器。 |
|
将元素相对于目标定位 |
|
在 input 或 textarea 获得焦点时激活拼写检查 |
使用资产¶
位置¶
@web/core/assets
描述¶
请参阅 懒加载资源 以获取更多详细信息。
使用自动对焦¶
位置¶
@web/core/utils/hooks
描述¶
在当前组件中,只要出现在DOM中并且之前没有显示过,就聚焦由t-ref=”autofocus”引用的元素。
import { useAutofocus } from "@web/core/utils/hooks";
class Comp {
setup() {
this.inputRef = useAutofocus();
}
static template = "Comp";
}
<t t-name="Comp">
<input t-ref="autofocus" type="text"/>
</t>
API¶
- useAutofocus()¶
- 返回
元素引用。
使用总线¶
位置¶
@web/core/utils/hooks
描述¶
向总线添加和清除事件监听器。此钩子确保在组件卸载时正确清除监听器。
import { useBus } from "@web/core/utils/hooks";
class MyComponent {
setup() {
useBus(this.env.bus, "some-event", event => {
console.log(event);
});
}
}
API¶
- useBus(bus, eventName, callback)¶
- 参数
bus (
EventBus()
) – 目标事件总线eventName (
string()
) – 我们想要监听的事件的名称callback (
function()
) – 监听器回调函数
使用分页器¶
位置¶
@web/search/pager_hook
描述¶
显示视图控制面板的 Pager。这个 hooks 正确地设置 env.config
来提供给 pager 的 props。
import { usePager } from "@web/search/pager_hook";
class CustomView {
setup() {
const state = owl.hooks.useState({
offset: 0,
limit: 80,
total: 50,
});
usePager(() => {
return {
offset: this.state.offset,
limit: this.state.limit,
total: this.state.total,
onUpdate: (newState) => {
Object.assign(this.state, newState);
},
};
});
}
}
API¶
- usePager(getPagerProps)¶
- 参数
getPagerProps (
function()
) – 返回分页器属性的函数。
使用位置¶
位置¶
@web/core/position_hook
描述¶
帮助将一个 HTMLElement( popper
)相对于另一个 HTMLElement( reference
)进行定位。此钩子确保在窗口调整大小/滚动时更新定位。
import { usePosition } from "@web/core/position_hook";
class MyPopover extends owl.Component {
setup() {
// Here, the reference is the target props, which is an HTMLElement
usePosition(this.props.target);
}
}
MyPopover.template = owl.tags.xml`
<div t-ref="popper">
I am positioned through a wonderful hook!
</div>
`;
重要
您应该使用 t-ref 指令 指定您的 popper
元素。
API¶
- usePosition(reference[, options])¶
- 参数
reference (
HTMLElement or ()=>HTMLElement()
) – 要定位的目标 HTMLElementoptions (
Options()
) – 定位选项(见下表)
选项 |
类型 |
描述 |
---|---|---|
|
字符串 |
这是一个 useRef reference 用于定位的元素。默认值是 |
|
HTMLElement |
期望弹出框不会溢出的容器。如果发生溢出,将尝试其他弹出框位置,直到找到不会溢出的位置为止。(默认值: |
|
数字 |
在 popper 和参考元素之间添加边距(默认值: |
|
方向[-变体] |
所需的位置。它是一个由 |
|
(el: HTMLElement,position: PositioningSolution) => void |
每次发生定位时调用的回调函数(例如在组件挂载/修补、文档滚动、窗口调整大小等情况下)。可用于根据当前位置进行动态样式设置。 |
Example
import { usePosition } from "@web/core/position_hook";
class DropMenu extends owl.Component {
setup() {
const toggler = owl.useRef("toggler");
usePosition(
() => toggler.el,
{
popper: "menu",
position: "right-start",
onPositioned: (el, { direction, variant }) => {
el.classList.add(`dm-${direction}`); // -> "dm-top" "dm-right" "dm-bottom" "dm-left"
el.style.backgroundColor = variant === "middle" ? "red" : "blue";
},
},
);
}
}
DropMenu.template = owl.tags.xml`
<button t-ref="toggler">Toggle Menu</button>
<div t-ref="menu">
<t t-slot="default">
This is the menu default content.
</t>
</div>
`;
useSpellCheck¶
位置¶
@web/core/utils/hooks
描述¶
通过当前组件中的 t-ref="spellcheck"
在聚焦时激活输入框或文本区域的拼写检查状态。该状态在失去焦点时被移除,同时移除红色轮廓,从而提高内容的可读性。
该钩子也可用于任何带有 contenteditable
属性的 HTML 元素。若要完全禁用可能由钩子启用的元素的拼写检查,请显式地将元素的 spellcheck
属性设置为 false
。
Example
在以下示例中,拼写检查将在第一个输入框、文本区域以及带有 contenteditable="true"
的 div 上启用。
import { useSpellCheck } from "@web/core/utils/hooks";
class Comp {
setup() {
this.simpleRef = useSpellCheck();
this.customRef = useSpellCheck({ refName: "custom" });
this.nodeRef = useSpellCheck({ refName: "container" });
}
static template = "Comp";
}
<t t-name="Comp">
<input t-ref="spellcheck" type="text"/>
<textarea t-ref="custom"/>
<div t-ref="container">
<input type="text" spellcheck="false"/>
<div contenteditable="true"/>
</div>
</t>
API¶
- useSpellCheck([options])¶
- 参数
options (
Options()
) – 拼写检查选项(见下表)
选项 |
类型 |
描述 |
---|---|---|
|
字符串 |
这是对将启用拼写检查的元素的 useRef 参考。 |