-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.js
118 lines (91 loc) · 4.93 KB
/
navbar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import { twind, cssom, observe, install } from "@twind/core";
import "construct-style-sheets-polyfill";
import config from "../../twind.config.js";
// ╭───────────────────────────────────────────────────────╮
// │ Add the template │
// ╰───────────────────────────────────────────────────────╯
const template = document.createElement('template');
// ╭───────────────────────────────────────────────────────╮
// │ INCLUDES / LINKS / SCRIPTS │
// ╰───────────────────────────────────────────────────────╯
let html = /* html */`
`;
// ╭───────────────────────────────────────────────────────╮
// │ STYLESHEET │
// ╰───────────────────────────────────────────────────────╯
html += /* html */`
<style>
:host {
/* Variables */
--cssBackground: var(--color-stone-50);
--cssBackgroundMobile: var(--color-stone-800);
}
nav {
width: calc(100% - 0.5rem)
}
#navbar {
background: var(--cssBackgroundMobile);
}
@media (min-width: 768px) {
nav {
width: 100%
}
#navbar {
background: var(--cssBackground);
}
}
</style>
`;
// ╭───────────────────────────────────────────────────────╮
// │ TEMPLATE │
// ╰───────────────────────────────────────────────────────╯
html += /* html */`
<nav aria-label="Main Menu" class="
fixed md:static
bottom-0 md:top-0
left-1
right-1
z-50
" itemtype="https://schema.org/SiteNavigationElement">
<ul role="menu" id="navbar" class="
flex
w-full
rounded-t-lg md:rounded-none
justify-center md:justify-start">
<slot></slot>
</ul>
</nav>
`;
// ╭───────────────────────────────────────────────────────╮
// │ ADD TO TEMPLATE │
// ╰───────────────────────────────────────────────────────╯
template.innerHTML = html
// ╭───────────────────────────────────────────────────────╮
// │ DEFINE WEBCOMPONENT │
// ╰───────────────────────────────────────────────────────╯
class NavBar extends HTMLElement {
constructor() {
// SETUP
super();
const clone = template.content.cloneNode(true);
this.attachShadow({ mode: "open" });
this.shadowRoot.appendChild(clone);
// TWIND Setup
const sheet = cssom(new CSSStyleSheet());
const tw = twind(config, sheet);
const theshadowRoot = this.shadowRoot;
theshadowRoot.adoptedStyleSheets = [sheet.target];
observe(tw, theshadowRoot);
// define element
const element = this.shadowRoot.querySelector("#navbar");
// Set classes on navbar
element.classList.add(...this.classAttribute);
}
// ╭───────────────────────────────────────────────────────╮
// │ GETTERS / SETTERS │
// ╰───────────────────────────────────────────────────────╯
get classAttribute() {
return this.classList;
}
}
customElements.define("ldnpk-navbar", NavBar);