hypnagaga/src/components/ReferralBlock/ReferralBlock.svelte
hobbes7878 eb5328a718
footer
2025-04-18 12:10:09 +01:00

255 lines
7 KiB
Svelte

<!-- @component `ReferralBlock` [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-furniture-referralblock--docs) -->
<script lang="ts">
// Utils
import { onMount } from 'svelte';
import { getTime } from '../SiteHeader/NavBar/NavDropdown/StoryCard/time';
import { articleIsNotCurrentPage } from './filterCurrentPage';
// Components
import Block from '../Block/Block.svelte';
// Types
import type { Article } from './types';
import type { Referrals } from './types';
type ContainerWidth = 'normal' | 'wide' | 'wider' | 'widest' | 'fluid';
interface Props {
/**
* Section ID, which is often the URL path to the section page on reuters.com.
*
* Note that not all section pages will be available in the recent stories by section API.
*/
section?: string;
/**
* Collection alias, as defined in Arc Collections editor.
*/
collection?: string;
/**
* Number of referrals to show.
*/
number?: number;
/**
* Link [target](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target), e.g., `_blank` or `_parent`.
*/
linkTarget?: string;
/**
* Add a heading to the referral block.
*/
heading?: string;
/**
* Width of the component within the text well: 'normal' | 'wide' | 'wider' | 'widest' | 'fluid'
*/
width?: ContainerWidth;
/** Add an ID to target with SCSS. */
id?: string;
/** Add a class to target with SCSS. */
class?: string;
}
let {
section = '/world/',
collection,
number = 4,
linkTarget = '_self',
heading = '',
width = 'wide',
id = '',
class: cls = 'fmy-8',
}: Props = $props();
let clientWidth = $state(0);
const SECTION_API = 'recent-stories-by-sections-v1';
/** @TODO - Check if collections alias API still exists*/
const COLLECTION_API = 'articles-by-collection-alias-or-id-v1';
let referrals: Article[] = $state([]);
const getReferrals = async () => {
const isCollection = Boolean(collection);
const API = isCollection ? COLLECTION_API : SECTION_API;
try {
const response = await fetch(
`https://www.reuters.com/pf/api/v3/content/fetch/${API}?` +
new URLSearchParams({
query: JSON.stringify({
section_ids: isCollection ? undefined : section,
collection_alias: isCollection ? collection : undefined,
size: 20,
website: 'reuters',
}),
})
);
const data = (await response.json()) as Referrals;
const articles = data.result.articles
.filter((a) => a?.headline_category || a?.kicker?.name)
.filter((a) => a?.thumbnail?.url)
.filter((a) => !a?.content?.third_party)
.filter(articleIsNotCurrentPage)
.slice(0, number);
referrals = articles;
} catch {
console.warn('Unable to fetch referral links.');
}
};
onMount(getReferrals);
</script>
{#if referrals.length === number}
<Block {width} {id} class="referrals-block {cls}">
<div
class="block-container"
class:stacked={clientWidth && clientWidth < 750}
bind:clientWidth
>
{#if heading}
<div
class="heading h4 font-bold"
class:stacked={clientWidth && clientWidth < 750}
>
{heading}
</div>
{/if}
<div
class="referral-container inline-flex flex-wrap w-full justify-between"
class:stacked={clientWidth && clientWidth < 750}
class:xs={clientWidth && clientWidth < 450}
>
{#each referrals as referral}
<div class="referral">
<a
href="https://www.reuters.com{referral.canonical_url}"
target={linkTarget}
rel={linkTarget === '_blank' ? 'noreferrer' : null}
>
<div class="referral-pack flex justify-around my-0 mx-auto">
<div
class="headline"
class:xs={clientWidth && clientWidth < 450}
>
<div
class="kicker m-0 body-caption leading-tighter"
data-chromatic="ignore"
>
{referral.headline_category || referral.kicker.name}
</div>
<div
class="title m-0 body-caption leading-tighter"
data-chromatic="ignore"
>
{referral.title}
</div>
<div
class="publish-time body-caption leading-tighter"
data-chromatic="ignore"
>
{getTime(new Date(referral.display_time))}
</div>
</div>
<div
class="image-container block m-0 overflow-hidden relative"
class:xs={clientWidth && clientWidth < 450}
>
<img
class="block object-cover m-0 w-full"
data-chromatic="ignore"
src={referral.thumbnail.url}
alt={referral.thumbnail.alt_text ||
referral.thumbnail.caption}
/>
</div>
</div>
</a>
</div>
{/each}
</div>
</div>
</Block>
{/if}
<style lang="scss">
@use '../../scss/mixins' as mixins;
div.block-container.stacked {
display: flex;
flex-direction: column;
align-items: center;
}
div.heading {
margin-top: 0;
font-family: Knowledge, sans-serif;
&.stacked {
max-width: 450px;
}
}
.referral-container {
a {
text-decoration: none;
}
&.stacked {
max-width: 450px;
.referral {
width: 100%;
.headline {
width: calc(100% - 7rem);
}
}
}
.referral {
display: block;
width: calc(50% - 30px);
max-width: 450px;
@include mixins.fmy-1;
&:hover {
.title {
text-decoration: underline;
}
img {
filter: brightness(85%);
}
}
.headline {
display: inline-block;
width: calc(100% - 9rem);
@include mixins.fpr-2;
.kicker {
@include mixins.text-xxs;
font-family: Knowledge, sans-serif;
}
.title {
@include mixins.font-medium;
@include mixins.text-sm;
@include mixins.text-primary;
font-family: Knowledge, sans-serif;
}
.publish-time {
@include mixins.text-xxs;
font-family: Knowledge, sans-serif;
}
}
.image-container {
border-radius: 0.25rem;
border: 1px solid mixins.$theme-colour-brand-rules;
width: 9rem;
&.xs {
width: 7rem;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
transition: filter 0.1s;
}
}
}
}
</style>