Angular2 Material2 封裝組件 —— confirmDialog確定框

環(huán)境:

Angular 4.0.0
Angular2 Material2 2.0.0-beta.3
node v7.4.0
npm 4.0.5

使用Dialog封裝confirmDialog確定框

源代碼

來,首先來看效果圖~

刪除例子
確定刪除框
點(diǎn)擊確定后返回值

1.定義通用確定框組件

confirmDialog.component.html
<div class="clearfix">
    <h1 class="pull-left" md-dialog-title>{{ config.title || '確認(rèn)操作' }}</h1>
    <span class="icon-close-mid pull-right md-dialog-title-close" (click)="mdDialogRef.close(false)"></span>
</div>
<div md-dialog-content>{{ config.content }}</div>
<div md-dialog-actions class="confirm-dialog-operate">
    <button md-raised-button color="primary" (click)="mdDialogRef.close(true)">{{ config.button || '確定' }}</button>
    <button md-raised-button (click)="mdDialogRef.close(false)" class="confirm-dialog-cancel">取消</button>
</div>
配置項(xiàng) 描述
config.title 可配置猎塞,默認(rèn)為“ 確定操作 ”老厌。確定框的標(biāo)題。
config.content 需配置逮栅。確定框的提示內(nèi)容秕脓。
config.button 可配置犬缨,默認(rèn)為“ 確定 ”遇骑。操作按鈕的文字悯姊。
confirmDialog.component.ts
import { Component, OnInit, Inject } from '@angular/core';
import { MdDialogRef } from '@angular/material';
import {MD_DIALOG_DATA} from '@angular/material';


@Component({
    selector: 'confirm-dialog',
    styleUrls: ['confirmDialog.component.scss'],
    templateUrl: 'confirmDialog.component.html'
})

export class ConfirmDialogComponent implements OnInit {
    config : {};
    
    constructor(private mdDialogRef : MdDialogRef<ConfirmDialogComponent>, @Inject(MD_DIALOG_DATA) data: any){
        this.config = data;
    }
    public ngOnInit() { }
}
confirmDialog.component.scss
.md-dialog-title-close:hover{
    cursor: pointer;
}
.confirm-dialog-operate{
    margin-bottom: 0;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
}
.confirm-dialog-cancel{
    margin-left: 20px;
}

2.在app.module.ts引入組件

import { ConfirmDialogComponent } from './confirmDialog/confirmDialog.component';

@NgModule({
    declarations: [
        ···
        ConfirmDialogComponent,
        ···
    ],
    entryComponents: [
        ···
        ConfirmDialogComponent,
        ···
    ]
})
export class AppModule { }

3.把組件注入到服務(wù)

為了通用名党,把組件注入服務(wù),方便在其他地方使用挠轴。這樣的話,就不用在每次使用的時候重新定義組件耳幢。

confirmDialog.service.ts
import { Component, Inject, Injectable } from '@angular/core';
import { DOCUMENT } from '@angular/platform-browser';
import { MdDialog, MdDialogRef, MdDialogConfig } from '@angular/material';
import { ConfirmDialogComponent } from './confirmDialog.component';
import { Observable } from 'rxjs/Observable';

export class confirmDialogService {

    constructor( @Inject(MdDialog) public _confirmDialog: MdDialog, @Inject(DOCUMENT) doc: any) {
        // 打開dialog岸晦,body添加no-scroll樣式
        _confirmDialog.afterOpen.subscribe((ref: MdDialogRef<any>) => {
            if (!doc.body.classList.contains('no-scroll')) {
                doc.body.classList.add('no-scroll');
            }
        });
        // 關(guān)閉dialog,body移除no-scroll樣式
        _confirmDialog.afterAllClosed.subscribe(() => {
            doc.body.classList.remove('no-scroll');
        });
    }

    public confirm(contentOrConfig: any, title?: string): Observable<any> {
        // 設(shè)置dialog的屬性睛藻,寬度启上,高度,內(nèi)容等店印。
        let config = new MdDialogConfig();
        config = {
            width: '300px',
            height: '200px'
        };
        if (contentOrConfig instanceof Object) {
            config.data = contentOrConfig;
        } else if ((typeof contentOrConfig) === 'string') {
            config.data = {
                content: contentOrConfig,
                title: title
            }
        }
        return this._confirmDialog.open(ConfirmDialogComponent, config).afterClosed();
    }
}

