Skip to content

Commit

Permalink
Merge pull request #229 from hlxsites/maxed/scores-2
Browse files Browse the repository at this point in the history
iso: more 100s
  • Loading branch information
maxakuru authored Oct 19, 2023
2 parents b16bf4b + ca9068a commit a014519
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 33 deletions.
4 changes: 4 additions & 0 deletions blocks/resources/resources.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@
.resources-container .default-content-wrapper h4 {
color: var(--landing-heading-color);
}

.resources.block:not(.in-view) .splide__slide a {
background: none!important;
}
76 changes: 43 additions & 33 deletions blocks/resources/resources.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { html } from '../../scripts/scripts.js';
import '../card-carousel/card-carousel.js';

const FEED_URL = `${window.hlx.codeBasePath}/assets/fallback.xml`;
// TODO - Fix
Expand All @@ -21,32 +20,31 @@ async function getXMLFeed(url) {

async function renderXMLAsCards(url) {
const xml = sessionStorage.getItem('blog') || (await getXMLFeed(url));
if (!xml) return;
const parser = new DOMParser();
const dom = parser.parseFromString(xml, 'application/xml');
const items = dom.getElementsByTagName('item');
let cards = '';
for (let i = 0; i < items.length; i += 1) {
const title = items[i].getElementsByTagName('title');
const link = items[i].getElementsByTagName('link');
const pubDate = items[i].getElementsByTagName('pubDate');
const readTime = items[i].getElementsByTagName('readTime');
const featuredImage = items[i].getElementsByTagName('featuredImage');
const background = featuredImage[0].textContent;
const backgroundStyle = background
? `url(${featuredImage[0].textContent}) center center no-repeat`
: 'url(/assets/card-background.jpg) 0 0 no-repeat';
const _pubDate = new Date(pubDate?.[0]?.textContent);
const pubDateToLocale = _pubDate.toLocaleString('default', {
month: 'long',
day: 'numeric',
year: 'numeric',
});

if (xml) {
const parser = new DOMParser();
const dom = parser.parseFromString(xml, 'application/xml');
const items = dom.getElementsByTagName('item');
let cards = '';
for (let i = 0; i < items.length; i += 1) {
const title = items[i].getElementsByTagName('title');
const link = items[i].getElementsByTagName('link');
const pubDate = items[i].getElementsByTagName('pubDate');
const readTime = items[i].getElementsByTagName('readTime');
const featuredImage = items[i].getElementsByTagName('featuredImage');
const background = featuredImage[0].textContent;
const backgroundStyle = background
? `url(${featuredImage[0].textContent}) center center no-repeat`
: 'url(/assets/card-background.jpg) 0 0 no-repeat';
const _pubDate = new Date(pubDate?.[0]?.textContent);
const pubDateToLocale = _pubDate.toLocaleString('default', {
month: 'long',
day: 'numeric',
year: 'numeric',
});

// NOTE: using divs instead of lists due to an a11y bug in splide
// see: https://github.com/Splidejs/splide/issues/1241
cards += `\
// NOTE: using divs instead of lists due to an a11y bug in splide
// see: https://github.com/Splidejs/splide/issues/1241
cards += `\
<div class="splide__slide">
<a href="${link[0].textContent}" class="card ${
background && 'has-custom-background'
Expand All @@ -59,15 +57,25 @@ async function renderXMLAsCards(url) {
</h5>
</a>
</div>`;
}
}

const carouselList = document.querySelector(
'.carousel-container .splide__list',
);
carouselList.innerHTML = cards;
const carouselList = document.querySelector(
'.carousel-container .splide__list',
);
carouselList.innerHTML = cards;

store.emit('blog:loaded');
}
store.emit('blog:loaded');
}

function imageAppear(block) {
const obs = new IntersectionObserver((entries, self) => {
const inView = entries.find((entry) => entry.isIntersecting);
if (!inView) return;

block.classList.add('in-view');
self.disconnect();
});
obs.observe(block);
}

/**
Expand All @@ -80,5 +88,7 @@ export default async function decorate(block) {
</div>
`);

await import('../card-carousel/card-carousel.js');
imageAppear(block);
await renderXMLAsCards(FEED_URL);
}

0 comments on commit a014519

Please sign in to comment.