Skip to content

Commit 49aec07

Browse files
move the presence-enable button in dash
put inside the expanding manual config section
1 parent b7d59f6 commit 49aec07

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

src/applets/presence/scripts/dash.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ togglePresenceConfigTabsButton.addEventListener('click', () => {
5050
// Optionally update the button text or icon
5151
const isExpanded = !presenceConfigTabsContainer.classList.contains('d-none');
5252
// togglePresenceConfigTabsButton.setAttribute('aria-expanded', `${isExpanded}`);
53-
debug(`Presence Config Tabs ${isExpanded ? 'opened' : 'closed'}`);
53+
// debug(`Presence Config Tabs ${isExpanded ? 'opened' : 'closed'}`);
5454
});
5555
/************ END presenceControl ************/
5656

src/dash/dash.html

+12-13
Original file line numberDiff line numberDiff line change
@@ -260,16 +260,9 @@ <h5>Output</h5>
260260

261261
<!-- START: PRESENCE CONTROL-->
262262
<div class="content" id="presence">
263-
<div class="d-flex flex-row flex-nowrap h-100">
264-
<button class="btn icon-button btn-outline-secondary" id="presence-enable" data-bs-toggle="tooltip"
265-
data-bs-placement="top" title="Automatically update presence status">
266-
<i class="bi bi-arrow-repeat"></i>
267-
<span>Auto-update <br>ON</span>
268-
</button>
269-
</div>
270263

271264
<!-- Presence Status -->
272-
<div class="d-flex flex-row flex-nowrap vertical-divider h-100">
265+
<div class="d-flex flex-row flex-nowrap h-100">
273266
<div class="btn icon-button btn-outline-secondary presence-status-button disabled text-secondary-emphasis" id="camera-in-use"
274267
data-bs-toggle="tooltip" data-bs-placement="top" title="Camera in use">
275268
<div class="badge bg-secondary w-75" id="camera-stream-count">0</div>
@@ -291,31 +284,37 @@ <h5>Output</h5>
291284
<!-- Presence Config -->
292285
<div class="d-flex flex-row flex-nowrap vertical-divider align-items-start h-100 w-100">
293286
<div class="flex-column">
294-
<h5 class="">Manual override</h5>
287+
<h5 class="">Webhook configuration</h5>
295288
<div class="btn-group dropend d-flex flex-row" role="group" aria-label="Webhook Controls">
296289
<button class="btn group-icon-btn btn-outline-secondary" id="manual-override-on"
297290
data-bs-toggle="tooltip"
298291
data-bs-placement="top" title="Manually trigger on webhook on">
299292
<i class="bi bi-check-circle-fill"></i>
300-
<span>Webhook <br>ON</span>
293+
<span>Manual <br>ON</span>
301294
</button>
302295
<button class="btn group-icon-btn btn-outline-secondary" id="manual-override-off"
303296
data-bs-toggle="tooltip"
304297
data-bs-placement="top" title="Manually trigger on webhook off">
305298
<i class="bi bi-x-circle-fill"></i>
306-
<span>Webhook<br>OFF</span>
299+
<span>Manual<br>OFF</span>
307300
</button>
308301
<button class="btn group-icon-btn btn-outline-secondary disabled text-secondary-emphasis me-0 ">
309302
<i class="bi bi-gear d-block"></i>
310-
<span class="d-block">Webhook<br>Settings</span>
303+
<span class="d-block">Settings</span>
311304
</button>
312305
<button type="button" class="btn btn-secondary dropdown-toggle dropdown-toggle-split"
313306
data-bs-toggle="toggle-presence-config-tabs-container" aria-expanded="false"
314307
id="toggle-presence-config-tabs">
315308
</button>
316309
</div>
317310
</div>
318-
<div class="tab-group collapse ms-3 " id="presence-config-tabs-container">
311+
<div class="tab-group collapse h-100 " id="presence-config-tabs-container">
312+
<button class="btn icon-button btn-outline-secondary ms-2" id="presence-enable" data-bs-toggle="tooltip"
313+
data-bs-placement="top" title="Automatically update presence status">
314+
<i class="bi bi-arrow-repeat"></i>
315+
<span>Auto-update <br>ON</span>
316+
</button>
317+
319318
<ul class="nav nav-tabs d-flex flex-column" id="presenceConfigTabs" role="tablist">
320319
<li class="nav-item" role="presentation">
321320
<a class="nav-link active" id="on-settings-tab" data-bs-toggle="tab" href="#on-settings"

src/dash/style.scss

+6-3
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ body {
7575
min-width: 60px; /* Ensure consistent width on large screens */
7676
}
7777

78-
79-
8078
.icon-button, i {
8179
font-size: 20px;
8280
}
@@ -93,6 +91,10 @@ body {
9391
.device-manager-selection-buttons button {
9492
font-size: 12px;
9593
}
94+
95+
#presence-save .bi-save {
96+
display: none;
97+
}
9698
}
9799

98100
@media (max-width: 1000px) {
@@ -374,14 +376,15 @@ attempts to prevent the i and spans from turning to white on hover failed
374376
min-width: 95px;
375377
}
376378

377-
.save-button {
379+
#presence-save {
378380
width: 100%; /* Ensure the button takes full width */
379381
padding: 5px; /* Adjust padding */
380382
display: flex;
381383
align-items: center;
382384
justify-content: center;
383385
}
384386

387+
385388
#presence .tab-content .form-group {
386389
flex: 1; /* Allow form groups to grow */
387390
margin-bottom: 10px; /* Add space between form groups */

0 commit comments

Comments
 (0)