diff --git a/src/shared/components/linkfail/linkfail.model.ts b/src/shared/components/linkfail/linkfail.model.ts new file mode 100644 index 0000000..7238e34 --- /dev/null +++ b/src/shared/components/linkfail/linkfail.model.ts @@ -0,0 +1,15 @@ +const className = 'dec.dcm.model.shared.linkfail'; +export const Model = BI.inherit(Fix.Model, { + state() { + return { + showErrMessage: false, + }; + }, + actions: { + setShowErrMessage(isShow: boolean) { + this.model.showErrMessage = isShow; + }, + }, +}); +BI.model(className, Model); +export default className; diff --git a/src/shared/components/linkfail/linkfail.ts b/src/shared/components/linkfail/linkfail.ts new file mode 100644 index 0000000..2fbc276 --- /dev/null +++ b/src/shared/components/linkfail/linkfail.ts @@ -0,0 +1,108 @@ +import ModelName from './linkfail.model'; +import {CenterAdapt, Vertical, Layout, Label, VerticalAdapt, Button} from '@ui/index'; +export const EVENT_CLOSE = 'EVENT_CLOSE'; +export const EVENT_RETRY = 'EVENT_RETRY'; +const className = 'dec.dcm.shared.linkfail'; +const Widget = BI.inherit(BI.Widget, { + _store() { + return BI.Models.getModel(ModelName); + }, + watch: { + showErrMessage(err: string) { + this.dialogMore.setVisible(!!err); + this.setText(err ? BI.i18nText('Dec-Dcm_Connection_Handup_Information') : BI.i18nText('Dec-Dcm_Connection_Detailed_Information')); + }, + }, + render() { + const {text, errMessage} = this.options; + const {showErrMessage} = this.model; + + return { + type: CenterAdapt, + cls: 'bi-z-index-mask', + items: [{ + el: { + type: CenterAdapt, + cls: 'bi-card', + width: 450, + items: [ + { + type: Vertical, + items: [ + { + type: CenterAdapt, + cls: 'bi-card', + vgap: 10, + items: [ + { + type: Vertical, + vgap: 10, + items: [ + { + type: Layout, + cls: 'dcm-error-icon', + width: 270, + height: 100, + textAlign: 'center', + }, + { + type: Label, + text, + }, + { + type: VerticalAdapt, + hgap: 5, + items: [ + { + type: Button, + text: BI.i18nText('Dec-Dcm_Connection_Detailed_Information'), + level: 'ignore', + handler: () => { + this.store.setShowErrMessage(!this.model.showErrMessage); + }, + }, + { + type: Button, + text: BI.i18nText('Dec-Dcm_Back'), + level: 'ignore', + handler: () => { + this.fireEvent(EVENT_CLOSE); + }, + }, + { + type: Button, + text: BI.i18nText('Dec-Dcm_Connection_ReConnect'), + handler: () => { + this.fireEvent(EVENT_RETRY); + }, + }, + ], + }, + + ], + }, + ], + }, { + type: Label, + cls: 'bi-header-background', + text: errMessage, + invisible: !showErrMessage, + textAlign: 'left', + height: 73, + width: 400, + vgap: 10, + lgap: 5, + ref: _ref => { + this.dialogMore = _ref; + }, + }, + ], + }, + ], + }, + }], + }; + }, +}); +BI.shortcut(className, Widget); +export default className; diff --git a/src/shared/service/dialog.service.ts b/src/shared/service/dialog.service.ts index c7ddb77..05ac8e0 100644 --- a/src/shared/service/dialog.service.ts +++ b/src/shared/service/dialog.service.ts @@ -1,4 +1,6 @@ -import {Label, Vertical, Button, Layout, CenterAdapt, VerticalAdapt} from '@ui/index'; +import {Label, Vertical, CenterAdapt} from '@ui/index'; +import LinkFail, {EVENT_CLOSE, EVENT_RETRY} from '../components/linkfail/linkfail'; + class Dialog { /** * 提示 @@ -131,105 +133,29 @@ class Dialog { } public linkFail(text: string, more: string, cb?: Function): string { - let dialogPopover = null; - let dialogMore = null; const id = BI.UUID(); - const that = this; - const body = { - type: Vertical, - items: [ + const linkFailWidget = BI.createWidget({ + type: LinkFail, + text, + errMessage: more, + listeners: [ { - type: 'bi.center_adapt', - cls: 'bi-card', - tgap: 10, - items: [ - { - type: Vertical, - vgap: 10, - items: [ - { - type: Layout, - cls: 'dcm-error-icon', - width: 270, - height: 100, - textAlign: 'center', - }, - { - type: Label, - text, - }, - { - type: VerticalAdapt, - cls: 'buttons', - hgap: 5, - items: [ - { - type: Button, - text: BI.i18nText('Dec-Dcm_Connection_Detailed_Information'), - level: 'ignore', - handler() { - const isHide = !dialogMore.isVisible(); - dialogPopover.element.css({ - height: isHide ? '290' : '220', - }); - dialogMore.setVisible(isHide); - this.setText(isHide ? BI.i18nText('Dec-Dcm_Connection_Handup_Information') : BI.i18nText('Dec-Dcm_Connection_Detailed_Information')); - }, - }, - { - type: Button, - text: BI.i18nText('Dec-Dcm_Back'), - level: 'ignore', - handler() { - that.remove(id); - }, - }, - { - type: Button, - text: BI.i18nText('Dec-Dcm_Connection_ReConnect'), - handler() { - that.close(id); - cb ? cb() : null; - }, - }, - ], - }, - - ], - }, - ], - }, { - type: Label, - cls: 'bi-header-background', - text: more, - invisible: true, - height: 73, - width: 400, - value: false, - ref: _ref => { - dialogMore = _ref; + eventName: EVENT_CLOSE, + action: () => { + BI.Maskers.remove(id); + }, + }, + { + eventName: EVENT_RETRY, + action: () => { + BI.Maskers.remove(id); + cb ? cb() : null; }, }, ], - }; - + }); BI.Maskers.create(id, null, { - render: { - type: CenterAdapt, - cls: 'bi-z-index-mask', - items: [{ - el: { - type: 'bi.center_adapt', - cls: 'bi-card', - width: 450, - height: 220, - items: [body], - ref: _ref => { - dialogPopover = _ref; - }, - }, - }], - }, + render: linkFailWidget, }); BI.Maskers.show(id);