PopularArticles
Виджет с популярными статьями (articles) из справочника в LiveBar
Props
title
- type:
string - default:
'Статьи справочника'
Заголовок блока
articles
- type:
PopularArticlesArticle[] - required:
true
Темы справочника
Types
export type PopularArticlesArticle = {
id: number;
slug: string;
topic: string;
postedAt: Date;
viewsCount: number;
dailyViewsCount: number;
};
Test data
import { testArticle } from './article/test-data';
import type { PopularArticlesArticle } from './types';
export const testTitle = 'Test title';
export const testMoreLink = '/test-more-link';
export const testArticles: PopularArticlesArticle[] = [
{ ...testArticle, id: 1 },
{ ...testArticle, id: 2 },
{ ...testArticle, id: 3 },
];
import type { PopularArticlesArticle } from '../types';
export const testArticle: PopularArticlesArticle = {
id: 5809,
topic: 'Технические работы – ноябрь 2022',
postedAt: new Date(1667284793000),
viewsCount: 1035,
dailyViewsCount: 5,
slug: '5809-tehnicheskie-raboty-noyabr-2022',
};