2022-04-27 17:03:35 +03:00
|
|
|
import { showSidebar, smallViewport } from "./stores";
|
2022-04-27 05:03:47 +03:00
|
|
|
|
|
|
|
export function initResponsiveHandlers() {
|
|
|
|
const mediaQuery = window.matchMedia('(min-width: 768px)');
|
|
|
|
|
|
|
|
const update = ({ matches }) => {
|
|
|
|
showSidebar.set(matches);
|
2022-04-27 17:03:35 +03:00
|
|
|
smallViewport.set(!matches);
|
2022-04-27 05:03:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
mediaQuery.addEventListener("change", update);
|
|
|
|
update(mediaQuery);
|
|
|
|
}
|