4.使用例子

在需要使用的組件里的provides注冊冈在,就可以使用了,例子如下:

confirmDialog-example.component.ts
import { Component, OnInit, ViewEncapsulation, Inject } from '@angular/core';
import { confirmDialogService } from './confirmDialog.service';

@Component({
    selector: 'confirmDialog',
    templateUrl: 'confirmDialog-example.component.html',
    providers: [confirmDialogService]
})


export class DialogExampleComponent implements OnInit {
    lastCloseResult: any;

    public constructor(public _confirmDialogService: confirmDialogService) { }

    public confirm() {
        this._confirmDialogService.confirm({ content: '確認(rèn)刪除嗎按摘?' }).subscribe(res => {

            // 返回結(jié)果
            if (res) {
                this.lastCloseResult = "刪除成功";
            } else {
                return;
            }

        });
    }

    public ngOnInit() { }

}

confirmDialog-example.component.html
<p>Last close result: {{lastCloseResult}}</p>

<button md-raised-button (click)="confirm()">刪除</button>

確定刪除后包券,返回結(jié)果: this.lastCloseResult = "刪除成功"; 界面即顯示刪除成功,如上面的效果圖示炫贤。

就這樣完成了封裝confirmDialog確定框的組件~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末溅固,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子兰珍,更是在濱河造成了極大的恐慌侍郭,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件掠河,死亡現(xiàn)場離奇詭異亮元,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)唠摹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門爆捞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人勾拉,你說我怎么就攤上這事嵌削∶茫” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵苛秕,是天一觀的道長肌访。 經(jīng)常有香客問我,道長艇劫,這世上最難降的妖魔是什么吼驶? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮店煞,結(jié)果婚禮上蟹演,老公的妹妹穿的比我還像新娘。我一直安慰自己顷蟀,他們只是感情好酒请,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著鸣个,像睡著了一般羞反。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上囤萤,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天昼窗,我揣著相機(jī)與錄音,去河邊找鬼涛舍。 笑死澄惊,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的富雅。 我是一名探鬼主播掸驱,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼没佑!你這毒婦竟也來了亭敢?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤图筹,失蹤者是張志新(化名)和其女友劉穎帅刀,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體远剩,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡扣溺,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了瓜晤。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片锥余。...
    茶點(diǎn)故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖痢掠,靈堂內(nèi)的尸體忽然破棺而出驱犹,到底是詐尸還是另有隱情嘲恍,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布雄驹,位于F島的核電站佃牛,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏医舆。R本人自食惡果不足惜俘侠,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望蔬将。 院中可真熱鬧爷速,春花似錦、人聲如沸霞怀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽毙石。三九已至廉沮,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間胁黑,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工州泊, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留丧蘸,地道東北人。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓遥皂,卻偏偏與公主長得像力喷,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子演训,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理弟孟,服務(wù)發(fā)現(xiàn),斷路器样悟,智...
    卡卡羅2017閱讀 134,599評論 18 139
  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,504評論 25 707
  • 第一節(jié):初識Angular-CLI第二節(jié):登錄組件的構(gòu)建第三節(jié):建立一個待辦事項(xiàng)應(yīng)用第四節(jié):進(jìn)化拂募!模塊化你的應(yīng)用第...
    接灰的電子產(chǎn)品閱讀 13,676評論 64 25
  • 每個人都有智慧, 這在于你有沒有好好利用它窟她。 有人勤奮學(xué)習(xí)陈症, 開始走成功之路。 有人整天偷懶震糖, 變得墮落录肯。 走上成...
    姜一帆ff閱讀 167評論 0 1
  • 將喜怒哀樂偽裝起來,將笑臉隱藏起來吊说,將哭聲掩埋起來论咏,將一切埋葬掉优炬,躲在面具下向世人展現(xiàn)自己的偽裝。 世界在偽裝厅贪,面...
    謝愛紅閱讀 953評論 0 1