vue-rule-script.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <div id="app">
  2. <div class="app-wrapper" :class="{'is-preview':preview}">
  3. <div class="editor" v-if="!preview && !legacy" v-cloak>
  4. <div class="controls">
  5. <vue-button class="primary is-large" @click="clickPreview" :icon="icons.view">Preview</vue-button>
  6. </div>
  7. <div class="details">
  8. <div class="label-group">
  9. <label class="label" for="">
  10. <span>What is the community's name?</span>
  11. <input type="text" v-model="rule.name" @change="rule.ruleID = slugify(rule.name)">
  12. </label>
  13. <label class="label">
  14. <span>Icon:</span>
  15. <div class="dropdown">
  16. <label v-for="(icon, iconName, idx) in ruleIcons" :key="idx"
  17. :class="{ selected: rule.icon == icon }">
  18. <input type="radio" id="" :selected="rule.icon == icon" :value="icon" v-model="rule.icon">
  19. <div><img :src="icon" :alt="iconName"></div>
  20. </label>
  21. <label class="default">
  22. <div><img :src="icons.blank"></div>
  23. </label>
  24. </div>
  25. </label>
  26. </div>
  27. <label class="label" for="">
  28. <span>Summarize its structure:</span>
  29. <textarea v-model="rule.summary"></textarea>
  30. </label>
  31. </div>
  32. <div class="rule__modules" :class="{ target: holding }">
  33. <label class="label" for="" v-if="rule.name"><icon :icon="rule.icon"></icon>[[rule.name]]</label>
  34. <div
  35. class="modules__dropzone modules__grid"
  36. :data-module-id="rule.ruleID"
  37. .module="rule"
  38. @drop.prevent="dropOnRule" @dragenter.prevent @dragover.prevent
  39. >
  40. <div v-if="rule.modules.length < 1">Drag rules from the library below here, or create your own.</div>
  41. <module
  42. v-for="module in rule.modules"
  43. :key="module"
  44. @click="handleClickEditModule"
  45. :module="module"
  46. draggable="true"
  47. @dragstart="rearrangeModule"
  48. ></module>
  49. </div>
  50. </div>
  51. <div class="module-editor__wrapper">
  52. <div class="module-editor">
  53. <module
  54. class="module-editor__label"
  55. hide-submodules
  56. :module="editor.module"
  57. draggable="false"
  58. v-if="editor.module.name"
  59. ></module>
  60. <div class="module-editor__right">
  61. <vue-button class="success" :icon="icons.plus" @click="clickAddModule" v-if="!moduleContains(editor.module) && editor.module && editor.module.name">Add</vue-button>
  62. <vue-button class="danger" :icon="icons.minus" @click="clickRemoveModule" v-if="moduleContains(editor.module)">Remove</vue-button>
  63. </div>
  64. <div class="module-editor__fields">
  65. <div class="label-group">
  66. <label class="label">
  67. <span>Module name:</span>
  68. <input class="input-stack" type="text" v-model="editor.module.name" @change="editor.module.moduleID = slugify(editor.module.name)">
  69. </label>
  70. <label class="label">
  71. <span>Icon:</span>
  72. <div class="dropdown">
  73. <label v-for="(icon, iconName, idx) in moduleIcons" :key="idx" :class="{ selected: editor.module.icon == icon }">
  74. <input type="radio" id="" :selected="editor.module.icon == icon" :value="icon" v-model="editor.module.icon">
  75. <div><img :src="icon" :alt="iconName"></div>
  76. </label>
  77. <label class="default"><div><img :src="icons.blank"></div></label>
  78. </div>
  79. </label>
  80. </div>
  81. <label class="label">
  82. <span>Module Summary:</span>
  83. <textarea v-model="editor.module.summary"></textarea>
  84. </label>
  85. <label class="label configs">
  86. <table>
  87. <tr v-for="(value, key) in editor.module.config">
  88. <td>[[key]]</td>
  89. <td><input type="text"
  90. v-model="editor.module.config[key]" /></td>
  91. <td style="vertical-align: initial">
  92. <span class="config-button"
  93. @click="removeConfig([[key]])">
  94. <img :src="icons.minus" alt="Remove">
  95. </span>
  96. </td>
  97. </tr>
  98. <tr >
  99. <td><input id="newConfigKey"
  100. type="text"
  101. value="Configuration" /></td>
  102. <td>
  103. <input id="newConfigValue"
  104. type="text"
  105. value="Value" /></td>
  106. <td style="vertical-align: initial">
  107. <span class="config-button"
  108. @click="addConfig">
  109. <img :src="icons.plus" alt="Add">
  110. </span>
  111. </td>
  112. </tr>
  113. </table>
  114. </label>
  115. -->
  116. <!-- Working on custom module library
  117. <div class="label-group">
  118. <label class="label">
  119. <span>Module ID:</span>
  120. <input type="text" v-model="editor.module.moduleID">
  121. </label>
  122. <label class="label">
  123. <span>Type:</span>
  124. <input type="text" v-model="editor.module.type">
  125. </label>
  126. </div>
  127. <div class="modules__grid" v-if="editor.module.modules">
  128. <module
  129. v-for="(module, idx) in editor.module.modules"
  130. :key="idx"
  131. @click="handleClickEditModule"
  132. :module="module"
  133. ></module>
  134. </div>
  135. <label for="">
  136. <vue-button @click="saveEditor">Save</vue-button>
  137. </label>
  138. <label for="" v-if="customModules.includes(editor.module)">
  139. <vue-button @click="deleteModule(editor.module)">Delete</vue-button>
  140. </label> -->
  141. </div>
  142. </div>
  143. <div class="label-group is-mobile">
  144. <div class="module" @click="newCustomModule">
  145. <span class="plus"><img :src="icons.plus" alt="Add"></span>
  146. Create Custom Module
  147. </div>
  148. <div class="module-editor__empty">
  149. <small>Or click a module to start editing it.</small>
  150. </div>
  151. </div>
  152. </div>
  153. <div class="modules">
  154. <div class="tabs">
  155. <div class="tab__control" v-for="(type, name) in moduleTypes" :key="name" @click="moduleLibrary = name" :class="{ active: moduleLibrary == name}">
  156. <img :src="type.icon" :alt="name"><span class="tab__control-name">[[ name ]]</span>
  157. </div>
  158. </div>
  159. <div class="tab__pane">
  160. <div class="modules__type" v-for="(type, name) in moduleTypes" :key="name" v-show="moduleLibrary == name" :test="name">
  161. <p>[[ type.question ]]</p>
  162. <div class="modules__grid">
  163. <module
  164. v-for="(module, index) in getModulesByType(name)"
  165. :key="index"
  166. :module="module"
  167. @click="handleClickCopyModule"
  168. has-grain
  169. draggable="true"
  170. @dragstart="startDragModule"
  171. ></module>
  172. </div>
  173. </div>
  174. </div>
  175. </div>
  176. <div class="creator">
  177. <label class="label" for="">
  178. <span><img src="/assets/tabler_icons/pencil.svg"> Created By</span>
  179. <input type="text" v-model="rule.creator.name" placeholder="your name">
  180. </label>
  181. <label class="label" for="">
  182. <span><img src="/assets/tabler_icons/globe.svg"> Creator URL</span>
  183. <input type="text" v-model="rule.creator.url" placeholder="https://yourwebsite.org">
  184. </label>
  185. </div>
  186. </div>
  187. <div class="rule" v-show="preview" v-if="!legacy">
  188. <div class="controls">
  189. <vue-button class="primary is-large" @click="clickPreview" :icon="icons.edit" v-if="!view">Edit</vue-button>
  190. </div>
  191. <h1><icon :icon="rule.icon" v-if="rule.icon"></icon> [[rule.name]]</h1>
  192. <p>[[rule.summary]]</p>
  193. <div class="modules__grid" :data-module-id="rule.ruleID" .module="rule">
  194. <module-display
  195. v-for="module in rule.modules"
  196. :key="module"
  197. :module="module"
  198. ></module-display>
  199. </div>
  200. <ul class="module-list">
  201. <module-list v-for="(module, index) in rule.modules" :key="index" :module="module" v-if="rule.modules"></module-list>
  202. </ul>
  203. <div class="rule__creator" v-if="rule.creator.name">
  204. Created By
  205. <img src="/assets/tabler_icons/pencil.svg">
  206. <span v-if="rule.creator.url"><a :href="rule.creator.url">[[rule.creator.name]]</a></span>
  207. <span v-else>[[rule.creator.name]]</span>
  208. </div>
  209. </div>
  210. <div class="rule legacy" v-if="legacy && preview">
  211. <h1>[[rule.name]]</h1>
  212. <p>[[rule.summary]]</p>
  213. <div id="rule-builder" class="rulebuilder">
  214. <div id="module-input" class="rulebuilder_input modules__grid" v-html="rule.modules">
  215. </div>
  216. <div id="builder-field" class="rulebuilder_list">
  217. </div>
  218. </div>
  219. <div v-html="rule.rulewriter"></div>
  220. <div class="lineage" v-if="rule.lineage" v-html="rule.lineage"></div>
  221. <div class="rule__creator" v-if="rule.creatorName">
  222. Created By
  223. <img src="/assets/tabler_icons/pencil.svg">
  224. <span v-if="rule.creatorUrl"><a :href="rule.creatorUrl">[[rule.creatorName]]</a></span>
  225. <span v-else>[[rule.creatorName]]</span>
  226. </div>
  227. </div>
  228. <div class="btn-group" v-if="!legacy && !view">
  229. <vue-button class="primary is-large" @click="handleClickPublish" :icon="icons.publish" :loading="publishing">Publish</vue-button>
  230. <vue-button class="is-large" @click="handleClickDownload" :icon="icons.download">Download</vue-button>
  231. <vue-button class="is-large" @click="handleClickExport" :icon="icons.export">Export</vue-button>
  232. <vue-button class="is-large" @click="handleClickImport" :icon="icons.upload">Import <div class="btn-cover">coming soon!</div></vue-button>
  233. </div>
  234. <div class="btn-group" v-if="view && !legacy">
  235. <vue-button class="primary is-large" @click="clickPreview" :icon="icons.fork">Fork &amp; Edit</vue-button>
  236. <vue-button class="is-large" @click="handleClickDownload" :icon="icons.download">Download</vue-button>
  237. </div>
  238. </div>
  239. <div id="rule-export" v-show="false" v-if="!legacy">
  240. <h1>[[rule.name]]</h1>
  241. <p>[[rule.summary]]</p>
  242. <ul class="module-list">
  243. <module-list v-for="(module, index) in rule.modules" :key="index" :module="module" v-if="rule.modules" hide-icon></module-list>
  244. </ul>
  245. <hr>
  246. <h2>Created By</h2>
  247. <p v-if="rule.creator.url"><a :href="rule.creator.url">[[rule.creator.name]]</a></p>
  248. <p v-else>[[rule.creator.name]]</p>
  249. </div>
  250. </div>
  251. <script src="/assets/js/vue.global.js"></script>
  252. <script src="/assets/DragDropTouch.js"></script>
  253. <script src="https://unpkg.com/stein-js-client"></script>
  254. <script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js" defer
  255. integrity="sha512-CSBhVREyzHAjAFfBlIBakjoRUKp5h7VSweP0InR/pAJyptH7peuhCsqAI/snV+TwZmXZqoUklpXp6R6wMnYf5Q=="
  256. crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  257. <script src="https://unpkg.com/turndown/dist/turndown.js" defer></script>
  258. <script>
  259. let global = {};
  260. global.modules = [
  261. {% assign modules_array = site.modules | sort: "type" %}
  262. {% for module in modules_array %}
  263. {
  264. name: "{{ module.title | escape }}",
  265. url: "{{ site.baseurl }}{{ module.permalink }}",
  266. moduleID: "{{ module.slug }}",
  267. icon: "{{ site.data.module_types[module.type].icon | default: 'null'}}",
  268. summary: "{{ module.summary }}",
  269. type: "{{ module.type }}",
  270. content: `{{ module.content | markdownify }}`,
  271. {% if module.config %}
  272. config: {
  273. {% for config in module.config %}
  274. "{{ config[0] }}": "{{ config[1] }}"
  275. {% unless forloop.last %}, {% endunless %}
  276. {% endfor %}
  277. },
  278. {% endif %}
  279. readonly: true,
  280. modules: []
  281. } {% unless forloop.last %}, {% endunless %}
  282. {% endfor %}
  283. ];
  284. // global.url = "{{ site.url }}{{ site.baseurl }}";
  285. global.url = "https://communityrule.info";
  286. global.rule = {{ page.rule | jsonify }};
  287. </script>
  288. <script src="/assets/js/vue.rules.js"></script>