有没有办法订阅视图以观察Aurelia中的调整大小/布局事件?我有一个想要调整大小的画布。我想知道是否有“aurelia”的方法来做到这一点?
我试过了:
<div ref="canvasContainer" class="widget-dial-container" resize.delegate="doresize()">
<canvas ref="canvas" class="widget-dial-canvas" />
</div>
但它从不调用我的doresize()
方法。
我已尝试绑定到DOM offsetWidth和offsetHeight,但这也不起作用(在vm中有和没有@bindable canvasContainer;
)
答案 0 :(得分:4)
只有resize
本身支持window
事件,正如Kruga所说。您可以使用Aurelia Platform Abstraction Layer的PLATFORM
对象以跨平台方式附加到它。您必须运行jspm install aurelia-pal
才能获得它。如果您不担心跨平台,那么您可以使用window
对象。
以下模板和VM适用于我。我在调整大小计时器上实现了一个限制:
HTML
<template>
<div style="height: 125px; min-width: 150px; width: 100%;" ref="canvasContainer">
<canvas ref="canvas" width.one-way="canvasContainer.offsetWidth"></canvas>
</div>
</template>
TEMPLATE
import {PLATFORM} from 'aurelia-pal';
export class App {
resizeTimer = null;
resizeEventHandler = () => this.resized();
attached() {
this.resized();
PLATFORM.global.addEventListener("resize", this.resizeEventHandler);
}
detached() {
PLATFORM.global.removeEventListener("resize", this.resizeEventHandler);
}
resized() {
clearTimeout(this.resizeTimer);
this.resizeTimer = setTimeout(() => {
let ctx = this.canvas.getContext("2d");
ctx.fillStyle = "green";
ctx.font = "30px Arial";
ctx.fillText(`Width: ${this.canvas.width}`,10,50);
}, 150);
}
}
答案 1 :(得分:1)
我制作了一个使用包npm:element-resize-detector
的附加组件。这将检测div大小的所有更改,包括来自css动画的更改。
https://github.com/MeirionHughes/aurelia-resize
安装它:
npm install aurelia-resize --save
将其添加到您的配置中:
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.plugin('aurelia-resize');
在视图模型上添加方法:
foo(detail){
console.log("width=" + detail.width);
console.log("height=" + detail.height);
console.log("old width=" + detail.widthOld);
console.log("old height=" + detail.heightOld);
}
然后通过添加resizeable
属性并绑定到resize事件来使用它。
<div resizeable resize.trigger="foo($event.detail)">