index.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. /*
  2. * md ast - pluggable markdown parser
  3. */
  4. const syntax = {
  5. strike: {
  6. paired: true,
  7. recursive: true,
  8. startRegexp: /\~\~\S.*/,
  9. endRegexp: /\~\~\W/,
  10. content: {
  11. start: {
  12. point: 'start',
  13. offset: 2
  14. },
  15. end: {
  16. point: 'start',
  17. offset: 0
  18. }
  19. },
  20. begin: 0,
  21. forward: {
  22. point: 'endEnd', //start, startEnd, end, endEnd
  23. offset: -1
  24. }
  25. },
  26. bold: {
  27. paired: true,
  28. recursive: true,
  29. startRegexp: /\*\*\S.*/,
  30. endRegexp: /\*\*\W/,
  31. content: {
  32. start: {
  33. point: 'start',
  34. offset: 2
  35. },
  36. end: {
  37. point: 'start',
  38. offset: 0
  39. }
  40. },
  41. begin: 0,
  42. forward: {
  43. point: 'endEnd', //start, startEnd, end, endEnd
  44. offset: -1
  45. }
  46. },
  47. bold2: {
  48. paired: true,
  49. recursive: true,
  50. startRegexp: /\s__\S.*/,
  51. endRegexp: /__\W/,
  52. content: {
  53. start: {
  54. point: 'start',
  55. offset: 3
  56. },
  57. end: {
  58. point: 'start',
  59. offset: 0
  60. }
  61. },
  62. begin: 1,
  63. forward: {
  64. point: 'endEnd', //start, startEnd, end, endEnd
  65. offset: -1
  66. }
  67. },
  68. italic: {
  69. paired: true,
  70. recursive: true,
  71. startRegexp: /\*\S.*/,
  72. endRegexp: /\S\*[^*]/,
  73. content: {
  74. start: {
  75. point: 'start',
  76. offset: 1
  77. },
  78. end: {
  79. point: 'start',
  80. offset: 1
  81. }
  82. },
  83. begin: 0,
  84. forward: {
  85. point: 'endEnd', //start, startEnd, end, endEnd
  86. offset: -1
  87. }
  88. },
  89. italic2: {
  90. paired: true,
  91. recursive: true,
  92. startRegexp: /\s_\S.*/,
  93. endRegexp: /\S_\W/,
  94. content: {
  95. start: {
  96. point: 'start',
  97. offset: 2
  98. },
  99. end: {
  100. point: 'start',
  101. offset: 1
  102. }
  103. },
  104. begin: 1,
  105. forward: {
  106. point: 'endEnd', //start, startEnd, end, endEnd
  107. offset: -1
  108. }
  109. },
  110. root: {
  111. paired: true,
  112. recursive: true,
  113. startRegexp: /^/,
  114. endRegexp: /$/,
  115. content: {
  116. start: {
  117. point: 'start',
  118. offset: 1
  119. },
  120. end: {
  121. point: 'end',
  122. offset: 0
  123. }
  124. },
  125. begin: 0,
  126. forward: {
  127. point: 'endEnd', //start, startEnd, end, endEnd
  128. offset: -1
  129. }
  130. },
  131. heading6: {
  132. paired: true,
  133. recursive: true,
  134. startRegexp: /\n######[ \t]*(.*)\n/,
  135. endRegexp: /\n#\s/,
  136. content: {
  137. start: {
  138. point: 'end',
  139. offset: -1
  140. },
  141. end: {
  142. point: 'start',
  143. offset: 0
  144. }
  145. },
  146. begin: 0,
  147. forward: {
  148. point: 'end', //start, startEnd, end, endEnd
  149. offset: 0
  150. },
  151. title: {
  152. //index: 1,
  153. recursive: true,
  154. },
  155. onbuild(md, mdTags, buildAST){ //this = {tag: }
  156. }
  157. },
  158. heading5: {
  159. paired: true,
  160. recursive: true,
  161. startRegexp: /\n#####[ \t]*(.*)\n/,
  162. endRegexp: /\n#{1,5}\s/,
  163. content: {
  164. start: {
  165. point: 'end',
  166. offset: -1
  167. },
  168. end: {
  169. point: 'start',
  170. offset: 0
  171. }
  172. },
  173. begin: 0,
  174. forward: {
  175. point: 'end', //start, startEnd, end, endEnd
  176. offset: 0
  177. },
  178. title: {
  179. //index: 1,
  180. recursive: true,
  181. },
  182. onbuild(md, mdTags, buildAST){ //this = {tag: }
  183. }
  184. },
  185. heading4: {
  186. paired: true,
  187. recursive: true,
  188. startRegexp: /\n####[ \t]*(.*)\n/,
  189. endRegexp: /\n#{1,4}\s/,
  190. content: {
  191. start: {
  192. point: 'end',
  193. offset: -1
  194. },
  195. end: {
  196. point: 'start',
  197. offset: 0
  198. }
  199. },
  200. begin: 0,
  201. forward: {
  202. point: 'end', //start, startEnd, end, endEnd
  203. offset: 0
  204. },
  205. title: {
  206. //index: 1,
  207. recursive: true,
  208. },
  209. onbuild(md, mdTags, buildAST){ //this = {tag: }
  210. }
  211. },
  212. heading3: {
  213. paired: true,
  214. recursive: true,
  215. startRegexp: /\n###[ \t]*(.*)\n/,
  216. endRegexp: /\n#{1,3}\s/,
  217. content: {
  218. start: {
  219. point: 'end',
  220. offset: -1
  221. },
  222. end: {
  223. point: 'start',
  224. offset: 0
  225. }
  226. },
  227. begin: 0,
  228. forward: {
  229. point: 'end', //start, startEnd, end, endEnd
  230. offset: 0
  231. },
  232. title: {
  233. //index: 1,
  234. recursive: true,
  235. },
  236. onbuild(md, mdTags, buildAST){ //this = {tag: }
  237. }
  238. },
  239. heading2: {
  240. paired: true,
  241. recursive: true,
  242. startRegexp: /\n##[ \t]*(.*)\n/,
  243. endRegexp: /\n#{1,2}\s/,
  244. content: {
  245. start: {
  246. point: 'end',
  247. offset: -1
  248. },
  249. end: {
  250. point: 'start',
  251. offset: 0
  252. }
  253. },
  254. begin: 0,
  255. forward: {
  256. point: 'end', //start, startEnd, end, endEnd
  257. offset: 0
  258. },
  259. title: {
  260. //index: 1,
  261. recursive: true,
  262. },
  263. onbuild(md, mdTags, buildAST){ //this = {tag: }
  264. }
  265. },
  266. heading1: {
  267. paired: true,
  268. recursive: true,
  269. startRegexp: /\n#[ \t]*(.*)\n/,
  270. endRegexp: /\n#\s/,
  271. content: {
  272. start: {
  273. point: 'end',
  274. offset: -1
  275. },
  276. end: {
  277. point: 'start',
  278. offset: 0
  279. }
  280. },
  281. begin: -1,
  282. forward: {
  283. point: 'end', //start, startEnd, end, endEnd
  284. offset: 0
  285. },
  286. title: {
  287. //index: 1,
  288. recursive: true,
  289. },
  290. onbuild(md, mdTags, buildAST){ //this = {tag: }
  291. }
  292. },
  293. code: {
  294. paired: true,
  295. recursive: false,
  296. startRegexp: /`/,
  297. endRegexp: /`/,
  298. content: {
  299. start: {
  300. point: 'start',
  301. offset: 1
  302. },
  303. end: {
  304. point: 'start',
  305. offset: 0
  306. }
  307. },
  308. begin: 0,
  309. forward: {
  310. point: 'end', //start, startEnd, end, endEnd
  311. offset: 1
  312. }
  313. },
  314. codeMultiLine: {
  315. paired: true,
  316. recursive: false,
  317. startRegexp: /\n```\s*\n/,
  318. endRegexp: /\n```\s*\n/,
  319. content:{
  320. start:{
  321. point: 'end',
  322. offset: 0
  323. },
  324. end:{
  325. point: 'start',
  326. offset: 0
  327. }
  328. },
  329. begin: 1,
  330. forward: {
  331. point: 'endEnd',
  332. offset: 0
  333. },
  334. },
  335. codeLanguage: {
  336. paired: true,
  337. recursive: false,
  338. startRegexp: /\n```(\w+)\s*\n/,
  339. endRegexp: /\n```\s*\n/,
  340. title: {
  341. recursive: false
  342. },
  343. content:{
  344. start:{
  345. point: 'end',
  346. offset: 0
  347. },
  348. end:{
  349. point: 'start',
  350. offset: 0
  351. }
  352. },
  353. begin: 1,
  354. forward: {
  355. point: 'endEnd',
  356. offset: 0
  357. },
  358. },
  359. unOrderedList: {
  360. indent: true,
  361. childName: 'unOrderedListItem',
  362. //paired: true,
  363. recursive: true,
  364. regexp: /-\s*\S/,
  365. content:{
  366. start:{
  367. point: 'end',
  368. offset: -1
  369. },
  370. end:{
  371. point: 'start',
  372. offset: 0
  373. }
  374. },
  375. begin: 1,
  376. forward: {
  377. point: 'end',
  378. offset: 0
  379. }
  380. },
  381. orderedList: {
  382. indent: true,
  383. childName: 'orderedListItem',
  384. //paired: true,
  385. recursive: true,
  386. regexp: /\d+\.\s*\S/,
  387. content:{
  388. start:{
  389. point: 'end',
  390. offset: -1
  391. },
  392. end:{
  393. point: 'start',
  394. offset: 0
  395. }
  396. },
  397. begin: 1,
  398. forward: {
  399. point: 'end',
  400. offset: 0
  401. }
  402. }
  403. }
  404. const indentRegexp = (regexp,count) => new RegExp(`\\n(\\s${count === undefined ? '*' : `{${count}}` })` + regexp.toString().slice(1,-1))
  405. const indentEndRegexp = (count) => new RegExp(`\\n(\\s${count === undefined ? '*' : `{0,${count}}` })\\S`)
  406. function findNearest(md, mdTags, offset=0){
  407. let nearest, nearestMatch = {index: Infinity};
  408. for (let [mdTag, {paired,
  409. startRegexp,
  410. regexp, indent}] of Object.entries(mdTags)) {
  411. if (mdTag === 'root') continue;
  412. regexp = startRegexp || regexp
  413. regexp = indent ? indentRegexp(regexp) : regexp
  414. let match = md.offsetMatch(offset, regexp)
  415. if (match && match.index < nearestMatch.index){
  416. nearestMatch = match
  417. nearest = mdTag
  418. }
  419. }
  420. return [nearest, nearestMatch]
  421. }
  422. //node:
  423. //{
  424. // tag: 'keyFromSyntax',
  425. // children: [String, Node]
  426. // parent: node
  427. //}
  428. //
  429. String.prototype.offsetMatch = function(offset, ...params){
  430. return this.slice(offset).match(...params)
  431. }
  432. Array.prototype.last = function(amount=-1){
  433. return this[this.length +amount]
  434. }
  435. String.prototype.cutIndent = function(indent){
  436. let lines = this.split('\n').map(line => line.slice(0, indent).match(/^\s*$/) ? line.slice(indent) : line)
  437. return lines.join('\n')
  438. }
  439. function buildAST(md, mdTags=syntax, offset=0, tree={tag: 'root'}, stack=[]){
  440. let currentNode = stack.last() || tree
  441. if (currentNode.tag === 'root') md = '\n' + md + '\n'
  442. currentNode.children = currentNode.children || []
  443. const { children } = currentNode
  444. let {indent, childName, title, recursive, regexp, endRegexp, content: {end: {offset: offsetEnd, point} }, forward } = mdTags[currentNode.tag]
  445. if (indent){
  446. if (currentNode.parent.tag !== currentNode.tag){ //li
  447. let { parent: {children: siblings} } = currentNode
  448. if (siblings.length > 1 && siblings.last(-2).tag === currentNode.tag){
  449. siblings.pop()
  450. currentNode = siblings.last()
  451. }
  452. const { children } = currentNode
  453. const indentLength = currentNode.startMatch[1].length
  454. console.log(indentLength)
  455. currentNode.indentLength = indentLength
  456. endRegexp = indentEndRegexp(indentLength)
  457. let endMatch = md.offsetMatch(offset, endRegexp) || {index: md.length +1, 0: 'zzz'}
  458. let listMD = md.slice(offset, endMatch.index + offset).cutIndent(currentNode.startMatch[0].length -1)
  459. debugger;
  460. const newNode = {tag: childName, startOffset: offset, parent: currentNode, startMatch: currentNode.startMatch}
  461. children.push(newNode)
  462. newNode.children = buildAST(listMD, mdTags).children
  463. newNode.children.forEach(item => item.parent = currentNode)
  464. offset = newNode.endOffset = currentNode.endOffset = endMatch.index + offset
  465. }
  466. }
  467. if (title){
  468. const {index=1, recursive} = title
  469. const {[index]: titleContent } = currentNode.startMatch
  470. if (titleContent && recursive){
  471. currentNode.title = buildAST(titleContent, mdTags).children
  472. currentNode.title.forEach(item => item.parent = currentNode)
  473. }
  474. else {
  475. currentNode.title = [titleContent]
  476. }
  477. }
  478. while(offset < md.length){
  479. const [nearest, nearestMatch] = findNearest(md, mdTags, offset)
  480. let endMatch = md.offsetMatch(offset, endRegexp)
  481. if (!recursive || endMatch) { //if we (should) find closing tag
  482. if (!recursive || !nearest || endMatch.index <= nearestMatch.index ){ //if closing tag closer than new nested tag
  483. endMatch = endMatch || {index: md.length - offset, 0: "zzz"}
  484. currentNode.endContent = offset + endMatch.index + offsetEnd + (point === 'end' ? endMatch[0].length : 0)
  485. offset !== currentNode.endContent && children.push(md.slice(offset, currentNode.endContent))
  486. offset += endMatch.index + forward.offset + (forward.point === 'endEnd' ? endMatch[0].length : 0)
  487. currentNode.endOffset = offset
  488. currentNode.endMatch = endMatch
  489. return currentNode
  490. }
  491. }
  492. if (nearest){ //new nested tag
  493. const {begin,content: {start}} = mdTags[nearest]
  494. if (nearestMatch.index){ //if just text before nested tag
  495. nearestMatch.index + begin > 0 && children.push(md.slice(offset, offset + nearestMatch.index + begin))
  496. offset += nearestMatch.index
  497. }
  498. else { //if new tag right under cursor (offset)
  499. let newNode = {tag: nearest, startOffset: offset, parent: currentNode, startMatch: nearestMatch}
  500. children.push(newNode)
  501. newNode = buildAST(md, mdTags, offset + start.offset + (start.point === 'end' ? nearestMatch[0].length : 0), tree, [...stack, newNode])
  502. offset = newNode.endOffset
  503. }
  504. }
  505. else { //no nearest - rest of line to children as text
  506. children.push(md.slice(offset))
  507. offset = md.length
  508. }
  509. }
  510. return currentNode
  511. }
  512. const Heading = ({react:React, children, title, node: {tag}}) => {
  513. const level = +tag.slice(-1)
  514. const _ = React.createElement.bind(React)
  515. if (isNaN(level)) throw new SyntaxError('wrong heading name')
  516. return _(React.Fragment, null,
  517. _(`h${level}`, null, ...title),
  518. _(`div`, null, ...children)
  519. )
  520. }
  521. const defaultMapMDToComponents = {
  522. heading1: Heading,
  523. heading2: Heading,
  524. heading3: Heading,
  525. heading4: Heading,
  526. heading5: Heading,
  527. heading6: Heading,
  528. strike: "strike",
  529. bold1: "strong",
  530. bold2: "strong",
  531. italic1: "i",
  532. italic2: "i",
  533. unOrderedList: 'ul',
  534. orderedList: 'ol',
  535. unOrderedListItem: 'li',
  536. orderedListItem: 'li',
  537. code: 'code',
  538. codeMultiLine: 'pre',
  539. codeLanguage: 'pre',
  540. root: ""
  541. }
  542. function toReact(ast, React, mapMDToComponents=defaultMapMDToComponents){
  543. const gC = (tag, c) => (c = mapMDToComponents[tag]) ? c : (c === "" ? React.Fragment : "span")
  544. const RenderComponent = gC(ast.tag)
  545. const _ = React.createElement.bind(React)
  546. const childToReact = child => typeof child === 'string' ? child :
  547. toReact(child, React, mapMDToComponents)
  548. return _(RenderComponent, {node: ast,
  549. key: Math.random(),
  550. children: ast.children.map(childToReact),
  551. title: ast.title && ast.title.map(childToReact),
  552. react: React})
  553. }
  554. window.module && (module.exports = {
  555. buildAST,
  556. toReact
  557. })
  558. console.log(Object.keys(syntax))
  559. //const md =
  560. //`
  561. //# heading1
  562. //какой-то _текст_
  563. //# heading2
  564. //а тут **шо** цикавого?)))
  565. //`;
  566. //console.log( buildAST(md).children)