Overlay中文翻译过来意思是覆盖物,它是Material Design components for Angular中针对弹出动态内容这一场景的封装,功能强大、使用方便,尤其在开发自己的组件库时,可以让你少写许多代码,可以说只要是弹出内容的场景基本都可以使用Overlay.
我们自己的组件库中弹出场景基本都已经使用Overlay,如自定义Select、Cascader、Tree Select、Tooltip、Dialog等,总结最重要的的两点好处:
让使用者不再进行繁琐的位置计算,而简单通过参数配置就实现内容的定位,而且关于位置的各种情况都有考虑到.
组件的弹出内容都是用Overlay实现,避免了各自实现的产生的不兼容,如相互遮盖问题.
简单示例 - 连结位置源的弹出
下面通过一个示例代码来展示Overlay的使用,这种弹出场景类似于Tooltip,弹出的overlay内容是基于一个参照的位置源origin元素.
安装并且导入模块
项目中如果没有安装CDK,要先安装
npm install @angular/cdk
导入OverlayModule
import {OverlayModule} from '@angular/cdk/overlay';
@NgModule({
imports: [
OverlayModule,
// ...
]
})
export class AppModule {
}
示例模板内容
cdkOverlayOrigin
type="button"
[disabled]="overlayRef"
(click)="openWithConfig()">Open
除了弹出模板,上面模板中还有一个Open按钮,后面要用到它作为位置源origin
注入Overlay服务
在组件的constructor构造函数中注入Overlay服务,下面代码包括组件的定义
@Component({
selector: 'overlay-demo',
templateUrl: 'connected-overlay-demo.html'
})
export class ConnectedOverlayDemo {
@ViewChild(CdkOverlayOrigin, {static: false}) _overlayOrigin: CdkOverlayOrigin;
@ViewChild('overlay', {static: false}) overlayTemplate: TemplateRef
/**
* 注入Overlay服务
*/
constructor(
public overlay: Overlay) { }
openWithConfig() {
}
}
处理注入服务,上面代码还通过ViewChild取到模板中的两个对象,后面用到的时候再解释.
构建位置策略
首先创建一个位置策略,这里使用的是FlexibleConnectedPositionStrategy策略,先看代码
const positionStrategy = this.overlay.position()
.flexibleConnectedTo(this._overlayOrigin.elementRef)
.withPositions([
{
originX: 'start',
originY: 'bottom',
overlayX: 'start',
overlayY: 'top',
}
]);
创建FlexibleConnectedPositionStrategy策略的方法flexibleConnectedTo必须要提供一个位置源参数,这里使用的是 this._overlayOrigin.elementRef,弹出内容的位置是基于这个位置源的,this._overlayOrigin其实就是通过ViewChild取的模板中的Open按钮.
http://groups.tianya.cn/post-5313-e4a994731fbb4cbbbb5cc195acef5ad1-1.shtml
http://groups.tianya.cn/post-5313-bdbb9de9aae04fc9acbe5f468fdcef49-1.shtml
http://groups.tianya.cn/post-5313-68937319c0664db0800a240a015d5173-1.shtml
http://groups.tianya.cn/post-5313-12c86f6cbd074fe399b14141832cbed9-1.shtml
http://groups.tianya.cn/post-5313-84f1111f27404afc8c97f895d0edfba6-1.shtml
http://groups.tianya.cn/post-5313-ee0969e5c57841618879567392393d8f-1.shtml
http://groups.tianya.cn/post-5313-3d85597c0f4442f49e1dbabf38fa29ac-1.shtml
http://groups.tianya.cn/post-5313-45c0634712c04db489bceecc923edd14-1.shtml
http://groups.tianya.cn/post-5313-0748d4dba1574045bfce022a8b05f4a8-1.shtml
http://groups.tianya.cn/post-5313-09b6803f4f7b4f8b9900d7f8bd3b31ba-1.shtml
http://groups.tianya.cn/post-5313-0cf42f35c7a04e388f3d9f7917813bef-1.shtml
http://groups.tianya.cn/post-5313-f6d44b027dcf435cb3a74ad2781d90ba-1.shtml
http://groups.tianya.cn/post-5313-113c67f7bbe743988b29ffa9deb4a454-1.shtml
http://groups.tianya.cn/post-5313-3d7416f6bc9547dc994ccda701cf3b49-1.shtml
http://groups.tianya.cn/post-5313-fa129fed6ff9497bb9f04290702d8021-1.shtml
http://groups.tianya.cn/post-5313-5308a024aa954b56bf759f8748d1ba4c-1.shtml
http://groups.tianya.cn/post-5313-2d6582d21cf745e29ea445107a441be8-1.shtml
http://groups.tianya.cn/post-5313-05cb40ee3f8f45b993b868565a9f7373-1.shtml
http://groups.tianya.cn/post-5313-c33e4de9360e4a44b162de82ac3b5294-1.shtml
http://groups.tianya.cn/post-5313-b19aee4d83724a30961b1947cdc18a34-1.shtml
http://groups.tianya.cn/post-4230-032b29110409438dbe82a1003a5e613c-1.shtml
http://groups.tianya.cn/post-4230-9add5a097fdc4b7eae8547e795ea33a4-1.shtml
http://groups.tianya.cn/post-4230-03d585fa07ed47beb084adc47e5c17ba-1.shtml
http://groups.tianya.cn/post-4230-78a7c347412c4487a003258a2c1776bf-1.shtml
http://groups.tianya.cn/post-4230-a9bba72bcf214beaab7a07762696ac07-1.shtml
http://groups.tianya.cn/post-4230-67b0269f78ec4aceab27bf3069e0b066-1.shtml
http://groups.tianya.cn/post-4230-f0386533e2784e908235fcf0bd81478f-1.shtml
http://groups.tianya.cn/post-4230-85c320c0882f48bd8cff23936fcced63-1.shtml
http://groups.tianya.cn/post-4230-cd1d75194f98492dbe4f2ed9e52cbab7-1.shtml
http://groups.tianya.cn/post-4230-20f3ce8f67fa492a9030cb8b035f9888-1.shtml
http://groups.tianya.cn/post-4230-ad0b2723e45b46eeaeb02c8514ba0c3e-1.shtml
http://groups.tianya.cn/post-4230-a2afc973b19647ebacaa65adf91b79ca-1.shtml
http://groups.tianya.cn/post-4230-d2cf67f4960945c9a5db4384b11ebf83-1.shtml
http://groups.tianya.cn/post-4230-f56e890818dd4f0c9d36cdef1ac5b372-1.shtml
http://groups.tianya.cn/post-4230-7981d2d4d33e4f31932d048fa870bc70-1.shtml
http://groups.tianya.cn/post-4230-9aae4da6330f45829cb7fc46fc70975d-1.shtml
http://groups.tianya.cn/post-4230-a44e9ae867154077b41bddc95370c96d-1.shtml
http://groups.tianya.cn/post-4230-4a14bac45b2d47da84c05d8f49cc62c1-1.shtml
http://groups.tianya.cn/post-4230-da76638e6e20428888bcff0902d6ef5a-1.shtml
http://groups.tianya.cn/post-4230-9ebcc8068481437cb5c9132b792b88dc-1.shtml
http://groups.tianya.cn/post-4230-3880f2b75dcc41a78120686fb62fd8a5-1.shtml
http://groups.tianya.cn/post-4230-6ff07e22c1184bcdbc8460e135e2787b-1.shtml
http://groups.tianya.cn/post-4230-5bc10ff5896b443d86340f78ecc42383-1.shtml
http://groups.tianya.cn/post-4230-98929382b2814a3eb3221419de0cb3e8-1.shtml
http://groups.tianya.cn/post-4230-43c8d8d79abf46e9ad5253963df8ebfc-1.shtml
http://groups.tianya.cn/post-4419-c9687c73f0904f58954a81c4d8406ed3-1.shtml
http://groups.tianya.cn/post-4419-59dc8a9337d549548c9ba10ab45786c2-1.shtml
http://groups.tianya.cn/post-4419-90c280d664ab4a96ab9ba3290fdd1ef2-1.shtml
http://groups.tianya.cn/post-4419-f8dad7c987944902bfbbb69dfb75f6b5-1.shtml
http://groups.tianya.cn/post-4419-99975026c241469497d4761b423985ef-1.shtml
http://groups.tianya.cn/post-4419-ffad3749ade9485b8937589eeb0b9c5e-1.shtml
http://groups.tianya.cn/post-4419-01c58ea171cf4f53b53c7c1c22a6925c-1.shtml
http://groups.tianya.cn/post-4419-7fa0c1a20b7940d095360f375757956c-1.shtml
http://groups.tianya.cn/post-4419-5f701ced1ee54521ae8b0a909e875790-1.shtml
http://groups.tianya.cn/post-4419-2a36eb4cd6d24c788832e6e351491926-1.shtml