|
|
import { html as toHtml } from '../indices-to-html'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const toBlocks = ( text ) => |
|
|
text.split( '\n' ).reduce( |
|
|
( { out, inFence, inList }, raw, index, src ) => { |
|
|
if ( ! raw ) { |
|
|
if ( ! src[ index + 1 ] ) { |
|
|
return { out, inFence, inList }; |
|
|
} |
|
|
return { |
|
|
out: out + '<br />', |
|
|
inFence, |
|
|
inList, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
const skipRegex = /(blockquote|ol|ul|li|div)(.*)>/i; |
|
|
const shouldSkipWrap = skipRegex.test( raw ); |
|
|
if ( shouldSkipWrap ) { |
|
|
return { |
|
|
out: out + raw, |
|
|
inFence, |
|
|
inList, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( /^(```|“`)[a-z1-9]*\s*$/i.test( raw ) ) { |
|
|
|
|
|
if ( ! inFence ) { |
|
|
return { |
|
|
out: out + '<pre><code>', |
|
|
inFence: true, |
|
|
inList, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
return { |
|
|
out: out + '</code></pre>', |
|
|
inFence: false, |
|
|
inList, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
if ( inFence ) { |
|
|
return { |
|
|
out: out + raw + '\n', |
|
|
inFence, |
|
|
inList, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const defined = /^[\w\s-_]+:/.test( raw ) |
|
|
? `<strong>${ raw.split( ':' )[ 0 ] }:</strong>${ raw.replace( /^[^:]+:/, '' ) }` |
|
|
: raw; |
|
|
|
|
|
|
|
|
const coded = defined.replace( /`([^`]+)`/, '<code>$1</code>' ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( /^\s*[*\-\u2012-\u2015\u2022]\s/.test( coded ) ) { |
|
|
return { |
|
|
out: |
|
|
out + |
|
|
( inList ? '' : '<ul class="wpnc__body-list">' ) + |
|
|
`<li>${ coded.replace( /^\s*[*\-\u2012-\u2015\u2022]\s/, '' ) }</li>`, |
|
|
inFence, |
|
|
inList: true, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( /^\s*x\s/i.test( coded ) ) { |
|
|
return { |
|
|
out: |
|
|
out + |
|
|
( inList ? '' : '<ul class="wpnc__body-todo">' ) + |
|
|
`<li class="wpnc__todo-done">${ coded.replace( /^\s*x\s/i, '' ) }</li>`, |
|
|
inFence, |
|
|
inList: true, |
|
|
}; |
|
|
} |
|
|
|
|
|
if ( /^\s*o\s/i.test( coded ) ) { |
|
|
return { |
|
|
out: |
|
|
out + |
|
|
( inList ? '' : '<ul class="wpnc__body-todo">' ) + |
|
|
`<li class="wpnc__todo-not-done">${ coded.replace( /^\s*o\s/i, '' ) }</li>`, |
|
|
inFence, |
|
|
inList: true, |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return { |
|
|
out: out + ( inList ? '</ul>' : '' ) + `<div>${ coded }</div>`, |
|
|
inFence, |
|
|
inList: false, |
|
|
}; |
|
|
}, |
|
|
{ out: '', inFence: false, inList: false } |
|
|
).out; |
|
|
|
|
|
export function internalP( html ) { |
|
|
return html.split( '\n\n' ).map( ( chunk, i ) => { |
|
|
const key = `block-text-${ i }-${ chunk.length }-${ chunk.slice( 0, 3 ) }-${ chunk.slice( |
|
|
-3 |
|
|
) }`; |
|
|
const blocks = toBlocks( chunk ); |
|
|
|
|
|
return ( |
|
|
<div |
|
|
key={ key } |
|
|
// eslint-disable-next-line react/no-danger |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: blocks, |
|
|
} } |
|
|
/> |
|
|
); |
|
|
} ); |
|
|
} |
|
|
|
|
|
export function p( html, className ) { |
|
|
if ( undefined === className ) { |
|
|
className = 'wpnc__paragraph'; |
|
|
} |
|
|
const blocks = toBlocks( html ); |
|
|
|
|
|
const result = ( |
|
|
<div |
|
|
className={ className } |
|
|
// eslint-disable-next-line react/no-danger |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: blocks, |
|
|
} } |
|
|
/> |
|
|
); |
|
|
return result; |
|
|
} |
|
|
|
|
|
export const pSoup = ( items ) => items.map( toHtml ).map( internalP ); |
|
|
|
|
|
export function getSignature( blocks, note ) { |
|
|
if ( ! blocks || ! blocks.length ) { |
|
|
return []; |
|
|
} |
|
|
|
|
|
return blocks.map( function ( block ) { |
|
|
let type = 'text'; |
|
|
let id = null; |
|
|
|
|
|
if ( 'undefined' !== typeof block.type ) { |
|
|
type = block.type; |
|
|
} |
|
|
|
|
|
if ( note && note.meta && note.meta.ids && note.meta.ids.reply_comment ) { |
|
|
if ( |
|
|
block.ranges && |
|
|
block.ranges.length > 1 && |
|
|
block.ranges[ 1 ].id === note.meta.ids.reply_comment |
|
|
) { |
|
|
type = 'reply'; |
|
|
id = block.ranges[ 1 ].id; |
|
|
} |
|
|
} |
|
|
|
|
|
if ( |
|
|
'undefined' === typeof block.meta || |
|
|
'undefined' === typeof block.meta.ids || |
|
|
Object.keys( block.meta.ids ).length < 1 |
|
|
) { |
|
|
return { type: type, id: id }; |
|
|
} |
|
|
|
|
|
if ( 'undefined' !== typeof block.meta.ids.prompt ) { |
|
|
type = 'prompt'; |
|
|
id = block.meta.ids.prompt; |
|
|
} else if ( 'undefined' !== typeof block.meta.ids.comment ) { |
|
|
type = 'comment'; |
|
|
id = block.meta.ids.comment; |
|
|
} else if ( 'undefined' !== typeof block.meta.ids.post ) { |
|
|
type = 'post'; |
|
|
id = block.meta.ids.post; |
|
|
} else if ( 'undefined' !== typeof block.meta.ids.user ) { |
|
|
type = 'user'; |
|
|
id = block.meta.ids.user; |
|
|
} |
|
|
|
|
|
return { type: type, id: id }; |
|
|
} ); |
|
|
} |
|
|
|
|
|
export function formatString() { |
|
|
const args = [].slice.apply( arguments ); |
|
|
const str = args.shift(); |
|
|
|
|
|
return str.replace( /{(\d+)}/g, function ( match, number ) { |
|
|
return typeof args[ number ] !== 'undefined' ? args[ number ] : match; |
|
|
} ); |
|
|
} |
|
|
|
|
|
export function zipWithSignature( blocks, note ) { |
|
|
const signature = getSignature( blocks, note ); |
|
|
|
|
|
return blocks.map( function ( block, i ) { |
|
|
return { |
|
|
block: block, |
|
|
signature: signature[ i ], |
|
|
}; |
|
|
} ); |
|
|
} |
|
|
|
|
|
export const validURL = |
|
|
/^(?:http(?:s?):\/\/|~\/|\/)?(?:\w+:\w+@)?((?:(?:[-\w\d{1-3}]+\.)+(?:com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|edu|co\.uk|ac\.uk|it|fr|tv|museum|asia|local|travel|blog|[a-z]{2}))|((\b25[0-5]\b|\b[2][0-4][0-9]\b|\b[0-1]?[0-9]?[0-9]\b)(\.(\b25[0-5]\b|\b[2][0-4][0-9]\b|\b[0-1]?[0-9]?[0-9]\b)){3}))(?::[\d]{1,5})?(?:(?:(?:\/(?:[-\w~!$+|.,=]|%[a-f\d]{2})+)+|\/)+|\?|#)?(?:(?:\?(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=?(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)(?:&(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=?(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)*)*(?:#(?:[-\w~!$ |/.,*:;=]|%[a-f\d]{2})*)?$/i; |
|
|
|
|
|
export const linkProps = ( note, block ) => { |
|
|
const { site: noteSite, comment, post } = note?.meta?.ids ?? {}; |
|
|
const { site: blockSite } = block?.meta?.ids ?? {}; |
|
|
|
|
|
const site = block ? blockSite : noteSite; |
|
|
|
|
|
let type; |
|
|
|
|
|
if ( block ) { |
|
|
type = 'site'; |
|
|
} else if ( comment ) { |
|
|
type = 'comment'; |
|
|
} else if ( post ) { |
|
|
type = 'post'; |
|
|
} |
|
|
|
|
|
|
|
|
if ( type === 'site' && ! site ) { |
|
|
return {}; |
|
|
} |
|
|
|
|
|
switch ( type ) { |
|
|
case 'site': |
|
|
case 'post': |
|
|
case 'comment': |
|
|
return Object.fromEntries( |
|
|
[ |
|
|
[ 'data-link-type', type ], |
|
|
[ 'data-site-id', site ], |
|
|
[ 'data-post-id', post ], |
|
|
[ 'data-comment-id', comment ], |
|
|
].filter( ( [ , val ] ) => !! val ) |
|
|
); |
|
|
default: |
|
|
return {}; |
|
|
} |
|
|
}; |
|
|
|