1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

limit description preview length

This commit is contained in:
Matthias Kretschmann 2020-10-06 14:44:33 +02:00
parent fb9a03771f
commit 54b92aa514
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 42 additions and 2 deletions

View File

@ -28,6 +28,16 @@
margin-bottom: calc(var(--spacer) / 12);
}
.description {
position: relative;
}
.toggle {
position: absolute;
bottom: 0.15rem;
right: 0;
}
.asset {
display: grid;
grid-template-columns: 1fr 4fr;

View File

@ -1,4 +1,4 @@
import React, { ReactElement } from 'react'
import React, { FormEvent, ReactElement, useState } from 'react'
import { File as FileMetadata } from '@oceanprotocol/lib/dist/node/ddo/interfaces/File'
import Markdown from '../../atoms/Markdown'
import Tags from '../../atoms/Tags'
@ -15,12 +15,42 @@ export default function Preview({
}: {
values: Partial<MetadataPublishForm>
}): ReactElement {
const [fullDescription, setFullDescription] = useState<boolean>(false)
const textLimit = 500 // string.length
const description =
fullDescription === true
? values.description
: `${values.description.substring(0, textLimit)}${
values.description.length > textLimit ? `...` : ''
}`
function handleDescriptionToggle(e: FormEvent<HTMLButtonElement>) {
e.preventDefault()
setFullDescription(!fullDescription)
}
return (
<div className={styles.preview}>
<h2 className={styles.previewTitle}>Preview</h2>
<header>
{values.name && <h3 className={styles.title}>{values.name}</h3>}
{values.description && <Markdown text={values.description} />}
{values.description && (
<div className={styles.description}>
<Markdown text={description} />
{values.description.length > textLimit && (
<Button
style="text"
size="small"
onClick={handleDescriptionToggle}
className={styles.toggle}
>
{fullDescription === true ? 'Close' : 'Expand'}
</Button>
)}
</div>
)}
<div className={styles.asset}>
{values.files?.length > 0 && typeof values.files !== 'string' && (