| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2017-04-15 01:47:33 +08:00
										 |  |  | const DropZone = require("dropzone"); | 
					
						
							| 
									
										
										
										
											2017-04-17 19:21:10 +08:00
										 |  |  | const MarkdownIt = require("markdown-it"); | 
					
						
							|  |  |  | const mdTasksLists = require('markdown-it-task-lists'); | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  | const code = require('./code'); | 
					
						
							| 
									
										
										
										
											2015-12-30 00:39:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-15 01:47:33 +08:00
										 |  |  | module.exports = function (ngApp, events) { | 
					
						
							| 
									
										
										
										
											2015-12-30 00:39:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Common tab controls using simple jQuery functions. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ngApp.directive('tabContainer', function() { | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							|  |  |  |             link: function (scope, element, attrs) { | 
					
						
							|  |  |  |                 const $content = element.find('[tab-content]'); | 
					
						
							|  |  |  |                 const $buttons = element.find('[tab-button]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (attrs.tabContainer) { | 
					
						
							|  |  |  |                     let initial = attrs.tabContainer; | 
					
						
							|  |  |  |                     $buttons.filter(`[tab-button="${initial}"]`).addClass('selected'); | 
					
						
							|  |  |  |                     $content.hide().filter(`[tab-content="${initial}"]`).show(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $content.hide().first().show(); | 
					
						
							|  |  |  |                     $buttons.first().addClass('selected'); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 $buttons.click(function() { | 
					
						
							|  |  |  |                     let clickedTab = $(this); | 
					
						
							|  |  |  |                     $buttons.removeClass('selected'); | 
					
						
							|  |  |  |                     $content.hide(); | 
					
						
							|  |  |  |                     let name = clickedTab.addClass('selected').attr('tab-button'); | 
					
						
							|  |  |  |                     $content.filter(`[tab-content="${name}"]`).show(); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-12-24 23:21:19 +08:00
										 |  |  |      * Sub form component to allow inner-form sections to act like their own forms. | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     ngApp.directive('subForm', function() { | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							|  |  |  |             link: function (scope, element, attrs) { | 
					
						
							|  |  |  |                 element.on('keypress', e => { | 
					
						
							|  |  |  |                     if (e.keyCode === 13) { | 
					
						
							|  |  |  |                         submitEvent(e); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 element.find('button[type="submit"]').click(submitEvent); | 
					
						
							| 
									
										
										
										
											2016-10-31 01:44:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |                 function submitEvent(e) { | 
					
						
							| 
									
										
										
										
											2016-12-24 23:21:19 +08:00
										 |  |  |                     e.preventDefault(); | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |                     if (attrs.subForm) scope.$eval(attrs.subForm); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * DropZone | 
					
						
							|  |  |  |      * Used for uploading images | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |     ngApp.directive('dropZone', [function () { | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'E', | 
					
						
							| 
									
										
										
										
											2016-10-31 01:44:00 +08:00
										 |  |  |             template: `
 | 
					
						
							|  |  |  |             <div class="dropzone-container"> | 
					
						
							| 
									
										
										
										
											2016-12-24 23:21:19 +08:00
										 |  |  |                 <div class="dz-message">{{message}}</div> | 
					
						
							| 
									
										
										
										
											2016-10-31 01:44:00 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  |             `,
 | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |             scope: { | 
					
						
							|  |  |  |                 uploadUrl: '@', | 
					
						
							|  |  |  |                 eventSuccess: '=', | 
					
						
							| 
									
										
										
										
											2016-03-13 21:30:47 +08:00
										 |  |  |                 eventError: '=', | 
					
						
							| 
									
										
										
										
											2016-12-24 23:21:19 +08:00
										 |  |  |                 uploadedTo: '@', | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |             link: function (scope, element, attrs) { | 
					
						
							| 
									
										
										
										
											2016-12-24 23:21:19 +08:00
										 |  |  |                 scope.message = attrs.message; | 
					
						
							| 
									
										
										
										
											2016-10-12 03:39:11 +08:00
										 |  |  |                 if (attrs.placeholder) element[0].querySelector('.dz-message').textContent = attrs.placeholder; | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                 let dropZone = new DropZone(element[0].querySelector('.dropzone-container'), { | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                     url: scope.uploadUrl, | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                     init: function () { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                         let dz = this; | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                         dz.on('sending', function (file, xhr, data) { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                             let token = window.document.querySelector('meta[name=token]').getAttribute('content'); | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                             data.append('_token', token); | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                             let uploadedTo = typeof scope.uploadedTo === 'undefined' ? 0 : scope.uploadedTo; | 
					
						
							| 
									
										
										
										
											2016-03-13 21:30:47 +08:00
										 |  |  |                             data.append('uploaded_to', uploadedTo); | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                         }); | 
					
						
							|  |  |  |                         if (typeof scope.eventSuccess !== 'undefined') dz.on('success', scope.eventSuccess); | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                         dz.on('success', function (file, data) { | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                             $(file.previewElement).fadeOut(400, function () { | 
					
						
							|  |  |  |                                 dz.removeFile(file); | 
					
						
							|  |  |  |                             }); | 
					
						
							|  |  |  |                         }); | 
					
						
							|  |  |  |                         if (typeof scope.eventError !== 'undefined') dz.on('error', scope.eventError); | 
					
						
							|  |  |  |                         dz.on('error', function (file, errorMessage, xhr) { | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                             console.log(errorMessage); | 
					
						
							|  |  |  |                             console.log(xhr); | 
					
						
							|  |  |  |                             function setMessage(message) { | 
					
						
							|  |  |  |                                 $(file.previewElement).find('[data-dz-errormessage]').text(message); | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 22:27:40 +08:00
										 |  |  |                             if (xhr.status === 413) setMessage(trans('errors.server_upload_limit')); | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                             if (errorMessage.file) setMessage(errorMessage.file[0]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                         }); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Dropdown | 
					
						
							|  |  |  |      * Provides some simple logic to create small dropdown menus | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |     ngApp.directive('dropdown', [function () { | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |             link: function (scope, element, attrs) { | 
					
						
							| 
									
										
										
										
											2016-07-10 19:12:52 +08:00
										 |  |  |                 const menu = element.find('ul'); | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                 element.find('[dropdown-toggle]').on('click', function () { | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                     menu.show().addClass('anim menuIn'); | 
					
						
							| 
									
										
										
										
											2016-07-10 19:12:52 +08:00
										 |  |  |                     let inputs = menu.find('input'); | 
					
						
							|  |  |  |                     let hasInput = inputs.length > 0; | 
					
						
							|  |  |  |                     if (hasInput) { | 
					
						
							|  |  |  |                         inputs.first().focus(); | 
					
						
							|  |  |  |                         element.on('keypress', 'input', event => { | 
					
						
							|  |  |  |                             if (event.keyCode === 13) { | 
					
						
							|  |  |  |                                 event.preventDefault(); | 
					
						
							|  |  |  |                                 menu.hide(); | 
					
						
							|  |  |  |                                 menu.removeClass('anim menuIn'); | 
					
						
							|  |  |  |                                 return false; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         }); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-12-31 03:57:17 +08:00
										 |  |  |                     element.mouseleave(function () { | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                         menu.hide(); | 
					
						
							|  |  |  |                         menu.removeClass('anim menuIn'); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * TinyMCE | 
					
						
							|  |  |  |      * An angular wrapper around the tinyMCE editor. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |     ngApp.directive('tinymce', ['$timeout', function ($timeout) { | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							|  |  |  |             scope: { | 
					
						
							|  |  |  |                 tinymce: '=', | 
					
						
							| 
									
										
										
										
											2016-03-10 06:54:18 +08:00
										 |  |  |                 mceModel: '=', | 
					
						
							|  |  |  |                 mceChange: '=' | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |             }, | 
					
						
							|  |  |  |             link: function (scope, element, attrs) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 function tinyMceSetup(editor) { | 
					
						
							| 
									
										
										
										
											2016-03-12 23:52:19 +08:00
										 |  |  |                     editor.on('ExecCommand change NodeChange ObjectResized', (e) => { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                         let content = editor.getContent(); | 
					
						
							| 
									
										
										
										
											2016-03-12 23:52:19 +08:00
										 |  |  |                         $timeout(() => { | 
					
						
							| 
									
										
										
										
											2016-03-10 06:54:18 +08:00
										 |  |  |                             scope.mceModel = content; | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |                         }); | 
					
						
							| 
									
										
										
										
											2016-03-10 06:54:18 +08:00
										 |  |  |                         scope.mceChange(content); | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2016-03-12 23:52:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-28 20:51:07 +08:00
										 |  |  |                     editor.on('keydown', (event) => { | 
					
						
							|  |  |  |                         scope.$emit('editor-keydown', event); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-12 23:52:19 +08:00
										 |  |  |                     editor.on('init', (e) => { | 
					
						
							|  |  |  |                         scope.mceModel = editor.getContent(); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     scope.$on('html-update', (event, value) => { | 
					
						
							|  |  |  |                         editor.setContent(value); | 
					
						
							|  |  |  |                         editor.selection.select(editor.getBody(), true); | 
					
						
							|  |  |  |                         editor.selection.collapse(false); | 
					
						
							|  |  |  |                         scope.mceModel = editor.getContent(); | 
					
						
							|  |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 scope.tinymce.extraSetups.push(tinyMceSetup); | 
					
						
							| 
									
										
										
										
											2016-04-24 02:15:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Custom tinyMCE plugins
 | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                 tinymce.PluginManager.add('customhr', function (editor) { | 
					
						
							|  |  |  |                     editor.addCommand('InsertHorizontalRule', function () { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                         let hrElem = document.createElement('hr'); | 
					
						
							|  |  |  |                         let cNode = editor.selection.getNode(); | 
					
						
							|  |  |  |                         let parentNode = cNode.parentNode; | 
					
						
							| 
									
										
										
										
											2016-04-24 02:15:49 +08:00
										 |  |  |                         parentNode.insertBefore(hrElem, cNode); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     editor.addButton('hr', { | 
					
						
							|  |  |  |                         icon: 'hr', | 
					
						
							|  |  |  |                         tooltip: 'Horizontal line', | 
					
						
							|  |  |  |                         cmd: 'InsertHorizontalRule' | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     editor.addMenuItem('hr', { | 
					
						
							|  |  |  |                         icon: 'hr', | 
					
						
							|  |  |  |                         text: 'Horizontal line', | 
					
						
							|  |  |  |                         cmd: 'InsertHorizontalRule', | 
					
						
							|  |  |  |                         context: 'insert' | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |                 tinymce.init(scope.tinymce); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-30 01:25:54 +08:00
										 |  |  |     }]); | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-29 23:10:38 +08:00
										 |  |  |     const md = new MarkdownIt({html: true}); | 
					
						
							| 
									
										
										
										
											2017-04-17 19:21:10 +08:00
										 |  |  |     md.use(mdTasksLists, {label: true}); | 
					
						
							| 
									
										
										
										
											2017-02-25 21:16:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Markdown input | 
					
						
							|  |  |  |      * Handles the logic for just the editor input field. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |     ngApp.directive('markdownInput', ['$timeout', function ($timeout) { | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							|  |  |  |             scope: { | 
					
						
							|  |  |  |                 mdModel: '=', | 
					
						
							|  |  |  |                 mdChange: '=' | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             link: function (scope, element, attrs) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 // Codemirror Setup
 | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  |                 element = element.find('textarea').first(); | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 let cm = code.markdownEditor(element[0]); | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Custom key commands
 | 
					
						
							|  |  |  |                 let metaKey = code.getMetaKey(); | 
					
						
							|  |  |  |                 const extraKeys = {}; | 
					
						
							|  |  |  |                 // Insert Image shortcut
 | 
					
						
							|  |  |  |                 extraKeys[`${metaKey}-Alt-I`] = function(cm) { | 
					
						
							|  |  |  |                     let selectedText = cm.getSelection(); | 
					
						
							|  |  |  |                     let newText = ``; | 
					
						
							|  |  |  |                     let cursorPos = cm.getCursor('from'); | 
					
						
							|  |  |  |                     cm.replaceSelection(newText); | 
					
						
							|  |  |  |                     cm.setCursor(cursorPos.line, cursorPos.ch + newText.length -1); | 
					
						
							|  |  |  |                 }; | 
					
						
							|  |  |  |                 // Save draft
 | 
					
						
							|  |  |  |                 extraKeys[`${metaKey}-S`] = function(cm) {scope.$emit('save-draft');}; | 
					
						
							|  |  |  |                 // Show link selector
 | 
					
						
							|  |  |  |                 extraKeys[`Shift-${metaKey}-K`] = function(cm) {showLinkSelector()}; | 
					
						
							|  |  |  |                 cm.setOption('extraKeys', extraKeys); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Update data on content change
 | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 cm.on('change', (instance, changeObj) => { | 
					
						
							|  |  |  |                     update(instance); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  |                 // Handle scroll to sync display view
 | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 cm.on('scroll', instance => { | 
					
						
							|  |  |  |                     // Thanks to http://liuhao.im/english/2015/11/10/the-sync-scroll-of-markdown-editor-in-javascript.html
 | 
					
						
							|  |  |  |                     let scroll = instance.getScrollInfo(); | 
					
						
							|  |  |  |                     let atEnd = scroll.top + scroll.clientHeight === scroll.height; | 
					
						
							|  |  |  |                     if (atEnd) { | 
					
						
							|  |  |  |                         scope.$emit('markdown-scroll', -1); | 
					
						
							|  |  |  |                         return; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     let lineNum = instance.lineAtHeight(scroll.top, 'local'); | 
					
						
							|  |  |  |                     let range = instance.getRange({line: 0, ch: null}, {line: lineNum, ch: null}); | 
					
						
							|  |  |  |                     let parser = new DOMParser(); | 
					
						
							|  |  |  |                     let doc = parser.parseFromString(md.render(range), 'text/html'); | 
					
						
							|  |  |  |                     let totalLines = doc.documentElement.querySelectorAll('body > *'); | 
					
						
							|  |  |  |                     scope.$emit('markdown-scroll', totalLines.length); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  |                 // Handle image paste
 | 
					
						
							|  |  |  |                 cm.on('paste', (cm, event) => { | 
					
						
							|  |  |  |                     if (!event.clipboardData || !event.clipboardData.items) return; | 
					
						
							|  |  |  |                     for (let i = 0; i < event.clipboardData.items.length; i++) { | 
					
						
							|  |  |  |                         uploadImage(event.clipboardData.items[i].getAsFile()); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Handle images on drag-drop
 | 
					
						
							|  |  |  |                 cm.on('drop', (cm, event) => { | 
					
						
							|  |  |  |                     event.stopPropagation(); | 
					
						
							|  |  |  |                     event.preventDefault(); | 
					
						
							|  |  |  |                     let cursorPos = cm.coordsChar({left: event.pageX, top: event.pageY}); | 
					
						
							|  |  |  |                     cm.setCursor(cursorPos); | 
					
						
							|  |  |  |                     if (!event.dataTransfer || !event.dataTransfer.files) return; | 
					
						
							|  |  |  |                     for (let i = 0; i < event.dataTransfer.files.length; i++) { | 
					
						
							|  |  |  |                         uploadImage(event.dataTransfer.files[i]); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Helper to replace editor content
 | 
					
						
							|  |  |  |                 function replaceContent(search, replace) { | 
					
						
							|  |  |  |                     let text = cm.getValue(); | 
					
						
							|  |  |  |                     let cursor = cm.listSelections(); | 
					
						
							|  |  |  |                     cm.setValue(text.replace(search, replace)); | 
					
						
							|  |  |  |                     cm.setSelections(cursor); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Handle image upload and add image into markdown content
 | 
					
						
							|  |  |  |                 function uploadImage(file) { | 
					
						
							|  |  |  |                     if (file === null || file.type.indexOf('image') !== 0) return; | 
					
						
							|  |  |  |                     let ext = 'png'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (file.name) { | 
					
						
							|  |  |  |                         let fileNameMatches = file.name.match(/\.(.+)$/); | 
					
						
							|  |  |  |                         if (fileNameMatches.length > 1) ext = fileNameMatches[1]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // Insert image into markdown
 | 
					
						
							|  |  |  |                     let id = "image-" + Math.random().toString(16).slice(2); | 
					
						
							|  |  |  |                     let placeholderImage = window.baseUrl(`/loading.gif#upload${id}`); | 
					
						
							|  |  |  |                     let selectedText = cm.getSelection(); | 
					
						
							|  |  |  |                     let placeHolderText = ``; | 
					
						
							|  |  |  |                     cm.replaceSelection(placeHolderText); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     let remoteFilename = "image-" + Date.now() + "." + ext; | 
					
						
							|  |  |  |                     let formData = new FormData(); | 
					
						
							|  |  |  |                     formData.append('file', file, remoteFilename); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     window.$http.post('/images/gallery/upload', formData).then(resp => { | 
					
						
							|  |  |  |                         replaceContent(placeholderImage, resp.data.thumbs.display); | 
					
						
							|  |  |  |                     }).catch(err => { | 
					
						
							|  |  |  |                         events.emit('error', trans('errors.image_upload_error')); | 
					
						
							|  |  |  |                         replaceContent(placeHolderText, selectedText); | 
					
						
							|  |  |  |                         console.log(err); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Show the popup link selector and insert a link when finished
 | 
					
						
							|  |  |  |                 function showLinkSelector() { | 
					
						
							|  |  |  |                     let cursorPos = cm.getCursor('from'); | 
					
						
							|  |  |  |                     window.showEntityLinkSelector(entity => { | 
					
						
							|  |  |  |                         let selectedText = cm.getSelection() || entity.name; | 
					
						
							|  |  |  |                         let newText = `[${selectedText}](${entity.link})`; | 
					
						
							|  |  |  |                         cm.focus(); | 
					
						
							|  |  |  |                         cm.replaceSelection(newText); | 
					
						
							|  |  |  |                         cm.setCursor(cursorPos.line, cursorPos.ch + newText.length); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Show the image manager and handle image insertion
 | 
					
						
							|  |  |  |                 function showImageManager() { | 
					
						
							|  |  |  |                     let cursorPos = cm.getCursor('from'); | 
					
						
							|  |  |  |                     window.ImageManager.showExternal(image => { | 
					
						
							|  |  |  |                         let selectedText = cm.getSelection(); | 
					
						
							|  |  |  |                         let newText = ""; | 
					
						
							|  |  |  |                         cm.focus(); | 
					
						
							|  |  |  |                         cm.replaceSelection(newText); | 
					
						
							|  |  |  |                         cm.setCursor(cursorPos.line, cursorPos.ch + newText.length); | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Update the data models and rendered output
 | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 function update(instance) { | 
					
						
							|  |  |  |                     let content = instance.getValue(); | 
					
						
							|  |  |  |                     element.val(content); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |                     $timeout(() => { | 
					
						
							|  |  |  |                         scope.mdModel = content; | 
					
						
							| 
									
										
										
										
											2017-04-17 19:21:10 +08:00
										 |  |  |                         scope.mdChange(md.render(content)); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 update(cm); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  |                 // Listen to commands from parent scope
 | 
					
						
							|  |  |  |                 scope.$on('md-insert-link', showLinkSelector); | 
					
						
							|  |  |  |                 scope.$on('md-insert-image', showImageManager); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |                 scope.$on('markdown-update', (event, value) => { | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                     cm.setValue(value); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |                     element.val(value); | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                     scope.mdModel = value; | 
					
						
							| 
									
										
										
										
											2017-04-17 19:21:10 +08:00
										 |  |  |                     scope.mdChange(md.render(value)); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 01:25:54 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Markdown Editor | 
					
						
							|  |  |  |      * Handles all functionality of the markdown editor. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |     ngApp.directive('markdownEditor', ['$timeout', '$rootScope', function ($timeout, $rootScope) { | 
					
						
							| 
									
										
										
										
											2016-03-30 01:25:54 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							|  |  |  |             link: function (scope, element, attrs) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  |                 // Editor Elements
 | 
					
						
							| 
									
										
										
										
											2016-12-31 22:27:40 +08:00
										 |  |  |                 const $display = element.find('.markdown-display').first(); | 
					
						
							|  |  |  |                 const $insertImage = element.find('button[data-action="insertImage"]'); | 
					
						
							|  |  |  |                 const $insertEntityLink = element.find('button[data-action="insertEntityLink"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Prevent markdown display link click redirect
 | 
					
						
							|  |  |  |                 $display.on('click', 'a', function(event) { | 
					
						
							|  |  |  |                     event.preventDefault(); | 
					
						
							|  |  |  |                     window.open(this.getAttribute('href')); | 
					
						
							|  |  |  |                 }); | 
					
						
							| 
									
										
										
										
											2016-03-30 01:25:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-03 02:35:13 +08:00
										 |  |  |                 // Editor UI Actions
 | 
					
						
							|  |  |  |                 $insertEntityLink.click(e => {scope.$broadcast('md-insert-link');}); | 
					
						
							|  |  |  |                 $insertImage.click(e => {scope.$broadcast('md-insert-image');}); | 
					
						
							| 
									
										
										
										
											2016-03-30 01:25:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 23:02:46 +08:00
										 |  |  |                 // Handle scroll sync event from editor scroll
 | 
					
						
							|  |  |  |                 $rootScope.$on('markdown-scroll', (event, lineCount) => { | 
					
						
							|  |  |  |                     let elems = $display[0].children[0].children; | 
					
						
							|  |  |  |                     if (elems.length > lineCount) { | 
					
						
							|  |  |  |                         let topElem = (lineCount === -1) ? elems[elems.length-1] : elems[lineCount]; | 
					
						
							|  |  |  |                         $display.animate({ | 
					
						
							|  |  |  |                             scrollTop: topElem.offsetTop | 
					
						
							|  |  |  |                         }, {queue: false, duration: 200, easing: 'linear'}); | 
					
						
							| 
									
										
										
										
											2016-05-28 20:24:07 +08:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 }); | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  |     }]); | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Page Editor Toolbox | 
					
						
							|  |  |  |      * Controls all functionality for the sliding toolbox | 
					
						
							|  |  |  |      * on the page edit view. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |     ngApp.directive('toolbox', [function () { | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |             link: function (scope, elem, attrs) { | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Get common elements
 | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |                 const $buttons = elem.find('[toolbox-tab-button]'); | 
					
						
							|  |  |  |                 const $content = elem.find('[toolbox-tab-content]'); | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  |                 const $toggle = elem.find('[toolbox-toggle]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Handle toolbox toggle click
 | 
					
						
							|  |  |  |                 $toggle.click((e) => { | 
					
						
							|  |  |  |                     elem.toggleClass('open'); | 
					
						
							|  |  |  |                 }); | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  |                 // Set an active tab/content by name
 | 
					
						
							|  |  |  |                 function setActive(tabName, openToolbox) { | 
					
						
							|  |  |  |                     $buttons.removeClass('active'); | 
					
						
							|  |  |  |                     $content.hide(); | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |                     $buttons.filter(`[toolbox-tab-button="${tabName}"]`).addClass('active'); | 
					
						
							|  |  |  |                     $content.filter(`[toolbox-tab-content="${tabName}"]`).show(); | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  |                     if (openToolbox) elem.addClass('open'); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Set the first tab content active on load
 | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |                 setActive($content.first().attr('toolbox-tab-content'), false); | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Handle tab button click
 | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                 $buttons.click(function (e) { | 
					
						
							| 
									
										
										
										
											2016-10-24 00:55:48 +08:00
										 |  |  |                     let name = $(this).attr('toolbox-tab-button'); | 
					
						
							| 
									
										
										
										
											2016-05-15 03:02:00 +08:00
										 |  |  |                     setActive(name, true); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }]); | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Tag Autosuggestions | 
					
						
							|  |  |  |      * Listens to child inputs and provides autosuggestions depending on field type | 
					
						
							|  |  |  |      * and input. Suggestions provided by server. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |     ngApp.directive('tagAutosuggestions', ['$http', function ($http) { | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |             link: function (scope, elem, attrs) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                 // Local storage for quick caching.
 | 
					
						
							|  |  |  |                 const localCache = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Create suggestion element
 | 
					
						
							|  |  |  |                 const suggestionBox = document.createElement('ul'); | 
					
						
							|  |  |  |                 suggestionBox.className = 'suggestion-box'; | 
					
						
							|  |  |  |                 suggestionBox.style.position = 'absolute'; | 
					
						
							|  |  |  |                 suggestionBox.style.display = 'none'; | 
					
						
							|  |  |  |                 const $suggestionBox = $(suggestionBox); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // General state tracking
 | 
					
						
							|  |  |  |                 let isShowing = false; | 
					
						
							|  |  |  |                 let currentInput = false; | 
					
						
							|  |  |  |                 let active = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Listen to input events on autosuggest fields
 | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                 elem.on('input focus', '[autosuggest]', function (event) { | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                     let $input = $(this); | 
					
						
							|  |  |  |                     let val = $input.val(); | 
					
						
							|  |  |  |                     let url = $input.attr('autosuggest'); | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                     let type = $input.attr('autosuggest-type'); | 
					
						
							| 
									
										
										
										
											2016-10-31 01:44:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                     // Add name param to request if for a value
 | 
					
						
							|  |  |  |                     if (type.toLowerCase() === 'value') { | 
					
						
							|  |  |  |                         let $nameInput = $input.closest('tr').find('[autosuggest-type="name"]').first(); | 
					
						
							|  |  |  |                         let nameVal = $nameInput.val(); | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                         if (nameVal !== '') { | 
					
						
							|  |  |  |                             url += '?name=' + encodeURIComponent(nameVal); | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     let suggestionPromise = getSuggestions(val.slice(0, 3), url); | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                     suggestionPromise.then(suggestions => { | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                         if (val.length === 0) { | 
					
						
							|  |  |  |                             displaySuggestions($input, suggestions.slice(0, 6)); | 
					
						
							|  |  |  |                         } else  { | 
					
						
							|  |  |  |                             suggestions = suggestions.filter(item => { | 
					
						
							|  |  |  |                                 return item.toLowerCase().indexOf(val.toLowerCase()) !== -1; | 
					
						
							|  |  |  |                             }).slice(0, 4); | 
					
						
							|  |  |  |                             displaySuggestions($input, suggestions); | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                     }); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Hide autosuggestions when input loses focus.
 | 
					
						
							|  |  |  |                 // Slight delay to allow clicks.
 | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                 let lastFocusTime = 0; | 
					
						
							|  |  |  |                 elem.on('blur', '[autosuggest]', function (event) { | 
					
						
							|  |  |  |                     let startTime = Date.now(); | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                     setTimeout(() => { | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                         if (lastFocusTime < startTime) { | 
					
						
							|  |  |  |                             $suggestionBox.hide(); | 
					
						
							|  |  |  |                             isShowing = false; | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                     }, 200) | 
					
						
							|  |  |  |                 }); | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                 elem.on('focus', '[autosuggest]', function (event) { | 
					
						
							|  |  |  |                     lastFocusTime = Date.now(); | 
					
						
							|  |  |  |                 }); | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 elem.on('keydown', '[autosuggest]', function (event) { | 
					
						
							|  |  |  |                     if (!isShowing) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     let suggestionElems = suggestionBox.childNodes; | 
					
						
							|  |  |  |                     let suggestCount = suggestionElems.length; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // Down arrow
 | 
					
						
							|  |  |  |                     if (event.keyCode === 40) { | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                         let newActive = (active === suggestCount - 1) ? 0 : active + 1; | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         changeActiveTo(newActive, suggestionElems); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     // Up arrow
 | 
					
						
							|  |  |  |                     else if (event.keyCode === 38) { | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                         let newActive = (active === 0) ? suggestCount - 1 : active - 1; | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         changeActiveTo(newActive, suggestionElems); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                     // Enter or tab key
 | 
					
						
							| 
									
										
										
										
											2016-07-03 17:47:20 +08:00
										 |  |  |                     else if ((event.keyCode === 13 || event.keyCode === 9) && !event.shiftKey) { | 
					
						
							| 
									
										
										
										
											2016-12-31 22:27:40 +08:00
										 |  |  |                         currentInput[0].value = suggestionElems[active].textContent; | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         currentInput.focus(); | 
					
						
							|  |  |  |                         $suggestionBox.hide(); | 
					
						
							|  |  |  |                         isShowing = false; | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                         if (event.keyCode === 13) { | 
					
						
							|  |  |  |                             event.preventDefault(); | 
					
						
							|  |  |  |                             return false; | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Change the active suggestion to the given index
 | 
					
						
							|  |  |  |                 function changeActiveTo(index, suggestionElems) { | 
					
						
							|  |  |  |                     suggestionElems[active].className = ''; | 
					
						
							|  |  |  |                     active = index; | 
					
						
							|  |  |  |                     suggestionElems[active].className = 'active'; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Display suggestions on a field
 | 
					
						
							|  |  |  |                 let prevSuggestions = []; | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                 function displaySuggestions($input, suggestions) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // Hide if no suggestions
 | 
					
						
							|  |  |  |                     if (suggestions.length === 0) { | 
					
						
							|  |  |  |                         $suggestionBox.hide(); | 
					
						
							|  |  |  |                         isShowing = false; | 
					
						
							|  |  |  |                         prevSuggestions = suggestions; | 
					
						
							|  |  |  |                         return; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // Otherwise show and attach to input
 | 
					
						
							|  |  |  |                     if (!isShowing) { | 
					
						
							|  |  |  |                         $suggestionBox.show(); | 
					
						
							|  |  |  |                         isShowing = true; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if ($input !== currentInput) { | 
					
						
							|  |  |  |                         $suggestionBox.detach(); | 
					
						
							|  |  |  |                         $input.after($suggestionBox); | 
					
						
							|  |  |  |                         currentInput = $input; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // Return if no change
 | 
					
						
							|  |  |  |                     if (prevSuggestions.join() === suggestions.join()) { | 
					
						
							|  |  |  |                         prevSuggestions = suggestions; | 
					
						
							|  |  |  |                         return; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // Build suggestions
 | 
					
						
							|  |  |  |                     $suggestionBox[0].innerHTML = ''; | 
					
						
							|  |  |  |                     for (let i = 0; i < suggestions.length; i++) { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                         let suggestion = document.createElement('li'); | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         suggestion.textContent = suggestions[i]; | 
					
						
							|  |  |  |                         suggestion.onclick = suggestionClick; | 
					
						
							|  |  |  |                         if (i === 0) { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                             suggestion.className = 'active'; | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                             active = 0; | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         $suggestionBox[0].appendChild(suggestion); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     prevSuggestions = suggestions; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Suggestion click event
 | 
					
						
							|  |  |  |                 function suggestionClick(event) { | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                     currentInput[0].value = this.textContent; | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                     currentInput.focus(); | 
					
						
							|  |  |  |                     $suggestionBox.hide(); | 
					
						
							|  |  |  |                     isShowing = false; | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Get suggestions & cache
 | 
					
						
							|  |  |  |                 function getSuggestions(input, url) { | 
					
						
							| 
									
										
										
										
											2016-06-04 21:54:31 +08:00
										 |  |  |                     let hasQuery = url.indexOf('?') !== -1; | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                     let searchUrl = url + (hasQuery ? '&' : '?') + 'search=' + encodeURIComponent(input); | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     // Get from local cache if exists
 | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                     if (typeof localCache[searchUrl] !== 'undefined') { | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         return new Promise((resolve, reject) => { | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                             resolve(localCache[searchUrl]); | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         }); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-04 22:37:28 +08:00
										 |  |  |                     return $http.get(searchUrl).then(response => { | 
					
						
							|  |  |  |                         localCache[searchUrl] = response.data; | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  |                         return response.data; | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }]); | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |     ngApp.directive('entityLinkSelector', [function($http) { | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2016-12-31 22:27:40 +08:00
										 |  |  |             restrict: 'A', | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |             link: function(scope, element, attrs) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 const selectButton = element.find('.entity-link-selector-confirm'); | 
					
						
							|  |  |  |                 let callback = false; | 
					
						
							|  |  |  |                 let entitySelection = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Handle entity selection change, Stores the selected entity locally
 | 
					
						
							|  |  |  |                 function entitySelectionChange(entity) { | 
					
						
							|  |  |  |                     entitySelection = entity; | 
					
						
							|  |  |  |                     if (entity === null) { | 
					
						
							|  |  |  |                         selectButton.attr('disabled', 'true'); | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         selectButton.removeAttr('disabled'); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 events.listen('entity-select-change', entitySelectionChange); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Handle selection confirm button click
 | 
					
						
							|  |  |  |                 selectButton.click(event => { | 
					
						
							|  |  |  |                     hide(); | 
					
						
							|  |  |  |                     if (entitySelection !== null) callback(entitySelection); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Show selector interface
 | 
					
						
							|  |  |  |                 function show() { | 
					
						
							|  |  |  |                     element.fadeIn(240); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Hide selector interface
 | 
					
						
							|  |  |  |                 function hide() { | 
					
						
							|  |  |  |                     element.fadeOut(240); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Listen to confirmation of entity selections (doubleclick)
 | 
					
						
							|  |  |  |                 events.listen('entity-select-confirm', entity => { | 
					
						
							|  |  |  |                     hide(); | 
					
						
							|  |  |  |                     callback(entity); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Show entity selector, Accessible globally, and store the callback
 | 
					
						
							|  |  |  |                 window.showEntityLinkSelector = function(passedCallback) { | 
					
						
							|  |  |  |                     show(); | 
					
						
							|  |  |  |                     callback = passedCallback; | 
					
						
							|  |  |  |                 }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |     ngApp.directive('entitySelector', ['$http', '$sce', function ($http, $sce) { | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             restrict: 'A', | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |             scope: true, | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |             link: function (scope, element, attrs) { | 
					
						
							|  |  |  |                 scope.loading = true; | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                 scope.entityResults = false; | 
					
						
							|  |  |  |                 scope.search = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Add input for forms
 | 
					
						
							|  |  |  |                 const input = element.find('[entity-selector-input]').first(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |                 // Detect double click events
 | 
					
						
							| 
									
										
										
										
											2016-12-20 03:16:31 +08:00
										 |  |  |                 let lastClick = 0; | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |                 function isDoubleClick() { | 
					
						
							|  |  |  |                     let now = Date.now(); | 
					
						
							|  |  |  |                     let answer = now - lastClick < 300; | 
					
						
							|  |  |  |                     lastClick = now; | 
					
						
							|  |  |  |                     return answer; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                 // Listen to entity item clicks
 | 
					
						
							|  |  |  |                 element.on('click', '.entity-list a', function(event) { | 
					
						
							|  |  |  |                     event.preventDefault(); | 
					
						
							|  |  |  |                     event.stopPropagation(); | 
					
						
							|  |  |  |                     let item = $(this).closest('[data-entity-type]'); | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |                     itemSelect(item, isDoubleClick()); | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                 }); | 
					
						
							|  |  |  |                 element.on('click', '[data-entity-type]', function(event) { | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |                     itemSelect($(this), isDoubleClick()); | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Select entity action
 | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |                 function itemSelect(item, doubleClick) { | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                     let entityType = item.attr('data-entity-type'); | 
					
						
							|  |  |  |                     let entityId = item.attr('data-entity-id'); | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  |                     let isSelected = !item.hasClass('selected') || doubleClick; | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                     element.find('.selected').removeClass('selected').removeClass('primary-background'); | 
					
						
							|  |  |  |                     if (isSelected) item.addClass('selected').addClass('primary-background'); | 
					
						
							|  |  |  |                     let newVal = isSelected ? `${entityType}:${entityId}` : ''; | 
					
						
							|  |  |  |                     input.val(newVal); | 
					
						
							| 
									
										
										
										
											2016-09-02 03:36:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     if (!isSelected) { | 
					
						
							|  |  |  |                         events.emit('entity-select-change', null); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (!doubleClick && !isSelected) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     let link = item.find('.entity-list-item-link').attr('href'); | 
					
						
							|  |  |  |                     let name = item.find('.entity-list-item-name').text(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (doubleClick) { | 
					
						
							|  |  |  |                         events.emit('entity-select-confirm', { | 
					
						
							|  |  |  |                             id: Number(entityId), | 
					
						
							|  |  |  |                             name: name, | 
					
						
							|  |  |  |                             link: link | 
					
						
							|  |  |  |                         }); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (isSelected) { | 
					
						
							|  |  |  |                         events.emit('entity-select-change', { | 
					
						
							|  |  |  |                             id: Number(entityId), | 
					
						
							|  |  |  |                             name: name, | 
					
						
							|  |  |  |                             link: link | 
					
						
							|  |  |  |                         }); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Get search url with correct types
 | 
					
						
							|  |  |  |                 function getSearchUrl() { | 
					
						
							|  |  |  |                     let types = (attrs.entityTypes) ? encodeURIComponent(attrs.entityTypes) : encodeURIComponent('page,book,chapter'); | 
					
						
							| 
									
										
										
										
											2016-08-14 19:29:35 +08:00
										 |  |  |                     return window.baseUrl(`/ajax/search/entities?types=${types}`); | 
					
						
							| 
									
										
										
										
											2016-06-12 19:14:14 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Get initial contents
 | 
					
						
							|  |  |  |                 $http.get(getSearchUrl()).then(resp => { | 
					
						
							|  |  |  |                     scope.entityResults = $sce.trustAsHtml(resp.data); | 
					
						
							|  |  |  |                     scope.loading = false; | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // Search when typing
 | 
					
						
							|  |  |  |                 scope.searchEntities = function() { | 
					
						
							|  |  |  |                     scope.loading = true; | 
					
						
							|  |  |  |                     input.val(''); | 
					
						
							|  |  |  |                     let url = getSearchUrl() + '&term=' + encodeURIComponent(scope.search); | 
					
						
							|  |  |  |                     $http.get(url).then(resp => { | 
					
						
							|  |  |  |                         scope.entityResults = $sce.trustAsHtml(resp.data); | 
					
						
							|  |  |  |                         scope.loading = false; | 
					
						
							|  |  |  |                     }); | 
					
						
							|  |  |  |                 }; | 
					
						
							| 
									
										
										
										
											2016-06-12 04:04:18 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }]); | 
					
						
							| 
									
										
										
										
											2016-05-16 03:12:53 +08:00
										 |  |  | }; |