0b41fc041a
* [New Feature] Comment Emotes (#125) * Refactor form-field * Create new Emote Menu * Add Emotes * Add Emote Selector and Emote Comment creation ability * Fix and Split CSS * [New Feature] Stickers (#131) * Refactor filePrice * Refactor Wallet Tip Components * Add backend sticker support for comments * Add stickers * Refactor commentCreate * Add Sticker Selector and sticker comment creation * Add stickers display to comments and hyperchats * Fix wrong checks for total Super Chats * Stickers/emojis fall out / improvements (#220) * Fix error logs * Improve LBC sticker flow/clarity * Show inline error if custom sticker amount below min * Sort emojis alphabetically * Improve loading of Images * Improve quality and display of emojis and fix CSS * Display both USD and LBC prices * Default to LBC tip if creator can't receive USD * Don't clear text-field after sticker is sent * Refactor notification component * Handle notifications * Don't show profile pic on sticker livestream comments * Change Sticker icon * Fix wording and number rounding * Fix blurring emojis * Disable non functional emote buttons * new Stickers! (#248) * Add new stickers (#347) * Fix cancel sending sticker (#447) * Refactor scrollbar CSS for portal components outside of main Refactor channelMention suggestions into new textareaSuggestions component Install @mui/material packages Move channel mentioning to use @mui/Autocomplete combobox without search functionality Add support for suggesting Emotes while typing ':' Improve label to display matching term Add back and improved support for searching while mentioning Add support for suggesting emojis Fix non concatenated strings Add key to groups and options Fix dispatch props Fix Popper positioning to be consistent Fix and Improve searching Add back support for Winning Uri Filter default emojis with the same name as emotes Remove unused topSuggestion component Fix text color on darkmode Fix livestream updating state from both websocket and reducer and causing double of the same comments to appear Fix blur and focus commentCreate events Fix no name after @ error * desktop tweaks Co-authored-by: saltrafael <76502841+saltrafael@users.noreply.github.com> Co-authored-by: Thomas Zarebczan <tzarebczan@users.noreply.github.com> Co-authored-by: Rafael <rafael.saes@odysee.com>
272 lines
7.7 KiB
JavaScript
272 lines
7.7 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import classnames from 'classnames';
|
|
import remark from 'remark';
|
|
import remarkAttr from 'remark-attr';
|
|
import remarkStrip from 'strip-markdown';
|
|
import remarkEmoji from 'remark-emoji';
|
|
import remarkBreaks from 'remark-breaks';
|
|
import remarkFrontMatter from 'remark-frontmatter';
|
|
import reactRenderer from 'remark-react';
|
|
import MarkdownLink from 'component/markdownLink';
|
|
import defaultSchema from 'hast-util-sanitize/lib/github.json';
|
|
import { formattedLinks, inlineLinks } from 'util/remark-lbry';
|
|
import { formattedTimestamp, inlineTimestamp } from 'util/remark-timestamp';
|
|
import { formattedEmote, inlineEmote } from 'util/remark-emote';
|
|
import ZoomableImage from 'component/zoomableImage';
|
|
import { CHANNEL_STAKED_LEVEL_VIDEO_COMMENTS } from 'config';
|
|
import Button from 'component/button';
|
|
import * as ICONS from 'constants/icons';
|
|
import { parse } from 'node-html-parser';
|
|
import OptimizedImage from 'component/optimizedImage';
|
|
|
|
const RE_EMOTE = /:\+1:|:-1:|:[\w-]+:/;
|
|
|
|
function isEmote(title, src) {
|
|
return title && RE_EMOTE.test(title) && src.includes('static.odycdn.com/emoticons');
|
|
}
|
|
|
|
type SimpleTextProps = {
|
|
children?: React.Node,
|
|
};
|
|
|
|
type SimpleLinkProps = {
|
|
href?: string,
|
|
title?: string,
|
|
children?: React.Node,
|
|
};
|
|
|
|
type ImageLinkProps = {
|
|
src: string,
|
|
title?: string,
|
|
alt?: string,
|
|
helpText?: string,
|
|
};
|
|
|
|
type MarkdownProps = {
|
|
strip?: boolean,
|
|
content: ?string,
|
|
simpleLinks?: boolean,
|
|
noDataStore?: boolean,
|
|
className?: string,
|
|
parentCommentId?: string,
|
|
isMarkdownPost?: boolean,
|
|
disableTimestamps?: boolean,
|
|
stakedLevel?: number,
|
|
};
|
|
|
|
// ****************************************************************************
|
|
// ****************************************************************************
|
|
|
|
const SimpleText = (props: SimpleTextProps) => {
|
|
return <span>{props.children}</span>;
|
|
};
|
|
|
|
// ****************************************************************************
|
|
// ****************************************************************************
|
|
|
|
const SimpleLink = (props: SimpleLinkProps) => {
|
|
const { title, children, href } = props;
|
|
|
|
if (!href) {
|
|
return children || null;
|
|
}
|
|
|
|
if (!href.startsWith('lbry:/')) {
|
|
return (
|
|
<a href={href} title={title} target={'_blank'} rel={'noreferrer noopener'}>
|
|
{children}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
const [uri, search] = href.split('?');
|
|
const urlParams = new URLSearchParams(search);
|
|
const embed = urlParams.get('embed');
|
|
|
|
if (embed) {
|
|
// Decode this since users might just copy it from the url bar
|
|
const decodedUri = decodeURI(uri);
|
|
return (
|
|
<div className="embed__inline-button-preview">
|
|
<pre>{decodedUri}</pre>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Dummy link (no 'href')
|
|
return <a title={title}>{children}</a>;
|
|
};
|
|
|
|
// ****************************************************************************
|
|
// ****************************************************************************
|
|
|
|
const SimpleImageLink = (props: ImageLinkProps) => {
|
|
const { src, title, alt, helpText } = props;
|
|
|
|
if (!src) {
|
|
return null;
|
|
}
|
|
|
|
if (isEmote(title, src)) {
|
|
return <OptimizedImage src={src} title={title} className="emote" waitLoad loading="lazy" />;
|
|
}
|
|
|
|
return (
|
|
<Button
|
|
button="link"
|
|
iconRight={ICONS.EXTERNAL}
|
|
label={title || alt || src}
|
|
title={helpText || title || alt || src}
|
|
className="button--external-link"
|
|
href={src}
|
|
/>
|
|
);
|
|
};
|
|
|
|
// ****************************************************************************
|
|
// ****************************************************************************
|
|
|
|
// Use github sanitation schema
|
|
const schema = { ...defaultSchema };
|
|
|
|
// Extend sanitation schema to support lbry protocol
|
|
schema.protocols.href.push('lbry');
|
|
schema.attributes.a.push('embed');
|
|
|
|
const REPLACE_REGEX = /(<iframe\s+src=["'])(.*?(?=))(["']\s*><\/iframe>)/g;
|
|
|
|
// ****************************************************************************
|
|
// ****************************************************************************
|
|
|
|
function isStakeEnoughForPreview(stakedLevel) {
|
|
return !stakedLevel || stakedLevel >= CHANNEL_STAKED_LEVEL_VIDEO_COMMENTS;
|
|
}
|
|
|
|
// ****************************************************************************
|
|
// ****************************************************************************
|
|
|
|
const MarkdownPreview = (props: MarkdownProps) => {
|
|
const {
|
|
content,
|
|
strip,
|
|
simpleLinks,
|
|
noDataStore,
|
|
className,
|
|
parentCommentId,
|
|
isMarkdownPost,
|
|
disableTimestamps,
|
|
stakedLevel,
|
|
} = props;
|
|
|
|
const strippedContent = content
|
|
? content.replace(REPLACE_REGEX, (iframeHtml) => {
|
|
// Let the browser try to create an iframe to see if the markup is valid
|
|
let lbrySrc;
|
|
try {
|
|
let p = parse(iframeHtml);
|
|
const tag = p.getElementsByTagName('iframe');
|
|
const s = tag[0];
|
|
lbrySrc = s && s.getAttribute('src');
|
|
} catch (e) {}
|
|
|
|
if (lbrySrc && lbrySrc.startsWith('lbry://')) {
|
|
return lbrySrc;
|
|
}
|
|
|
|
return iframeHtml;
|
|
})
|
|
: '';
|
|
|
|
const initialQuote = strippedContent.split(' ').find((word) => word.length > 0 || word.charAt(0) === '>');
|
|
let stripQuote;
|
|
if (initialQuote && initialQuote.charAt(0) === '>') stripQuote = true;
|
|
|
|
const remarkOptions: Object = {
|
|
sanitize: schema,
|
|
fragment: React.Fragment,
|
|
remarkReactComponents: {
|
|
a: noDataStore
|
|
? SimpleLink
|
|
: (linkProps) => (
|
|
<MarkdownLink
|
|
{...linkProps}
|
|
parentCommentId={parentCommentId}
|
|
isMarkdownPost={isMarkdownPost}
|
|
simpleLinks={simpleLinks}
|
|
allowPreview={isStakeEnoughForPreview(stakedLevel)}
|
|
/>
|
|
),
|
|
// Workaraund of remarkOptions.Fragment
|
|
div: React.Fragment,
|
|
img: (imgProps) =>
|
|
isStakeEnoughForPreview(stakedLevel) && !isEmote(imgProps.title, imgProps.src) ? (
|
|
ZoomableImage
|
|
) : (
|
|
<SimpleImageLink src={imgProps.src} alt={imgProps.alt} title={imgProps.title} />
|
|
),
|
|
},
|
|
};
|
|
|
|
const remarkAttrOpts = {
|
|
scope: 'extended',
|
|
elements: ['link'],
|
|
extend: { link: ['embed'] },
|
|
defaultValue: true,
|
|
};
|
|
|
|
// Strip all content and just render text
|
|
if (strip || stripQuote) {
|
|
// Remove new lines and extra space
|
|
remarkOptions.remarkReactComponents.p = SimpleText;
|
|
return stripQuote ? (
|
|
<span dir="auto" className="markdown-preview">
|
|
<blockquote>
|
|
{
|
|
remark()
|
|
.use(remarkStrip)
|
|
.use(remarkFrontMatter, ['yaml'])
|
|
.use(reactRenderer, remarkOptions)
|
|
.processSync(content).contents
|
|
}
|
|
</blockquote>
|
|
</span>
|
|
) : (
|
|
<span dir="auto" className="markdown-preview">
|
|
{
|
|
remark()
|
|
.use(remarkStrip)
|
|
.use(remarkFrontMatter, ['yaml'])
|
|
.use(reactRenderer, remarkOptions)
|
|
.processSync(content).contents
|
|
}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div dir="auto" className={classnames('markdown-preview', className)}>
|
|
{
|
|
remark()
|
|
.use(remarkAttr, remarkAttrOpts)
|
|
// Remark plugins for lbry urls
|
|
// Note: The order is important
|
|
.use(formattedLinks)
|
|
.use(inlineLinks)
|
|
.use(disableTimestamps || isMarkdownPost ? null : inlineTimestamp)
|
|
.use(disableTimestamps || isMarkdownPost ? null : formattedTimestamp)
|
|
// Emojis
|
|
.use(inlineEmote)
|
|
.use(formattedEmote)
|
|
.use(remarkEmoji)
|
|
// Render new lines without needing spaces.
|
|
.use(remarkBreaks)
|
|
.use(remarkFrontMatter, ['yaml'])
|
|
.use(reactRenderer, remarkOptions)
|
|
.processSync(strippedContent).contents
|
|
}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MarkdownPreview;
|