-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: new router logrocket * fix: router * fix:article edit * fix:remove unused file --------- Co-authored-by: 钱巍 <[email protected]>
- Loading branch information
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
}; |