dots.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. var m = require('mithril');
  2. // https://github.com/markdown-it/markdown-it
  3. var markdown = require('markdown-it')()
  4. .use(require('markdown-it-footnote'));
  5. var _dbs = require('./dbs');
  6. var _Header = require('./header');
  7. var _Footer = require('./footer');
  8. // var _lang = require('../main.js')._langs;
  9. // ____ __
  10. // / __ \____ / /_
  11. // / / / / __ \/ __/
  12. // / /_/ / /_/ / /_
  13. // /_____/\____/\__/
  14. var _Dot = {
  15. id:null,
  16. type:'',
  17. text:'',
  18. summary:'',
  19. active:true,
  20. opened:false,
  21. links:null,
  22. parents:[],
  23. oninit: function(vn){
  24. this.id = vn.attrs.id;
  25. this.type = vn.attrs.type;
  26. this.text = markdown.render(vn.attrs.text);
  27. // construct summary
  28. // TODO: summary needs more work (strip tags, markdown render)
  29. this.summary = vn.attrs.text.match('([^ ]*[ ]{0,1}){1,6}')[0];
  30. this.summary = this.summary.trim().replace(/_([^_]+)$/g, "_$1_");
  31. this.summary = this.summary.replace(/\[([^\]]+)$/g, "$1");
  32. this.summary = markdown.renderInline(this.summary) + " …";
  33. if(typeof vn.attrs.active !== 'undefined')
  34. this.active = vn.attrs.active;
  35. // links
  36. this.links = _dbs.data_strct[this.id];
  37. // console.log(this.links);
  38. // parents memorize where do we come from to avoid duplicates and looping nav
  39. if(vn.attrs.parents){
  40. this.parents = this.parents.concat(vn.attrs.parents);
  41. // console.log('_Dot init '+this.id+' parents :',this.parents);
  42. }
  43. },
  44. oncreate: function(vn){
  45. if(this.active){
  46. vn.dom.classList.remove('disabled');
  47. }else{
  48. vn.dom.classList.add('disabled');
  49. }
  50. },
  51. onbeforeupdate: function(vn){
  52. },
  53. view: function(vn){
  54. if (this.active && this.opened) {
  55. // full view of dot with linked dots
  56. // console.log('_Dot view '+this.id+' parents :',this.parents);
  57. var dot_content = [
  58. // links to
  59. this.links.to.length
  60. ? m('nav', {'class':'links to'}, this.links.to.map(function(id){
  61. // console.log(id);
  62. return m(_Dot, {
  63. "id":id,
  64. 'text':_dbs.data_byid[_dbs.lang][id].text,
  65. 'type':'',
  66. // passe the memory of crossed dots plus the current one
  67. 'parents':vn.state.parents.concat([vn.state.id]),
  68. // activate link only if not in parents (already went through it)
  69. 'active':vn.state.parents.indexOf(id) == -1 ? true:false
  70. });
  71. })
  72. )
  73. : null,
  74. // id
  75. m('span', {'class':'id'}, this.id), // this.type+' '+
  76. // bullet
  77. m('span', {'class':'bullet'}, m.trust('⚫')),
  78. // full text
  79. m('section', {
  80. 'class':'text',
  81. onmouseover: function(e){
  82. e.preventDefault();
  83. if(e.target.nodeName == "A" ){
  84. // console.log("over e.target", e.target);
  85. // console.log('over vn', vn);
  86. var id = e.target.getAttribute("href");
  87. // add highlight class
  88. vn.dom.querySelector('nav.links>div[uid="'+id+'"]').classList.add('highlight');
  89. }else{
  90. // remove all hilight class
  91. for (link of vn.dom.querySelectorAll('nav.links>div.dot')) {
  92. link.classList.remove('highlight');
  93. }
  94. }
  95. }
  96. }, m.trust(this.text)),
  97. // links from
  98. this.links.from.length
  99. ? m('nav', {'class':'links from'}, this.links.from.map(function(id){
  100. // retrun a dot
  101. return m(_Dot, {
  102. "id":id,
  103. 'text':_dbs.data_byid[_dbs.lang][id].text,
  104. 'type':'',
  105. // passe the memory of crossed dots plus the current one
  106. 'parents':vn.state.parents.concat([vn.state.id]),
  107. // activate link only if not in parents (already went through it)
  108. 'active':vn.state.parents.indexOf(id) == -1 ? true:false
  109. });
  110. })
  111. )
  112. : null
  113. ];
  114. }else{
  115. // preview dot
  116. var dot_content = [
  117. m('span', {'class':'id'}, this.id), // this.type+' '+
  118. m('span', {'class':'bullet'}, m.trust('•')),
  119. m('p', {
  120. 'class':'summary',
  121. onclick:function(e){
  122. vn.state.opened = true;
  123. }
  124. }, m.trust(this.summary))
  125. ];
  126. }
  127. return m('div',{
  128. 'uid':this.id,
  129. 'class':'dot'
  130. },
  131. dot_content
  132. );
  133. },
  134. onupdate: function(vn){
  135. // console.log('_Dot : onupdate', vn);
  136. if(this.active){
  137. if (this.opened){
  138. vn.dom.classList.add('opened');
  139. if(this.links.to.length)
  140. vn.dom.classList.add('to-links');
  141. if(this.links.from.length)
  142. vn.dom.classList.add('from-links');
  143. }else{
  144. vn.dom.classList.remove('opened');
  145. }
  146. }
  147. }
  148. }
  149. /*
  150. down vote
  151. Here's full list of black dotlikes from unicode
  152. ● - ● - Black Circle
  153. ⏺ - ⏺ - Black Circle for Record
  154. ⚫ - ⚫ - Medium Black Circle
  155. ⬤ - ⬤ - Black Large Circle
  156. ⧭ - ⧭ - Black Circle with Down Arrow
  157. 🞄 - 🞄 - Black Slightly Small Circle
  158. • - • - Bullet
  159. ∙ - ∙ - Bullet Operator
  160. ⋅ - ⋅ - Dot Operator
  161. 🌑 - 🌑 - New Moon Symbol
  162. */
  163. // _______ _ __ __
  164. // / ___/ / (_) /__/ /
  165. // / /__/ _ \/ / / _ /
  166. // \___/_//_/_/_/\_,_/
  167. var _Child = {
  168. id:null,
  169. part:null,
  170. type:null,
  171. // nested:false,
  172. text:'',
  173. oninit: function(vn){
  174. // console.log('vn.attrs', vn.attrs);
  175. this.id = vn.attrs.id;
  176. this.type = vn.attrs.type;
  177. // vn.state.part = vn.state.slug.match(/^(\d)(.+)/)[1];
  178. this.text = vn.attrs.text;
  179. // this.nested = vn.attrs.nested || false;
  180. },
  181. onbeforeupdate: function(vn, old){
  182. // this.nested = vn.attrs.nested || false;
  183. this.type = vn.attrs.type;
  184. this.text = vn.attrs.text;
  185. },
  186. view: function(vn){
  187. return m(_Dot, {"id":this.id, 'text':this.text, 'type':this.type});
  188. }
  189. };
  190. // ______
  191. // / ____/___ ____ ____ ________
  192. // / __/ / __ \/ __ \/ __ \/ ___/ _ \
  193. // / /___/ / / / /_/ / / / / /__/ __/
  194. // /_____/_/ /_/\____/_/ /_/\___/\___/
  195. var _Enonce = {
  196. partid:null,
  197. id:null,
  198. title:null,
  199. text:null,
  200. // nested:false,
  201. childs:[],
  202. oninit:function(vn){
  203. // // console.log('Enonce on init', vn);
  204. this.partid = vn.attrs.partid;
  205. this.id = vn.attrs.id;
  206. this.title = vn.attrs.title;
  207. this.text = vn.attrs.text;
  208. this.childs = vn.attrs.childs;
  209. // this.nested = vn.attrs.nested || false;
  210. },
  211. onbeforeupdate:function(vn, old) {
  212. // console.log(vn.attrs.childs);
  213. this.title = vn.attrs.title;
  214. this.text = vn.attrs.text;
  215. this.childs = vn.attrs.childs;
  216. // this.nested = vn.attrs.nested || false;
  217. // if(vn.attrs.id == '1d1') console.log('_Enonce UPDATE, text :', vn.attrs.text);
  218. },
  219. view: function(vn){
  220. // if(vn.attrs.id == '1d1') console.log('_Enonce VIEW, text :', vn.attrs.text);
  221. return [
  222. // create dot
  223. m(_Dot, {"id":this.id, 'text':this.text,'type':this.title}),
  224. // addd children
  225. this.childs.map(function(c){
  226. return m(_Child, c);
  227. })
  228. ]
  229. }
  230. }
  231. // ____ __
  232. // / __ \____ ______/ /_
  233. // / /_/ / __ `/ ___/ __/
  234. // / ____/ /_/ / / / /_
  235. // /_/ \__,_/_/ \__/
  236. var _Part = {
  237. oninit: function(vn){
  238. this.id = vn.attrs.id;
  239. this.title = vn.attrs.title;
  240. this.enonces = vn.attrs.enonces;
  241. },
  242. onbeforeupdate: function(vn, old){
  243. // console.log('_Part, onbeforeupdate old',old);
  244. this.title = vn.attrs.title;
  245. this.enonces = vn.attrs.enonces;
  246. },
  247. view: function(vn){
  248. // console.log(vn.attrs.enonces);
  249. return m("section", {
  250. 'id' :this.id,
  251. 'class' :'part'
  252. },
  253. [
  254. // create title node
  255. m("h1", {'class':'part'}, m.trust(markdown.renderInline(this.title))),
  256. // create text node
  257. this.enonces.map(function(e){
  258. // console.log(e.text);
  259. return m(_Enonce, Object.assign({"partid":this.id},e))
  260. })
  261. ]
  262. )
  263. }
  264. }
  265. // ____ __
  266. // / __ \____ / /______
  267. // / / / / __ \/ __/ ___/
  268. // / /_/ / /_/ / /_(__ )
  269. // /_____/\____/\__/____/
  270. module.exports = {
  271. view: function(){
  272. // console.log('_Dots view', _dbs.lang);
  273. return [
  274. m(_Header),
  275. m('main', {id:"content", 'class':'dots'}, _dbs.data[_dbs.lang].map(function(p){
  276. return m(_Part,p);
  277. })
  278. ),
  279. m(_Footer)
  280. ];
  281. }
  282. }
  283. // function(){
  284. // switch(_dbs.lang){
  285. // case 'fr':
  286. // return "Hello dots !";
  287. // break;
  288. // case 'bra':
  289. // return '"Hola dots !"'
  290. // break;
  291. // }
  292. // }