2024-08-06 10:48:06 +02:00
|
|
|
<script lang="ts">
|
|
|
|
import IconCalendarRepeat from "@tabler/icons-svelte/IconCalendarRepeat.svelte";
|
2024-08-06 12:45:25 +02:00
|
|
|
import IconCoin from "@tabler/icons-svelte/IconCoin.svelte";
|
2024-08-06 10:48:06 +02:00
|
|
|
import IconArrowRight from "@tabler/icons-svelte/IconArrowRight.svelte";
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
import IconCup from "@tabler/icons-svelte/IconCup.svelte";
|
|
|
|
import IconPizza from "@tabler/icons-svelte/IconPizza.svelte";
|
|
|
|
import IconToolsKitchen2 from "@tabler/icons-svelte/IconToolsKitchen2.svelte";
|
|
|
|
|
|
|
|
import DonationOption from "$components/donate/DonationOption.svelte";
|
|
|
|
|
2024-08-06 10:48:06 +02:00
|
|
|
import { donate } from "$lib/env";
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
let customInputValue: number;
|
2024-08-06 10:48:06 +02:00
|
|
|
|
|
|
|
const donateStripe = (amount: number) => {
|
|
|
|
const url = new URL(donate.stripe);
|
2024-08-06 12:48:39 +02:00
|
|
|
url.searchParams.set("__prefilled_amount", (amount * 100).toString());
|
2024-08-06 12:45:25 +02:00
|
|
|
window.open(url, "_blank");
|
|
|
|
};
|
2024-08-06 10:48:06 +02:00
|
|
|
|
|
|
|
const donateLibera = (amount: number) => {
|
|
|
|
const url = new URL(donate.liberapay);
|
2024-08-06 12:45:25 +02:00
|
|
|
url.searchParams.set("currency", "USD");
|
|
|
|
url.searchParams.set("period", "monthly");
|
|
|
|
url.searchParams.set("amount", (amount / 100).toString());
|
|
|
|
window.open(url, "_blank");
|
|
|
|
};
|
2024-08-06 10:48:06 +02:00
|
|
|
|
|
|
|
const toClipboard = (text: string) => navigator.clipboard.writeText(text);
|
|
|
|
</script>
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
<div id="donation-box">
|
|
|
|
<div id="donation-types">
|
|
|
|
<button id="donation-type-once" class="donation-type selected">
|
|
|
|
<div class="donation-type-icon"><IconCoin /></div>
|
|
|
|
<div class="donation-title">one-time donation</div>
|
|
|
|
<div class="donation-subtitle">processed by stripe</div>
|
|
|
|
</button>
|
|
|
|
<button id="donation-type-monthly" class="donation-type">
|
|
|
|
<div class="donation-type-icon"><IconCalendarRepeat /></div>
|
|
|
|
<div class="donation-title">monthly donation</div>
|
|
|
|
<div class="donation-subtitle">processed by liberapay</div>
|
|
|
|
</button>
|
2024-08-06 10:48:06 +02:00
|
|
|
</div>
|
2024-08-06 12:45:25 +02:00
|
|
|
<div id="donation-options">
|
|
|
|
<DonationOption
|
|
|
|
price={5}
|
|
|
|
desc="cup of coffee"
|
|
|
|
click={() => donateStripe(5)}
|
|
|
|
>
|
|
|
|
<IconCup />
|
|
|
|
</DonationOption>
|
|
|
|
<DonationOption
|
|
|
|
price={10}
|
|
|
|
desc="full size pizza"
|
|
|
|
click={() => donateStripe(10)}
|
|
|
|
>
|
|
|
|
<IconPizza />
|
|
|
|
</DonationOption>
|
|
|
|
<DonationOption
|
|
|
|
price={15}
|
|
|
|
desc="full lunch"
|
|
|
|
click={() => donateStripe(15)}
|
|
|
|
>
|
|
|
|
<IconToolsKitchen2 />
|
|
|
|
</DonationOption>
|
|
|
|
<DonationOption
|
|
|
|
price={30}
|
|
|
|
desc="two lunches"
|
|
|
|
click={() => donateStripe(30)}
|
|
|
|
>
|
|
|
|
<IconToolsKitchen2 />
|
|
|
|
</DonationOption>
|
2024-08-06 10:48:06 +02:00
|
|
|
</div>
|
2024-08-06 12:45:25 +02:00
|
|
|
<div id="donation-custom">
|
|
|
|
<input
|
|
|
|
id="donation-custom-input"
|
|
|
|
type="number"
|
|
|
|
placeholder="custom amount (from $2)"
|
|
|
|
bind:value={customInputValue}
|
|
|
|
/>
|
|
|
|
<button
|
|
|
|
id="donation-custom-submit"
|
|
|
|
on:click={() => donateStripe(customInputValue)}
|
|
|
|
>
|
|
|
|
<IconArrowRight />
|
|
|
|
</button>
|
2024-08-06 10:48:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
2024-08-06 12:45:25 +02:00
|
|
|
#donation-box {
|
|
|
|
--donation-box-padding: 12px;
|
2024-08-06 10:48:06 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-08-06 12:53:40 +02:00
|
|
|
width: calc(100% - var(--donate-border-radius) * 2);
|
2024-08-06 12:45:25 +02:00
|
|
|
max-width: 480px;
|
2024-08-06 10:48:06 +02:00
|
|
|
|
|
|
|
padding: var(--donate-border-radius);
|
|
|
|
border-radius: var(--donate-border-radius);
|
|
|
|
gap: calc(var(--donate-border-radius) / 2);
|
|
|
|
|
|
|
|
color: white;
|
|
|
|
background: linear-gradient(
|
|
|
|
180deg,
|
|
|
|
var(--donate-gradient-end) 0%,
|
|
|
|
var(--donate-gradient-start) 80%
|
|
|
|
);
|
2024-08-06 12:45:25 +02:00
|
|
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, var(--donate-border-opacity))
|
|
|
|
inset;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
#donation-types {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: var(--donation-box-padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
.donation-type,
|
|
|
|
:global(.donation-option) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
text-align: left;
|
|
|
|
border-radius: var(--donation-box-padding);
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
padding: 14px 18px;
|
|
|
|
color: var(--white);
|
|
|
|
gap: 0;
|
|
|
|
letter-spacing: -0.3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.donation-type {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(#donation-box button:not(:focus-visible)) {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (hover: hover) {
|
|
|
|
:global(#donation-box button:hover) {
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
}
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
.donation-type.selected {
|
|
|
|
background: rgba(255, 255, 255, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.donation-type.selected:not(:focus-visible) {
|
|
|
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1) inset !important;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.donation-subtitle {
|
2024-08-06 12:45:25 +02:00
|
|
|
line-height: 1.5;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
.donation-type-icon :global(svg) {
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
:global(.donation-title) {
|
2024-08-06 10:48:06 +02:00
|
|
|
display: flex;
|
2024-08-06 12:45:25 +02:00
|
|
|
align-items: center;
|
|
|
|
font-size: 16px;
|
|
|
|
gap: 4px;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
:global(.donation-subtitle) {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #9a9a9a;
|
|
|
|
}
|
|
|
|
|
|
|
|
#donation-options {
|
2024-08-06 10:48:06 +02:00
|
|
|
display: flex;
|
2024-08-06 12:45:25 +02:00
|
|
|
overflow-x: scroll;
|
|
|
|
gap: 6px;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
#donation-custom {
|
2024-08-06 10:48:06 +02:00
|
|
|
display: flex;
|
2024-08-06 12:45:25 +02:00
|
|
|
gap: 6px;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
#donation-custom-input {
|
|
|
|
flex: 1;
|
|
|
|
padding: 12px 18px;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 13px;
|
|
|
|
border-radius: 12px;
|
|
|
|
color: var(--white);
|
|
|
|
background-color: rgba(255, 255, 255, 0.1);
|
2024-08-06 10:48:06 +02:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
#donation-custom-submit {
|
|
|
|
color: var(--white);
|
|
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
padding: 8px;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-06 12:45:25 +02:00
|
|
|
#donation-custom-submit :global(svg) {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-08-06 10:48:06 +02:00
|
|
|
}
|
2024-08-06 12:46:32 +02:00
|
|
|
|
|
|
|
#donation-custom-input::-webkit-outer-spin-button,
|
|
|
|
#donation-custom-input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2024-08-06 10:48:06 +02:00
|
|
|
</style>
|