Spaces:
Running
Running
File size: 6,804 Bytes
da4c298 | 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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | class BottomPanel extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 32px;
background: linear-gradient(to top, #27272a, #18181b);
border-top: 1px solid #3f3f46;
z-index: 1000;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
.panel-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
padding: 0 4px;
}
.taskbar-section {
display: flex;
align-items: center;
gap: 2px;
flex: 1;
overflow: hidden;
}
.show-desktop {
width: 8px;
height: 24px;
background: linear-gradient(to right, transparent, #3f3f46);
cursor: pointer;
margin: 0 8px;
border-radius: 2px;
}
.show-desktop:hover {
background: linear-gradient(to right, transparent, #52525b);
}
.taskbar-item {
display: flex;
align-items: center;
gap: 4px;
padding: 4px 8px;
background: transparent;
border: none;
border-radius: 3px;
color: #d4d4d8;
font-size: 11px;
cursor: pointer;
white-space: nowrap;
transition: all 0.2s;
min-width: 0;
max-width: 150px;
}
.taskbar-item:hover {
background: #3f3f46;
}
.taskbar-active {
background: linear-gradient(to bottom, #ef4444, #dc2626);
color: white;
}
.taskbar-item-icon {
flex-shrink: 0;
}
.taskbar-item-text {
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
.right-section {
display: flex;
align-items: center;
gap: 4px;
}
.workspace-indicator {
display: flex;
align-items: center;
gap: 2px;
padding: 2px 6px;
background: #3f3f46;
border-radius: 3px;
}
.workspace-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #71717a;
}
.workspace-dot.active {
background: #ef4444;
}
.system-tray {
display: flex;
align-items: center;
gap: 2px;
}
.tray-item {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
color: #d4d4d8;
cursor: pointer;
border-radius: 3px;
transition: all 0.2s;
}
.tray-item:hover {
background: #3f3f46;
color: #f4f4f5;
}
</style>
<div class="panel-content">
<div class="taskbar-section" id="taskbar">
<!-- Window buttons will be added here -->
</div>
<button class="show-desktop" title="Mostrar Área de Trabalho" onclick="toggleDesktop()"></button>
<div class="right-section">
<div class="workspace-indicator">
<div class="workspace-dot active"></div>
<div class="workspace-dot"></div>
<div class="workspace-dot"></div>
<div class="workspace-dot"></div>
</div>
<div class="system-tray">
<div class="tray-item" title="Bloquear Tela">
<i data-feather="lock" style="width: 14px; height: 14px;"></i>
</div>
</div>
</div>
</div>
`;
this.taskbar = this.shadowRoot.getElementById('taskbar');
}
addWindowToTaskbar(windowId, title, icon) {
const button = document.createElement('button');
button.className = 'taskbar-item';
button.dataset.windowId = windowId;
button.innerHTML = `
<i data-feather="${icon}" class="taskbar-item-icon" style="width: 14px; height: 14px;"></i>
<span class="taskbar-item-text">${title}</span>
`;
button.addEventListener('click', () => {
const window = document.getElementById(windowId);
if (window) {
if (window.style.display === 'none') {
restoreWindow(windowId);
} else {
minimizeWindow(windowId);
}
}
});
button.addEventListener('contextmenu', (e) => {
e.preventDefault();
// Could add context menu here
});
this.taskbar.appendChild(button);
// Re-render feather icons
setTimeout(() => feather.replace(), 0);
}
removeWindowFromTaskbar(windowId) {
const button = this.taskbar.querySelector(`[data-window-id="${windowId}"]`);
if (button) {
button.remove();
}
}
}
customElements.define('bottom-panel', BottomPanel); |