update 27/01

This commit is contained in:
2026-01-27 17:02:26 +07:00
parent ddb60bd5f9
commit f1f925bab1
21 changed files with 1716 additions and 12373 deletions

View File

@@ -1,6 +1,3 @@
import { ReactNode } from 'react';
// Add tất cả sp trong data product vào 1 mảng
import { productList } from '@/data/products';
@@ -55,4 +52,24 @@ export function calculateDiscount(
) {
if (price <= 0 || marketPrice <= price) return 0;
return Math.ceil(((marketPrice - price) / marketPrice) * 100);
}
}
export function formatArticleTime(article_time:string) {
let day: string;
let month: string;
let year: string;
if (article_time.toLowerCase().includes('hôm nay')) {
const time = new Date();
day = (time.getDate() <= 9) ? '0' + time.getDate() : String(time.getDate());
month = (time.getMonth()+1 <= 9) ? '0' + (time.getMonth()+1) : String(time.getMonth()+1);
year = String(time.getFullYear());
} else {
day = article_time.substring(0,2);
month = article_time.substring(3,5);
year = article_time.substring(6,10);
}
return `${day}/${month}/${year}`;
}