Skip to content

Commit

Permalink
fix: sửa lỗi gặp phải khi cấu hình tập tin được khai báo nhưng không …
Browse files Browse the repository at this point in the history
…thực sự được khai báo gì cả
  • Loading branch information
ooker777 committed Oct 8, 2024
1 parent 103e48c commit 10d9cf8
Show file tree
Hide file tree
Showing 11 changed files with 8,102 additions and 4,991 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ const tests: [string, BàiĐăngChưaCóIdVàPhươngThứcTạo | ThôngTinNơi
["https://slide.xn--qucu-hr5aza.cc/%C4%90%C3%A1p%20%E1%BB%A9ng%20nhu%20c%E1%BA%A7u%20doanh%20nghi%E1%BB%87p/VNPAY.html", {}],
["https://conversion.sg.larksuite.com/share/base/form/shrlgMhHV7o2tfvi8p3p4cn5llb", {}],
["https://ducanhwriter.substack.com/p/ai-sang-tac-van-chuong/comments#comment-69418680", {}],
["https://www.facebook.com/quacau.sphere/posts/pfbid02aDMNAynJcwmRKMkcqDevWL321zWDibviKexY9D3UmvhZFP55neQ3mwHB7wKuztoXl", {}],
];

for (const test of tests) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export type TênTậpTin = typeof danhSáchTậpTin[number];
export type TênNềnTảngTậpTin = TênTậpTin;
type LoạiNơiĐăngTậpTin = [TênTậpTin];
type TênNơiĐăngTậpTin = [string];
export type CấuHìnhTậpTin = Record<TênTậpTin, string[]> | null;
export type CấuHìnhTậpTin = Record<TênTậpTin, string[] | null> | null;

/**
* SaaS
Expand Down
3 changes: 2 additions & 1 deletion Code chạy trên local, server, KV/Nơi đăng/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ async function tạoDanhSáchTậpTin(cấuHìnhNơiĐăng: CấuHìnhNơiĐăng
const cấuHìnhTậpTin = cấuHìnhNơiĐăng["Tập tin"];
const danhSáchTậpTin: ThôngTinNơiĐăngChưaCóId[] = [];
if (!cấuHìnhTậpTin) return [];
for (const [địnhĐạngTậpTin, danhSáchTênNơiĐăng] of Object.entries(cấuHìnhTậpTin) as [TênTậpTin, string[]][]) {
for (const [địnhĐạngTậpTin, danhSáchTênNơiĐăng] of Object.entries(cấuHìnhTậpTin) as [TênTậpTin, string[] | null][]) {
if (!danhSáchTênNơiĐăng) return [];
for (const tênNơiĐăngUrl of danhSáchTênNơiĐăng) {
const [tênNơiĐăng, url] = await táchUrlHoặcEmailĐầuTiênTrongChuỗi(tênNơiĐăngUrl);
danhSáchTậpTin.push({
Expand Down
10,284 changes: 5,847 additions & 4,437 deletions Cấu hình và dữ liệu/Danh sách bài đăng tạo trên local.json

Large diffs are not rendered by default.

Loading

0 comments on commit 10d9cf8

Please sign in to comment.