233 lines
6.1 KiB
Svelte
233 lines
6.1 KiB
Svelte
<svelte:options tag="partners-component" />
|
|
|
|
<script>
|
|
// Import statements
|
|
import { onMount } from 'svelte'
|
|
import { writable } from 'svelte/store';
|
|
import { loadLocaleContent, getData} from "/js/libraries/serverTools.js"
|
|
import { addMarkersEntries, translate } from "/js/libraries/mapTools.js"
|
|
import { addPartnersPinContent } from "/js/mapFuncs.js"
|
|
|
|
// Import components
|
|
import "/js/components/map-component.js"
|
|
|
|
// Main code
|
|
let loaded = writable(0)
|
|
let content = writable({})
|
|
let entries
|
|
let entriesByCountry
|
|
|
|
let locale = loadLocaleContent(content,"partners-component",loaded)
|
|
loadLocaleContent(content,"countries",loaded)
|
|
|
|
let callback = (response) => {
|
|
entries = JSON.parse(response)
|
|
entriesByCountry = {}
|
|
for (let g of entries) {
|
|
let country = g.country
|
|
if (g.contact==null) {
|
|
g.contact = "https://discord.gg/Qk8KUk787z"
|
|
}
|
|
if (country in entriesByCountry) {
|
|
entriesByCountry[country].push(g)
|
|
}
|
|
else {
|
|
entriesByCountry[country] = [g]
|
|
}
|
|
}
|
|
loaded.update((val) => {
|
|
return val + 1
|
|
})
|
|
}
|
|
getData("/assets/partners.json",callback)
|
|
|
|
function mapCallback(createMap,content,locale) {
|
|
let map = createMap([22, 0],2)
|
|
let options = {
|
|
enableCountryGrouping: true,
|
|
}
|
|
addMarkersEntries(entries,entriesByCountry,map,content,locale,addPartnersPinContent,"blue",options)
|
|
}
|
|
|
|
function getCountry(x) {
|
|
return locale=="en" ? x : translate($content,x)
|
|
}
|
|
|
|
function getAddress(g) {
|
|
let location = [g.country,g.state,g.town].filter(x => x!=null)
|
|
return location.map(x => locale=="en" ? x : translate($content,x)).join(", ")
|
|
}
|
|
|
|
function createMailToLink(link) {
|
|
if (link.includes("@")) {
|
|
return "mailto:" + link
|
|
}
|
|
else {
|
|
return link
|
|
}
|
|
}
|
|
|
|
onMount(() => {
|
|
|
|
})
|
|
</script>
|
|
|
|
{#key $loaded}
|
|
{#if $loaded==3}
|
|
<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>
|
|
<map-component id="map" callback={(createMap) => mapCallback(createMap,$content,locale)}></map-component>
|
|
<p id="add-prompt">{$content["map-prompt"]}</p>
|
|
{#each Object.entries(entriesByCountry) as [name,entries]}
|
|
<h4 class="country-name">{getCountry(name)}</h4>
|
|
<div class="country-block">
|
|
{#each entries as entry}
|
|
<div class="location-info">
|
|
<div class="img-general-info">
|
|
<picture>
|
|
<source srcset={"/img/partners/"+entry.logo+".webp"}>
|
|
<source srcset={"/img/partners/"+entry.logo+".jpg"}>
|
|
<img class="partner-logo" alt="logo">
|
|
</picture>
|
|
<div>
|
|
<p><b>{$content.name}: </b>{entry.name}</p>
|
|
<p><b>{$content.location}: </b>{getAddress(entry)}</p>
|
|
<p><b>{$content.website}: </b><a href={entry.website} target=;_blank; rel=noreferrer>{entry.website}</a></p>
|
|
<p><b>{$content.contact}: </b><a href={createMailToLink(entry.contact)} target=;_blank; rel=noreferrer>{entry.contact}</a></p>
|
|
</div>
|
|
</div>
|
|
<p><b>{$content.description}: </b>{entry.description}</p>
|
|
</div>
|
|
{/each}
|
|
</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;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.img-general-info>:nth-child(2) {
|
|
flex:none;
|
|
}
|
|
|
|
.partner-logo {
|
|
position: relative;
|
|
right: 0;
|
|
max-height: 6.5rem;
|
|
max-width: 100%;
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
h4 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.country-name {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.country-block {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.location-info {
|
|
position: relative;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.location-info p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
a {
|
|
color: #DD1C1A;
|
|
}
|
|
|
|
#map {
|
|
--height: 30rem;
|
|
--width: 100%;
|
|
--margin-bottom: 0.5rem;
|
|
}
|
|
|
|
#text-container {
|
|
max-width: calc(100vw - 4rem);
|
|
margin: auto;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 1rem;
|
|
font-size: 2.2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#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> |