Skip to content

Commit

Permalink
feat: new router logrocket (#17533)
Browse files Browse the repository at this point in the history
* feat: new router logrocket

* fix: router

* fix:article edit

* fix:remove unused file

---------

Co-authored-by: 钱巍 <[email protected]>
  • Loading branch information
findwei and 钱巍 authored Nov 15, 2024
1 parent 091ed08 commit 44d1333
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
71 changes: 71 additions & 0 deletions lib/routes/logrocket/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
import { parseDate } from '@/utils/parse-date';
import ofetch from '@/utils/ofetch'; // 统一使用的请求库
import { load } from 'cheerio'; // 类似 jQuery 的 API HTML 解析器
import { Route } from '@/types';
import cache from '@/utils/cache';
// import { getCurrentPath } from '@/utils/helpers';
// import { art } from '@/utils/render';
// import path from 'node:path';
// const __dirname = getCurrentPath(import.meta.url);
export const route: Route = {
path: '/:type',
categories: ['blog'],
example: '/dev',
parameters: { type: 'dev | product-management | ux-design' },
radar: [
{
source: ['blog.logrocket.com'],
},
],
name: 'blog.logrocket',
maintainers: ['findwei'],
handler,
url: 'blog.logrocket.com/',
};
async function handler(ctx) {
const type = ctx.req.param('type');
const link = 'https://blog.logrocket.com/';
let title = 'Dev';
if (type === 'product-management') {
title = 'Product Management';
} else if (type === 'ux-design') {
title = 'UX Design';
}
const response = await ofetch(`${link}${type}`);
const $ = load(response);
const list = $('div.post-list .post-card')
.toArray()
.map((item) => {
item = $(item);
const a = item.find('a').first();
const title = item.find('.post-card-title').first();
return {
title: title.text(),
link: a.attr('href'),
pubDate: parseDate(item.find('.post-card-author-name').next().text().split(' ⋅ ')[0], 'MMM D, YYYY'),
author: item.find('.post-card-author-name').text(),
};
});
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const response = await ofetch(item.link);
const $ = load(response);
//
$('div.content-max-width .sidebar-container div.code-block').remove();
item.description = $('div.content-max-width .sidebar-container').html();
// item.description = art(path.join(__dirname, 'templates/description.art'), {
// // header: $('#post-header').html(),
// description: $('div.content-max-width .the-content-container').remove('.lr-content div.code-block.code-block-77').remove('.lr-content .code-block.code-block-57').html(),
// });
return item;
})
)
);
return {
title: `logrocket-${title}`,
link,
description: `logrocket-${title}`,
item: items,
};
}
7 changes: 7 additions & 0 deletions lib/routes/logrocket/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: 'logrocket blog',
url: 'blog.logrocket.com',
lang: 'en',
};

0 comments on commit 44d1333

Please sign in to comment.