Added new app-bar component, more work is needed.
This commit is contained in:
parent
b73a8e8f3a
commit
0308b235c0
64
app-bar.js
Normal file
64
app-bar.js
Normal file
@ -0,0 +1,64 @@
|
||||
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
||||
import { IgniteTemplate, div, h1, slot, button, list } from "../ignite-html/ignite-template.js";
|
||||
import { IgniteProperty } from "../ignite-html/ignite-html.js";
|
||||
|
||||
class AppBar extends IgniteElement {
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
get styles() {
|
||||
return /*css*/`
|
||||
mt-app-bar {
|
||||
background-color: #fff;
|
||||
padding: 0.8em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
|
||||
border-top-left-radius: 1em;
|
||||
border-top-right-radius: 1em;
|
||||
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
|
||||
}
|
||||
|
||||
mt-app-bar.bottom {
|
||||
order: 9999;
|
||||
}
|
||||
`;
|
||||
}
|
||||
|
||||
get properties() {
|
||||
return {
|
||||
placement: "top"
|
||||
};
|
||||
}
|
||||
|
||||
init() {
|
||||
|
||||
}
|
||||
|
||||
render() {
|
||||
return this.template
|
||||
.class(this.placement)
|
||||
.child(
|
||||
new slot(this)
|
||||
);
|
||||
}
|
||||
|
||||
ready() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class AppBarTemplate extends IgniteTemplate {
|
||||
constructor(...children) {
|
||||
super("mt-app-bar", children);
|
||||
}
|
||||
}
|
||||
|
||||
export {
|
||||
AppBarTemplate as AppBar
|
||||
};
|
||||
|
||||
customElements.define("mt-app-bar", AppBar);
|
Loading…
x
Reference in New Issue
Block a user