import { type LinkDocsContent } from './LinkDocsContent';
const HTML = `
Дата представления в Банк России: 14.08.2023
Дата размещения на сайте АО «Россельхозбанк»: 14.08.2023
`;
export const linkDocsContentExample: LinkDocsContent = {
title: 'Дополнительные документы',
description: 'Ответы на часто задаваемые вопросы',
documents: [
{
docType: 'Attachment',
text: 'target self',
attachment: { src: '/abc1/cooldoc.doc/content?content' },
target: '_self',
data: [],
},
{
docType: 'Link',
text: 'target blank',
href: '/abc2/wtf.rtf',
fileFormat: 'rtf',
target: '_blank',
},
{ docType: 'Link', text: 'GlassIcon', href: '/abc3/map.jpeg', fileFormat: 'jpeg' },
{ docType: 'Link', text: 'no icon', href: '/abc4', fileFormat: 'rtf' },
{ docType: 'Link', text: 'документ 5', href: '/abc5' },
{ docType: 'Link', text: 'документ 6', href: '/abc6/abc.pdf', fileFormat: 'pdf' },
{ docType: 'Link', text: 'Text text text', href: '/abc7/yolo.png', fileFormat: 'png' },
{
docType: 'Link',
text: 'Some more generic text to stretch item, and even more, more text, and more generic text, and even more, more text, and even more',
href: '/abc8/archive.zip',
fileFormat: 'zip',
fileSize: '2.3МБ',
__html: HTML,
},
{
docType: 'Link',
text: 'И ещё немного текста',
href: '/abc9/rarniw.rar',
fileFormat: 'rar',
fileSize: '666МБ',
},
{
docType: 'Link',
text: 'Форматируем, сортируем, смотрим как отображается...',
href: '/abc10/',
fileFormat: 'pdf',
fileSize: '65ГБ',
},
{
docType: 'Link',
text: 'За 6 месяцев 2023 года',
__html: HTML,
href: '4a1c3999-5738-4e7c-921f-e29367f9c36a',
target: '_self',
reportSource: {
$ref: '/wcms-resources/financial-consolidated-statement-data.json',
},
},
{
docType: 'Link',
text: 'За 2022 год',
__html: HTML,
href: 'https://www.rshb.ru/download-file/349021/',
target: '_self',
reportSource: {
$ref: '/wcms-resources/financial-consolidated-statement-data.json',
},
},
],
};