Add popup header
This commit is contained in:
parent
90398b593e
commit
4d40ddf468
@ -1,5 +1,7 @@
|
|||||||
@import "../Theme/Theme.scss";
|
@import "../Theme/Theme.scss";
|
||||||
|
|
||||||
|
$header-height: 32px;
|
||||||
|
|
||||||
@keyframes show-scale{
|
@keyframes show-scale{
|
||||||
from {
|
from {
|
||||||
transform: scale3d(1.15, 1.15, 1);
|
transform: scale3d(1.15, 1.15, 1);
|
||||||
@ -43,8 +45,39 @@ div.popup-layer {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
div.popup-layer-header {
|
div.popup-layer-header {
|
||||||
min-height: 32px;
|
min-height: $header-height;
|
||||||
max-height: 32px;
|
max-height: $header-height;
|
||||||
|
height: $header-height;
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
div.header-text {
|
||||||
|
width: calc( 100% - 32px );
|
||||||
|
flex-shrink: 1;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
|
span {
|
||||||
|
padding-left: 8px;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header-close-icon {
|
||||||
|
width: $header-height;
|
||||||
|
height: $header-height;
|
||||||
|
flex-shrink: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
user-select: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -52,6 +85,11 @@ div.popup-layer.dark {
|
|||||||
|
|
||||||
div.popup-layer-header {
|
div.popup-layer-header {
|
||||||
background-color: $lt-bg-color-lvl3-dark;
|
background-color: $lt-bg-color-lvl3-dark;
|
||||||
|
|
||||||
|
div.header-close-icon:hover {
|
||||||
|
background-color: $lt-bg-color-lvl2-dark;
|
||||||
|
color: $lt-red;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,6 +97,11 @@ div.popup-layer.light {
|
|||||||
|
|
||||||
div.popup-layer-header {
|
div.popup-layer-header {
|
||||||
background-color: $lt-bg-color-lvl3-light;
|
background-color: $lt-bg-color-lvl3-light;
|
||||||
|
|
||||||
|
div.header-close-icon:hover {
|
||||||
|
background-color: $lt-bg-color-lvl2-light;
|
||||||
|
color: $lt-red;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ import { Component, ReactNode } from "react";
|
|||||||
import { IMixinStatusProps, useStatusWithEvent } from "@Context/Status";
|
import { IMixinStatusProps, useStatusWithEvent } from "@Context/Status";
|
||||||
import { BackgroundLevel, Theme } from "@Component/Theme/Theme";
|
import { BackgroundLevel, Theme } from "@Component/Theme/Theme";
|
||||||
import { Popup as PopupModel } from "@Context/Popups";
|
import { Popup as PopupModel } from "@Context/Popups";
|
||||||
|
import { Icon } from "@fluentui/react";
|
||||||
import "./Popup.scss";
|
import "./Popup.scss";
|
||||||
|
|
||||||
interface IPopupProps {}
|
interface IPopupProps {}
|
||||||
@ -59,6 +60,22 @@ class Popup extends Component<IPopupProps & IMixinStatusProps> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public renderHeader(popup: PopupModel): ReactNode {
|
||||||
|
return <div className="popup-layer-header">
|
||||||
|
<div className="header-text">
|
||||||
|
{popup.onRenderHeader()}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className="header-close-icon"
|
||||||
|
onClick={() => {
|
||||||
|
popup.onClose();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon iconName="CalculatorMultiply"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
public renderLayer(popup: PopupModel) {
|
public renderLayer(popup: PopupModel) {
|
||||||
const pageWidth = document.documentElement.clientWidth;
|
const pageWidth = document.documentElement.clientWidth;
|
||||||
const pageHeight = document.documentElement.clientHeight;
|
const pageHeight = document.documentElement.clientHeight;
|
||||||
@ -77,9 +94,7 @@ class Popup extends Component<IPopupProps & IMixinStatusProps> {
|
|||||||
backgroundLevel={BackgroundLevel.Level4}
|
backgroundLevel={BackgroundLevel.Level4}
|
||||||
className="popup-layer show-scale"
|
className="popup-layer show-scale"
|
||||||
>
|
>
|
||||||
<div className="popup-layer-header">
|
{this.renderHeader(popup)}
|
||||||
|
|
||||||
</div>
|
|
||||||
</Theme>
|
</Theme>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { ReactNode } from "react";
|
import { ReactNode, createElement } from "react";
|
||||||
import { Emitter } from "@Model/Emitter";
|
import { Emitter } from "@Model/Emitter";
|
||||||
|
import { Localization } from "@Component/Localization/Localization";
|
||||||
|
|
||||||
type IPopupConstructor = new (controller: PopupController, id: string) => Popup;
|
type IPopupConstructor = new (controller: PopupController, id: string) => Popup;
|
||||||
|
|
||||||
@ -55,6 +56,13 @@ class Popup {
|
|||||||
*/
|
*/
|
||||||
public reactNode: ReactNode;
|
public reactNode: ReactNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 渲染标题
|
||||||
|
*/
|
||||||
|
public onRenderHeader(): ReactNode {
|
||||||
|
return createElement(Localization, {i18nKey: "Popup.Title.Unnamed"});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 渲染函数
|
* 渲染函数
|
||||||
*/
|
*/
|
||||||
|
@ -44,6 +44,7 @@ const EN_US = {
|
|||||||
"Panel.Info.Label.Details.View": "Edit view label attributes",
|
"Panel.Info.Label.Details.View": "Edit view label attributes",
|
||||||
"Panel.Title.Group.Details.View": "Group",
|
"Panel.Title.Group.Details.View": "Group",
|
||||||
"Panel.Info.Group.Details.View": "Edit view group attributes",
|
"Panel.Info.Group.Details.View": "Edit view group attributes",
|
||||||
|
"Popup.Title.Unnamed": "Popup message",
|
||||||
"Build.In.Label.Name.All.Group": "All group",
|
"Build.In.Label.Name.All.Group": "All group",
|
||||||
"Build.In.Label.Name.All.Range": "All range",
|
"Build.In.Label.Name.All.Range": "All range",
|
||||||
"Common.No.Data": "No Data",
|
"Common.No.Data": "No Data",
|
||||||
|
@ -44,6 +44,7 @@ const ZH_CN = {
|
|||||||
"Panel.Info.Label.Details.View": "编辑查看标签属性",
|
"Panel.Info.Label.Details.View": "编辑查看标签属性",
|
||||||
"Panel.Title.Group.Details.View": "群",
|
"Panel.Title.Group.Details.View": "群",
|
||||||
"Panel.Info.Group.Details.View": "编辑查看群属性",
|
"Panel.Info.Group.Details.View": "编辑查看群属性",
|
||||||
|
"Popup.Title.Unnamed": "弹窗消息",
|
||||||
"Build.In.Label.Name.All.Group": "全部群",
|
"Build.In.Label.Name.All.Group": "全部群",
|
||||||
"Build.In.Label.Name.All.Range": "全部范围",
|
"Build.In.Label.Name.All.Range": "全部范围",
|
||||||
"Common.No.Data": "暂无数据",
|
"Common.No.Data": "暂无数据",
|
||||||
|
Loading…
Reference in New Issue
Block a user