Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add switch on/off #18

Merged
merged 1 commit into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions public/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,23 @@
<div class="app">
<div class="app-header">
<p id="currentDomain"></p>
<a id="reloadIcon">
<img src="/icons/reload-icon.svg" alt="Reload page" width="25" />
</a>
<div class="app-header-right">
<a id="reloadIcon" hidden>
<img src="/icons/reload-icon.svg" alt="Reload page" width="25" />
</a>
<div class="switch-container">
<label class="switch-label switch-label-off" id="switch-label-off"
>OFF</label
>
<label class="switch" id="switch">
<input type="checkbox" id="statusCheckbox" checked />
<span class="slider"></span>
</label>
<label class="switch-label switch-label-on" id="switch-label-on"
>ON</label
>
</div>
</div>
</div>
</div>

Expand Down
90 changes: 89 additions & 1 deletion src/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ body {

a {
cursor: pointer;
height: 25px;
}

.app {
Expand All @@ -35,7 +36,6 @@ a {
align-items: center;
justify-content: space-between;
flex-direction: column;
text-align: left;
padding: 20px;
}

Expand All @@ -46,3 +46,91 @@ a {
align-items: center;
justify-content: space-between;
}

.app-header-right {
display: flex;
flex-direction: row;
align-items: center;
}

.switch-container {
display: flex;
flex-direction: row;
align-items: center;
}

.switch-label {
padding: 8px;
transition: color 0.4s ease;
font-size: 8px;
font-weight: bolder;
}

.switch-label-on {
color: var(--green);
}

.switch-label-off {
color: var(--cold-gray);
}

.switch {
position: relative;
display: inline-block;
width: 40px;
height: 20px;
border-radius: 20px;
}

.switch input {
opacity: 0;
width: 0;
height: 0;
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--black-wash);
border: 1px solid white;
opacity: 50%;
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 20px;
}

.slider:before {
position: absolute;
content: '';
height: 16px;
width: 16px;
right: 20px;
top: 1px;
background-color: var(--green);
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 50%;
}

input:checked + .slider {
background-color: var(--black-wash);
opacity: 100%;
}

input:checked + .slider:before {
-webkit-transform: translateX(18px);
-ms-transform: translateX(18px);
transform: translateX(18px);
}

input:checked + .switch-label-on {
color: var(--green);
}

input:checked + .switch-label-off {
color: var(--cold-gray);
}
44 changes: 28 additions & 16 deletions src/popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,44 @@ document.addEventListener('DOMContentLoaded', () => {
const activeTab = tabs[0]
if (activeTab.id) {
browser.tabs.reload(activeTab.id)
reloadIcon.hidden = true
}
})
})
}

const statusCheckbox = document.getElementById(
'statusCheckbox'
) as HTMLInputElement

if (statusCheckbox) {
browser.storage.sync.get(['status']).then((result) => {
statusCheckbox.checked = result.status || true
})

statusCheckbox.addEventListener('click', () => {
browser.storage.sync.set({ status: !statusCheckbox.checked })

document.getElementById('switch-label-on')!.style.color =
statusCheckbox.checked ? 'var(--green)' : 'var(--cold-gray)'

if (reloadIcon?.hidden) reloadIcon.hidden = false
})
}
})

const extractDomain = (url: string): string | null => {
const match = url.match(/^(?:https?:\/\/)?(?:www\.)?([^/?]+)/)
return match ? match[1] : null
}

const updateTabInfo = (): void => {
browser.tabs.query({ active: true, currentWindow: true }).then((tabs) => {
const activeTab = tabs[0]
if (activeTab.url) {
const domain = extractDomain(activeTab.url)
const urlElement = document.getElementById('currentDomain')
if (urlElement) {
urlElement.textContent = domain || ''
}
browser.tabs.query({ active: true, currentWindow: true }).then((tabs) => {
const activeTab = tabs[0]
if (activeTab.url) {
const domain = extractDomain(activeTab.url)
const urlElement = document.getElementById('currentDomain')
if (urlElement) {
urlElement.textContent = domain || ''
}
})
}

updateTabInfo()

browser.tabs.onActivated.addListener(() => {
updateTabInfo()
}
})
Loading