This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-demo/src/PopoverDemo.ts

98 lines
2.5 KiB
TypeScript
Raw Normal View History

import {
stack,
Group,
Panel,
popover,
text,
gravity,
Color,
LayoutSpec,
vlayout,
Gravity,
scroller,
layoutConfig,
modal,
navbar,
} from "doric";
2019-12-04 14:07:14 +08:00
import { title, label, colors } from "./utils";
@Entry
2020-09-05 12:41:12 +08:00
export class PopoverDemo extends Panel {
build(rootView: Group): void {
scroller(
vlayout([
title("Popover Demo"),
label("show navbar").apply({
width: 200,
height: 50,
backgroundColor: colors[0],
textSize: 30,
textColor: Color.WHITE,
layoutConfig: layoutConfig().just(),
onClick: () => {
navbar(context).setHidden(false);
},
}),
label("hide navbar").apply({
width: 200,
height: 50,
backgroundColor: colors[0],
textSize: 30,
textColor: Color.WHITE,
layoutConfig: layoutConfig().just(),
onClick: () => {
navbar(context).setHidden(true);
},
}),
label("Popover").apply({
width: 200,
height: 50,
backgroundColor: colors[0],
textSize: 30,
textColor: Color.WHITE,
layoutConfig: layoutConfig().just(),
onClick: () => {
2020-09-05 12:41:12 +08:00
popover(this.context).show(
stack(
[
text({
width: 200,
height: 50,
backgroundColor: colors[0],
textColor: Color.WHITE,
layoutConfig: layoutConfig()
.just()
.configAlignment(Gravity.Center),
text: "This is PopOver Window",
}).also((v) => {
let idx = 0;
v.onClick = () => {
v.backgroundColor = colors[++idx % colors.length];
};
2020-09-05 12:41:12 +08:00
modal(this.context).toast("Dismissed after 3 seconds");
setTimeout(() => {
2020-09-05 12:41:12 +08:00
popover(this.context).dismiss();
}, 3000);
}),
],
{
layoutConfig: layoutConfig().most(),
backgroundColor: Color.RED.alpha(1),
2019-12-04 14:07:14 +08:00
}
)
);
},
}),
]).apply({
layoutConfig: layoutConfig().most().configHeight(LayoutSpec.FIT),
gravity: gravity().center(),
space: 10,
})
)
.apply({
layoutConfig: layoutConfig().most(),
})
.in(rootView);
}
}