rsshub
Version:
Make RSS Great Again!
106 lines (105 loc) • 4.15 kB
JavaScript
import { t as parseDate } from "./parse-date-Cr0wQjV_.mjs";
import { t as cache_default } from "./cache-BkqOokyU.mjs";
import { t as got_default } from "./got-BTowW50G.mjs";
import { load } from "cheerio";
//#region lib/routes/smashingmagazine/category.ts
const route = {
path: "/:category?",
categories: ["programming"],
example: "/smashingmagazine/react",
parameters: { category: "Find in URL or Table below" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{
source: ["smashingmagazine.com/category/:category"],
target: "/:category"
}],
name: "Category",
maintainers: ["Rjnishant530"],
handler,
url: "smashingmagazine.com/articles/",
description: `| **Category** | |
| ------------------ | ------------------ |
| Accessibility | accessibility |
| Best practices | best-practices |
| Business | business |
| Career | career |
| Checklists | checklists |
| CSS | css |
| Data Visualization | data-visualization |
| Design | design |
| Design Patterns | design-patterns |
| Design Systems | design-systems |
| E-Commerce | e-commerce |
| Figma | figma |
| Freebies | freebies |
| HTML | html |
| Illustrator | illustrator |
| Inspiration | inspiration |
| JavaScript | javascript |
| Mobile | mobile |
| Performance | performance |
| Privacy | privacy |
| React | react |
| Responsive Design | responsive-design |
| Round-Ups | round-ups |
| SEO | seo |
| Typography | typography |
| Tools | tools |
| UI | ui |
| Usability | usability |
| UX | ux |
| Vue | vue |
| Wallpapers | wallpapers |
| Web Design | web-design |
| Workflow | workflow |`
};
async function handler(ctx) {
const category = ctx.req.param("category");
const baseUrl = "https://www.smashingmagazine.com";
const route = category ? `/category/${category}` : "/articles";
const { data: response } = await got_default(`${baseUrl}${route}`);
const $ = load(response);
const listItems = $("article.article--post").toArray().map((item) => {
const $item = $(item);
const a = $item.find("h2.article--post__title a");
const description = $item.find("p.article--post__teaser").contents().filter((_, node) => node.type === "text").text();
const author = $item.find("span.article--post__author-name a").text();
const pubDate = parseDate($("p.article--post__teaser time").attr("datetime"), "YYYY-MM-DD");
return {
title: a.text(),
link: `${baseUrl}${a.attr("href")}`,
pubDate,
description,
author
};
});
const items = await Promise.all(listItems.map((item) => cache_default.tryGet(item.link, async () => {
const { data: response } = await got_default(item.link);
const $ = load(response);
item.category = $("li.meta-box--tags a").toArray().map((item) => $(item).text());
item.description = [
$("div#article__content header.article-header").children("ul").remove().end().html(),
$("div#article__content section.article__summary").html(),
...$("div#article__content div.c-garfield-the-cat").children("div").remove().end().toArray().map((element) => $(element).html())
].join("");
return item;
})));
return {
title: "Smashing Magazine Articles",
link: `${baseUrl}${route}`,
item: items,
description: "Latest Articles on Smashingmagazine.com",
logo: "https://www.smashingmagazine.com/images/favicon/apple-touch-icon.png",
icon: "https://www.smashingmagazine.com/images/favicon/favicon.svg",
language: "en-us"
};
}
//#endregion
export { route };