// eslint-disable-next-line import/prefer-default-export export function generatePostHtml(postObject, userObject) { const postText = postObject.text !== null ? `

${postObject.text}

` : ""; const postImg = postObject.img !== null ? `Post image` : ""; const options = { year: "numeric", month: "long", day: "numeric", hour: "numeric", minute: "numeric", }; const postCreatedDateTime = new Date(postObject.createdDateTime); const editButtonHtml = ` Редактировать`; const deleteButtonHtml = ` Удалить`; const html = `
${userObject.firstName} ${userObject.lastName}
${postCreatedDateTime.toLocaleDateString("ru-RU", options)}
${postText} ${postImg}
123
123
Share
`; return html; }