Add final touches

This commit is contained in:
Schmelczer András 2020-01-10 20:10:59 +01:00
parent b1fd2f372f
commit 0429ea7f72
64 changed files with 576 additions and 444 deletions

View file

@ -1,7 +1,7 @@
import { html } from '../../model/misc';
import { html } from '../../framework/model/misc';
import './theme-switcher.scss';
export const generate = (): html => `
<input id="theme-switcher" type="checkbox" name="switch-theme"/>
<input id="theme-switcher" aria-label="color-theme-switch" type="checkbox" name="switch-theme"/>
`;

View file

@ -1,5 +1,4 @@
@import '../../style/mixins';
@import '../../style/vars';
@use '../../style/include' as *;
@include responsive using($vars) {
input[type='checkbox']#theme-switcher {
@ -14,11 +13,12 @@
margin-top: map_get($vars, $normal-margin);
}
&::-ms-check {
display: none;
}
background-color: map_get($vars, $accent-color);
z-index: 10;
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
@ -33,10 +33,12 @@
inset 0 0 1px rgba(0, 0, 0, 0.4);
&:before {
// moon + sun
@include square($icon-size);
}
&:after {
// sun blocking moon
@include square($icon-size * 0.8);
}
@ -50,8 +52,8 @@
top: 50%;
transform: translateY(-50%);
transition: transform map_get($vars, $long-transition-time),
background-color map_get($vars, $long-transition-time);
transition: transform map_get($vars, $transition-time),
background-color map_get($vars, $transition-time);
}
&:not(:checked) {
@ -59,16 +61,16 @@
transform: translateY(-50%) translateX(3 * $margin + $icon-size);
animation: shine 3s linear alternate infinite;
background-color: map_get($vars, $theme-switcher-foreground);
background-color: map_get($vars, $sun-color);
@keyframes shine {
from {
filter: brightness(1.01);
box-shadow: 0 0 4px 2px map_get($vars, $theme-switcher-foreground);
box-shadow: 0 0 4px 2px map_get($vars, $sun-color);
}
to {
filter: brightness(1.1);
box-shadow: 0 0 15px 2px map_get($vars, $theme-switcher-foreground);
box-shadow: 0 0 15px 2px map_get($vars, $sun-color);
}
}
}
@ -90,9 +92,5 @@
transform: translateY(-50%) translateX($margin + $icon-size * 0.33);
}
}
&:focus {
outline: 0;
}
}
}

View file

@ -5,13 +5,13 @@ import {
isSystemLevelDarkModeEnabled,
turnOnDarkMode,
turnOnLightMode,
} from '../../framework/helper/dark-mode';
import { PageEvent, PageEventType } from '../../framework/page-event';
import { EventBroadcaster } from '../../framework/event-broadcaster';
} from '../../framework/styles/dark-mode/dark-mode';
import { PageEvent, PageEventType } from '../../framework/events/page-event';
import { EventBroadcaster } from '../../framework/events/event-broadcaster';
import {
turnOffAnimations,
turnOnAnimations,
} from '../../framework/helper/animations/animations';
} from '../../framework/styles/animations/animations';
export class PageThemeSwitcher extends PageElement {
private static readonly LOCAL_STORAGE_KEY = 'dark-mode';
@ -62,9 +62,12 @@ export class PageThemeSwitcher extends PageElement {
}
private static loadFromLocalStorage(): boolean | null {
return JSON.parse(
window.localStorage?.getItem(PageThemeSwitcher.LOCAL_STORAGE_KEY) ||
'null'
);
try {
return JSON.parse(
window.localStorage?.getItem(PageThemeSwitcher.LOCAL_STORAGE_KEY)
);
} catch {
return null;
}
}
}