dots.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. opened:false,
  20. classes:['dot'],
  21. oninit: function(vn){
  22. this.id = vn.attrs.id;
  23. this.type = vn.attrs.type;
  24. this.text = markdown.render(vn.attrs.text);
  25. // TODO: summary needs more work (strip tags, markdown render)
  26. this.summary = markdown.renderInline(vn.attrs.text.match('([^ ]*[ ]{0,1}){1,8}')[0]) + "…"
  27. },
  28. onbeforeupdate: function(vn){
  29. if (this.opened){
  30. this.classes.push('opened');
  31. }else{
  32. this.classes = ['dot'];
  33. }
  34. },
  35. view: function(vn){
  36. return m('div',{
  37. 'id':this.id,
  38. 'class':this.classes.join(' '),
  39. onclick:function(e){
  40. vn.state.opened = true;
  41. }
  42. },
  43. [
  44. m('span', {'class':'id'}, this.id), // this.type+' '+
  45. m('span', {'class':'bullet'}, m.trust('⚫')),
  46. m('p', {'class':'summary'}, m.trust(this.summary))
  47. ]);
  48. }
  49. }
  50. /*
  51. down vote
  52. Here's full list of black dotlikes from unicode
  53. ● - ● - Black Circle
  54. ⏺ - ⏺ - Black Circle for Record
  55. ⚫ - ⚫ - Medium Black Circle
  56. ⬤ - ⬤ - Black Large Circle
  57. ⧭ - ⧭ - Black Circle with Down Arrow
  58. 🞄 - 🞄 - Black Slightly Small Circle
  59. • - • - Bullet
  60. ∙ - ∙ - Bullet Operator
  61. ⋅ - ⋅ - Dot Operator
  62. 🌑 - 🌑 - New Moon Symbol
  63. */
  64. // _______ _ __ __
  65. // / ___/ / (_) /__/ /
  66. // / /__/ _ \/ / / _ /
  67. // \___/_//_/_/_/\_,_/
  68. var _Child = {
  69. id:null,
  70. part:null,
  71. type:null,
  72. // nested:false,
  73. text:'',
  74. oninit: function(vn){
  75. // console.log('vn.attrs', vn.attrs);
  76. this.id = vn.attrs.id;
  77. this.type = vn.attrs.type;
  78. // vn.state.part = vn.state.slug.match(/^(\d)(.+)/)[1];
  79. this.text = vn.attrs.text;
  80. // this.nested = vn.attrs.nested || false;
  81. },
  82. onbeforeupdate: function(vn, old){
  83. // this.nested = vn.attrs.nested || false;
  84. this.type = vn.attrs.type;
  85. this.text = vn.attrs.text;
  86. },
  87. view: function(vn){
  88. return m(_Dot, {"id":this.id, 'text':this.text, 'type':this.type});
  89. }
  90. };
  91. // ______
  92. // / ____/___ ____ ____ ________
  93. // / __/ / __ \/ __ \/ __ \/ ___/ _ \
  94. // / /___/ / / / /_/ / / / / /__/ __/
  95. // /_____/_/ /_/\____/_/ /_/\___/\___/
  96. var _Enonce = {
  97. partid:null,
  98. id:null,
  99. title:null,
  100. text:null,
  101. // nested:false,
  102. childs:[],
  103. oninit:function(vn){
  104. // // console.log('Enonce on init', vn);
  105. this.partid = vn.attrs.partid;
  106. this.id = vn.attrs.id;
  107. this.title = vn.attrs.title;
  108. this.text = vn.attrs.text;
  109. this.childs = vn.attrs.childs;
  110. // this.nested = vn.attrs.nested || false;
  111. },
  112. onbeforeupdate:function(vn, old) {
  113. // console.log(vn.attrs.childs);
  114. this.title = vn.attrs.title;
  115. this.text = vn.attrs.text;
  116. this.childs = vn.attrs.childs;
  117. // this.nested = vn.attrs.nested || false;
  118. // if(vn.attrs.id == '1d1') console.log('_Enonce UPDATE, text :', vn.attrs.text);
  119. },
  120. view: function(vn){
  121. // if(vn.attrs.id == '1d1') console.log('_Enonce VIEW, text :', vn.attrs.text);
  122. return [
  123. // create dot
  124. m(_Dot, {"id":this.id, 'text':this.text,'type':this.title}),
  125. // addd children
  126. this.childs.map(function(c){
  127. return m(_Child, c);
  128. })
  129. ]
  130. }
  131. }
  132. // ____ __
  133. // / __ \____ ______/ /_
  134. // / /_/ / __ `/ ___/ __/
  135. // / ____/ /_/ / / / /_
  136. // /_/ \__,_/_/ \__/
  137. var _Part = {
  138. oninit: function(vn){
  139. this.id = vn.attrs.id;
  140. this.title = vn.attrs.title;
  141. this.enonces = vn.attrs.enonces;
  142. },
  143. onbeforeupdate: function(vn, old){
  144. // console.log('_Part, onbeforeupdate old',old);
  145. this.title = vn.attrs.title;
  146. this.enonces = vn.attrs.enonces;
  147. },
  148. view: function(vn){
  149. // console.log(vn.attrs.enonces);
  150. return m("section", {
  151. 'id' :this.id,
  152. 'class' :'part'
  153. },
  154. [
  155. // create title node
  156. m("h1", {'class':'part'}, m.trust(markdown.renderInline(this.title))),
  157. // create text node
  158. this.enonces.map(function(e){
  159. // console.log(e.text);
  160. return m(_Enonce, Object.assign({"partid":this.id},e))
  161. })
  162. ]
  163. )
  164. }
  165. }
  166. // ____ __
  167. // / __ \____ / /______
  168. // / / / / __ \/ __/ ___/
  169. // / /_/ / /_/ / /_(__ )
  170. // /_____/\____/\__/____/
  171. module.exports = {
  172. view: function(){
  173. console.log('_Dots view', _dbs.lang);
  174. return [
  175. m(_Header),
  176. m('main', {id:"content", 'class':'dots'}, _dbs.data[_dbs.lang].map(function(p){
  177. return m(_Part,p);
  178. })
  179. ),
  180. m(_Footer)
  181. ];
  182. }
  183. }
  184. // function(){
  185. // switch(_dbs.lang){
  186. // case 'fr':
  187. // return "Hello dots !";
  188. // break;
  189. // case 'bra':
  190. // return '"Hola dots !"'
  191. // break;
  192. // }
  193. // }