import { html } from "lit"; import { lockSVG, unlockSVG } from "./icons"; // This template is shown when user hasn't give geolocation permission yet // When user click the button user is asked for geolocation permission function permissionButtonTemplate(onClickHandler: () => void) { return html`
`; } // This template is shown when user has not given permission function permissionDeniedButtonTemplate() { return html` `; } // This template is shown when user has given permission but has not arrived yet function lockedButtonTemplate(proximityText: string | undefined) { return html` `; } // This template is shown when user has arrived to the target location // When user click the button counter at the bottom of the page is incremented // and image is revealed function unlockedButtonTemplate(onClickHandler: () => void) { return html` `; } export { lockedButtonTemplate, unlockedButtonTemplate, permissionButtonTemplate, permissionDeniedButtonTemplate, };