2023-07-03 03:07:45 +07:00
|
|
|
<svelte:options tag="partners-component" />
|
|
|
|
|
|
|
|
<script>
|
|
|
|
// Import statements
|
|
|
|
import { onMount } from 'svelte'
|
|
|
|
import { writable } from 'svelte/store';
|
2023-07-04 01:27:18 +07:00
|
|
|
import { loadLocaleContent } from "/js/libraries/serverTools.js"
|
2023-07-13 18:32:49 +07:00
|
|
|
import { partnersByCountry } from '/js/partners.js'
|
2023-07-03 03:07:45 +07:00
|
|
|
|
|
|
|
// Import components
|
|
|
|
import "/js/components/map-component.js"
|
|
|
|
|
|
|
|
// Main code
|
2023-07-13 18:32:49 +07:00
|
|
|
let loaded = writable(0)
|
2023-07-03 03:07:45 +07:00
|
|
|
let content = writable({})
|
|
|
|
|
2023-07-13 18:32:49 +07:00
|
|
|
loadLocaleContent(content,"countries",loaded)
|
2023-07-20 04:15:12 +07:00
|
|
|
let locale = loadLocaleContent(content,"partners-component",loaded)
|
|
|
|
|
|
|
|
function getCountry(name) {
|
|
|
|
return locale=="en" ? name : $content[name]
|
|
|
|
}
|
|
|
|
|
|
|
|
function getAddress(group) {
|
|
|
|
return group.location[0].map(x => locale=="en" ? x : $content[x]).join(", ")
|
|
|
|
}
|
2023-07-03 03:07:45 +07:00
|
|
|
|
|
|
|
onMount(() => {
|
|
|
|
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2023-07-13 18:32:49 +07:00
|
|
|
{#key $loaded}
|
|
|
|
{#if $loaded==2}
|
2023-07-03 03:07:45 +07:00
|
|
|
<div id="container">
|
|
|
|
<!--<img src="img/crowd.png" id="crowd" alt="crowd">-->
|
|
|
|
<div id="text-container">
|
|
|
|
<h1>{$content.heading}</h1>
|
|
|
|
<img id="hands-img" src="/img/common/handshake.svg" alt="hands">
|
|
|
|
<p>{$content.p1}</p>
|
|
|
|
<h3>{$content.subheading1}</h3>
|
2023-07-13 18:32:49 +07:00
|
|
|
{#each Object.entries(partnersByCountry) as [name,partners]}
|
2023-07-20 04:15:12 +07:00
|
|
|
<h4 class="country-name">{getCountry(name)}</h4>
|
2023-07-13 18:32:49 +07:00
|
|
|
<div class="country-block">
|
|
|
|
{#each partners as partner}
|
|
|
|
<div class="location-info">
|
|
|
|
<div class="img-general-info">
|
|
|
|
<picture>
|
|
|
|
<source srcset={"/img/partners/"+partner.logo+".webp"}>
|
|
|
|
<source srcset={"/img/partners/"+partner.logo+".jpg"}>
|
|
|
|
<img class="partner-logo" alt="logo">
|
|
|
|
</picture>
|
|
|
|
<div>
|
|
|
|
<p><b>{$content.name}: </b>{partner.name}</p>
|
|
|
|
<p><b>{$content.type}: </b>{$content[partner.type]}</p>
|
2023-07-20 04:15:12 +07:00
|
|
|
<p><b>{$content.location}: </b>{getAddress(partner)}</p>
|
2023-07-13 18:32:49 +07:00
|
|
|
<p><b>{$content.link}: </b><a href={partner.link} target=;_blank; rel=noreferrer>{partner.link}</a></p>
|
|
|
|
</div>
|
2023-07-03 03:07:45 +07:00
|
|
|
</div>
|
2023-07-13 18:32:49 +07:00
|
|
|
<p><b>{$content.description}: </b>{$content[partner.description]}</p>
|
2023-07-03 03:07:45 +07:00
|
|
|
</div>
|
2023-07-13 18:32:49 +07:00
|
|
|
{/each}
|
2023-07-03 03:07:45 +07:00
|
|
|
</div>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{/key}
|
|
|
|
|
|
|
|
<style>
|
|
|
|
@import '/css/common.css';
|
|
|
|
|
|
|
|
#hands-img {
|
|
|
|
position: absolute;
|
|
|
|
width: 10.5rem;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%);
|
|
|
|
z-index: 0;
|
|
|
|
opacity: 0.2;
|
|
|
|
margin-top: -2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#text-container>:nth-child(3) {
|
|
|
|
margin-top: 6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-general-info {
|
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
width: 100%;
|
|
|
|
gap: 1.5rem;
|
|
|
|
align-items: center;
|
2023-07-13 18:32:49 +07:00
|
|
|
margin-bottom: 0.5rem;
|
2023-07-03 03:07:45 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.img-general-info>:nth-child(2) {
|
|
|
|
flex:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.partner-logo {
|
|
|
|
position: relative;
|
|
|
|
right: 0;
|
2023-07-13 18:32:49 +07:00
|
|
|
max-height: 6.5rem;
|
2023-07-03 03:07:45 +07:00
|
|
|
max-width: 100%;
|
|
|
|
border-radius: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
2023-07-13 18:32:49 +07:00
|
|
|
.country-name {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.country-block {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
2023-07-03 03:07:45 +07:00
|
|
|
.location-info {
|
|
|
|
position: relative;
|
2023-07-13 18:32:49 +07:00
|
|
|
margin-bottom: 0.5rem;
|
2023-07-03 03:07:45 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.location-info p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #DD1C1A;
|
|
|
|
}
|
|
|
|
|
|
|
|
#map {
|
|
|
|
--height: 30rem;
|
|
|
|
--width: 100%;
|
|
|
|
--margin-bottom: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#text-container {
|
|
|
|
max-width: calc(100vw - 4rem);
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
font-size: 2.2rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container {
|
|
|
|
margin: auto;
|
|
|
|
max-width: 800px;
|
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container>div>p {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container p {
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
|
|
.img-general-info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-content: left;
|
|
|
|
width: 100%;
|
|
|
|
gap: 1rem;
|
|
|
|
align-items: left;
|
|
|
|
margin-bottom: 0rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-general-info>:nth-child(1) {
|
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-general-info>:nth-child(2) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|