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`

Ne kadar yaklaştığını görmek için aşağıdaki butona bas.

`; } // This template is shown when user has not given permission function permissionDeniedButtonTemplate() { return html`

Konumuna erişim izni vermediğin için hedefe ne kadar
yakın olduğun tespit edilemiyor.

`; } // This template is shown when user has given permission but has not arrived yet function lockedButtonTemplate(proximityText: string | undefined) { return html`

İçeriği görmek için konuma gitmelisin! Kalan mesafe: ${proximityText}

`; } // 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`

İçeriği görmek için butona bas!

`; } export { lockedButtonTemplate, unlockedButtonTemplate, permissionButtonTemplate, permissionDeniedButtonTemplate, };