mirror of https://github.com/Requarks/wiki.git
27 changed files with 437 additions and 84 deletions
Split View
Diff Options
-
4README.md
-
2assets/css/app.css
-
2assets/js/app.js
-
45assets/js/libs.js
-
4client/content/create.md
-
8client/js/app.js
-
16client/js/helpers/form.js
-
11client/js/helpers/pages.js
-
32client/js/pages/create.js
-
12client/js/pages/source.js
-
34client/js/pages/view.js
-
13client/scss/components/_editor.scss
-
2client/scss/layout/_content.scss
-
4client/scss/layout/_header.scss
-
96controllers/pages.js
-
15gulpfile.js
-
72models/entries.js
-
5models/markdown.js
-
10package.json
-
8views/common/footer.pug
-
10views/common/header.pug
-
17views/modals/create.pug
-
14views/modals/edit.pug
-
36views/pages/create.pug
-
18views/pages/edit.pug
-
9views/pages/source.pug
-
22views/pages/view.pug
2
assets/css/app.css
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1 +1 @@ |
|||
"use strict";function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var _createClass=function(){function e(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}return function(t,n,a){return n&&e(t.prototype,n),a&&e(t,a),t}}(),Alerts=function(){function e(){_classCallCheck(this,e);var t=this;t.mdl=new Vue({el:"#alerts",data:{children:[]},methods:{acknowledge:function(e){t.close(e)}}}),t.uidNext=1}return _createClass(e,[{key:"push",value:function(e){var t=this,n=_.defaults(e,{_uid:t.uidNext,class:"is-info",message:"---",sticky:!1,title:"---"});t.mdl.children.push(n),n.sticky||_.delay(function(){t.close(n._uid)},5e3),t.uidNext++}},{key:"pushError",value:function(e,t){this.push({class:"is-danger",message:t,sticky:!1,title:e})}},{key:"pushSuccess",value:function(e,t){this.push({class:"is-success",message:t,sticky:!1,title:e})}},{key:"close",value:function(e){var t=this,n=_.findIndex(t.mdl.children,["_uid",e]),a=_.nth(t.mdl.children,n);n>=0&&a&&(a.class+=" exit",t.mdl.children.$set(n,a),_.delay(function(){t.mdl.children.$remove(a)},500))}}]),e}();jQuery(document).ready(function(e){e("a").smoothScroll({speed:400,offset:-20});new Sticky(".stickyscroll");e(window).bind("beforeunload",function(){e("#notifload").addClass("active")}),e(document).ajaxSend(function(){e("#notifload").addClass("active")}).ajaxComplete(function(){e("#notifload").removeClass("active")});var t=new Alerts;if(alertsData&&_.forEach(alertsData,function(e){t.push(e)}),1===e("#mk-editor").length)var n=new SimpleMDE({autofocus:!0,autoDownloadFontAwesome:!1,element:e("#mk-editor").get(0),hideIcons:["heading","quote"],placeholder:"Enter Markdown formatted content here...",showIcons:["strikethrough","heading-1","heading-2","heading-3","code","table","horizontal-rule"],spellChecker:!1,status:!1});e("#page-type-edit").length&&(e(".btn-edit-discard").on("click",function(t){e("#modal-edit-discard").toggleClass("is-active")}),e(".btn-edit-save").on("click",function(a){e.ajax(window.location.href,{data:{markdown:n.value()},dataType:"json",method:"PUT"}).then(function(n,a,o){n.ok?window.location.assign("/"+e("#page-type-edit").data("entrypath")):t.pushError("Something went wrong",n.error)},function(e,n,a){t.pushError("Something went wrong","Save operation failed.")})}))}); |
|||
"use strict";function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function setInputSelection(e,t,n){if(e.focus(),"undefined"!=typeof e.selectionStart)e.selectionStart=t,e.selectionEnd=n;else if(document.selection&&document.selection.createRange){e.select();var a=document.selection.createRange();a.collapse(!0),a.moveEnd("character",n),a.moveStart("character",t),a.select()}}function makeSafePath(e){var t=_.split(_.trim(e),"/");return t=_.map(t,function(e){return _.kebabCase(_.deburr(_.trim(e)))}),_.join(_.filter(t,function(e){return!_.isEmpty(e)}),"/")}var _createClass=function(){function e(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}return function(t,n,a){return n&&e(t.prototype,n),a&&e(t,a),t}}(),Alerts=function(){function e(){_classCallCheck(this,e);var t=this;t.mdl=new Vue({el:"#alerts",data:{children:[]},methods:{acknowledge:function(e){t.close(e)}}}),t.uidNext=1}return _createClass(e,[{key:"push",value:function(e){var t=this,n=_.defaults(e,{_uid:t.uidNext,class:"is-info",message:"---",sticky:!1,title:"---"});t.mdl.children.push(n),n.sticky||_.delay(function(){t.close(n._uid)},5e3),t.uidNext++}},{key:"pushError",value:function(e,t){this.push({class:"is-danger",message:t,sticky:!1,title:e})}},{key:"pushSuccess",value:function(e,t){this.push({class:"is-success",message:t,sticky:!1,title:e})}},{key:"close",value:function(e){var t=this,n=_.findIndex(t.mdl.children,["_uid",e]),a=_.nth(t.mdl.children,n);n>=0&&a&&(a.class+=" exit",t.mdl.children.$set(n,a),_.delay(function(){t.mdl.children.$remove(a)},500))}}]),e}();jQuery(document).ready(function(e){e("a").smoothScroll({speed:400,offset:-20});new Sticky(".stickyscroll");e(window).bind("beforeunload",function(){e("#notifload").addClass("active")}),e(document).ajaxSend(function(){e("#notifload").addClass("active")}).ajaxComplete(function(){e("#notifload").removeClass("active")});var t=new Alerts;if(alertsData&&_.forEach(alertsData,function(e){t.push(e)}),1===e("#mk-editor").length)var n=new SimpleMDE({autofocus:!0,autoDownloadFontAwesome:!1,element:e("#mk-editor").get(0),hideIcons:["heading","quote"],placeholder:"Enter Markdown formatted content here...",showIcons:["strikethrough","heading-1","heading-2","heading-3","code","table","horizontal-rule"],spellChecker:!1,status:!1});if(e("#page-type-view").length&&!function(){var t="home"!==e("#page-type-view").data("entrypath")?e("#page-type-view").data("entrypath")+"/":"",n=t+"new-page";e(".btn-create-prompt").on("click",function(a){e("#txt-create-prompt").val(n),e("#modal-create-prompt").toggleClass("is-active"),setInputSelection(e("#txt-create-prompt").get(0),t.length,n.length),e("#txt-create-prompt").removeClass("is-danger").next().addClass("is-hidden")}),e("#txt-create-prompt").on("keypress",function(t){13===t.which&&e(".btn-create-go").trigger("click")}),e(".btn-create-go").on("click",function(t){var n=makeSafePath(e("#txt-create-prompt").val());_.isEmpty(n)?e("#txt-create-prompt").addClass("is-danger").next().removeClass("is-hidden"):(e("#txt-create-prompt").parent().addClass("is-loading"),window.location.assign("/create/"+n))})}(),e("#page-type-create").length&&(e(".btn-create-discard").on("click",function(t){e("#modal-create-discard").toggleClass("is-active")}),e(".btn-create-save").on("click",function(a){e.ajax(window.location.href,{data:{markdown:n.value()},dataType:"json",method:"PUT"}).then(function(n,a,o){n.ok?window.location.assign("/"+e("#page-type-create").data("entrypath")):t.pushError("Something went wrong",n.error)},function(e,n,a){t.pushError("Something went wrong","Save operation failed.")})})),e("#page-type-edit").length&&(e(".btn-edit-discard").on("click",function(t){e("#modal-edit-discard").toggleClass("is-active")}),e(".btn-edit-save").on("click",function(a){e.ajax(window.location.href,{data:{markdown:n.value()},dataType:"json",method:"PUT"}).then(function(n,a,o){n.ok?window.location.assign("/"+e("#page-type-edit").data("entrypath")):t.pushError("Something went wrong",n.error)},function(e,n,a){t.pushError("Something went wrong","Save operation failed.")})})),e("#page-type-source").length){var a=ace.edit("source-display");a.setTheme("ace/theme/tomorrow_night"),a.getSession().setMode("ace/mode/markdown"),a.setReadOnly(!0),a.renderer.updateFull(),console.log(a.getSession().getLength())}}); |
45
assets/js/libs.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,4 @@ |
|||
<!-- TITLE: {TITLE} --> |
|||
<!-- SUBTITLE: A quick summary of {TITLE} --> |
|||
|
|||
# Header |
@ -0,0 +1,16 @@ |
|||
|
|||
function setInputSelection(input, startPos, endPos) { |
|||
input.focus(); |
|||
if (typeof input.selectionStart != "undefined") { |
|||
input.selectionStart = startPos; |
|||
input.selectionEnd = endPos; |
|||
} else if (document.selection && document.selection.createRange) { |
|||
// IE branch
|
|||
input.select(); |
|||
var range = document.selection.createRange(); |
|||
range.collapse(true); |
|||
range.moveEnd("character", endPos); |
|||
range.moveStart("character", startPos); |
|||
range.select(); |
|||
} |
|||
} |
@ -0,0 +1,11 @@ |
|||
|
|||
function makeSafePath(rawPath) { |
|||
|
|||
let rawParts = _.split(_.trim(rawPath), '/'); |
|||
rawParts = _.map(rawParts, (r) => { |
|||
return _.kebabCase(_.deburr(_.trim(r))); |
|||
}); |
|||
|
|||
return _.join(_.filter(rawParts, (r) => { return !_.isEmpty(r); }), '/'); |
|||
|
|||
} |
@ -0,0 +1,32 @@ |
|||
|
|||
if($('#page-type-create').length) { |
|||
|
|||
//-> Discard
|
|||
|
|||
$('.btn-create-discard').on('click', (ev) => { |
|||
$('#modal-create-discard').toggleClass('is-active'); |
|||
}); |
|||
|
|||
//-> Save
|
|||
|
|||
$('.btn-create-save').on('click', (ev) => { |
|||
|
|||
$.ajax(window.location.href, { |
|||
data: { |
|||
markdown: mde.value() |
|||
}, |
|||
dataType: 'json', |
|||
method: 'PUT' |
|||
}).then((rData, rStatus, rXHR) => { |
|||
if(rData.ok) { |
|||
window.location.assign('/' + $('#page-type-create').data('entrypath')); |
|||
} else { |
|||
alerts.pushError('Something went wrong', rData.error); |
|||
} |
|||
}, (rXHR, rStatus, err) => { |
|||
alerts.pushError('Something went wrong', 'Save operation failed.'); |
|||
}); |
|||
|
|||
}); |
|||
|
|||
} |
@ -0,0 +1,12 @@ |
|||
|
|||
if($('#page-type-source').length) { |
|||
|
|||
var scEditor = ace.edit("source-display"); |
|||
scEditor.setTheme("ace/theme/tomorrow_night"); |
|||
scEditor.getSession().setMode("ace/mode/markdown"); |
|||
scEditor.setReadOnly(true); |
|||
scEditor.renderer.updateFull(); |
|||
|
|||
console.log(scEditor.getSession().getLength()); |
|||
|
|||
} |
@ -0,0 +1,34 @@ |
|||
|
|||
if($('#page-type-view').length) { |
|||
|
|||
let currentBasePath = ($('#page-type-view').data('entrypath') !== 'home') ? $('#page-type-view').data('entrypath') + '/' : ''; |
|||
let suggestedCreatePath = currentBasePath + 'new-page'; |
|||
|
|||
//-> Create New Document
|
|||
|
|||
$('.btn-create-prompt').on('click', (ev) => { |
|||
$('#txt-create-prompt').val(suggestedCreatePath); |
|||
$('#modal-create-prompt').toggleClass('is-active'); |
|||
setInputSelection($('#txt-create-prompt').get(0), currentBasePath.length, suggestedCreatePath.length); |
|||
$('#txt-create-prompt').removeClass('is-danger').next().addClass('is-hidden'); |
|||
}); |
|||
|
|||
$('#txt-create-prompt').on('keypress', (ev) => { |
|||
if(ev.which === 13) { |
|||
$('.btn-create-go').trigger('click'); |
|||
} |
|||
}); |
|||
|
|||
$('.btn-create-go').on('click', (ev) => { |
|||
|
|||
let newDocPath = makeSafePath($('#txt-create-prompt').val()); |
|||
if(_.isEmpty(newDocPath)) { |
|||
$('#txt-create-prompt').addClass('is-danger').next().removeClass('is-hidden'); |
|||
} else { |
|||
$('#txt-create-prompt').parent().addClass('is-loading'); |
|||
window.location.assign('/create/' + newDocPath); |
|||
} |
|||
|
|||
}); |
|||
|
|||
} |
@ -0,0 +1,17 @@ |
|||
|
|||
.modal#modal-create-prompt |
|||
.modal-background |
|||
.modal-container |
|||
.modal-content |
|||
.card.is-fullwidth |
|||
header.card-header |
|||
p.card-header-title Create New Page |
|||
.card-content |
|||
.content |
|||
label.label Enter the new document path: |
|||
p.control |
|||
input.input(type='text', placeholder='page-name')#txt-create-prompt |
|||
span.help.is-danger.is-hidden This document path is invalid! |
|||
footer.card-footer |
|||
a.card-footer-item.btn-create-prompt Discard |
|||
a.card-footer-item.btn-create-go Create |
@ -0,0 +1,14 @@ |
|||
|
|||
.modal#modal-edit-discard |
|||
.modal-background |
|||
.modal-container |
|||
.modal-content |
|||
.card.is-fullwidth |
|||
header.card-header.is-warning |
|||
p.card-header-title Discard? |
|||
.card-content |
|||
.content |
|||
| Are you sure you want to leave this page and loose any modifications? |
|||
footer.card-footer |
|||
a.card-footer-item.btn-edit-discard Stay on page |
|||
a.card-footer-item(href='/' + pageData.meta.path) Discard |
@ -0,0 +1,36 @@ |
|||
extends ../layout |
|||
|
|||
block rootNavCenter |
|||
h2.nav-item Create New Document |
|||
|
|||
block rootNavRight |
|||
i.nav-item#notifload |
|||
span.nav-item |
|||
a.button.is-warning.btn-create-discard |
|||
span.icon |
|||
i.fa.fa-times |
|||
span Discard |
|||
a.button.is-success.btn-create-save |
|||
span.icon |
|||
i.fa.fa-check |
|||
span Save Document |
|||
|
|||
block content |
|||
|
|||
#page-type-create(data-entrypath=pageData.meta.path) |
|||
section.section.is-small |
|||
textarea#mk-editor= pageData.markdown |
|||
|
|||
.modal#modal-create-discard |
|||
.modal-background |
|||
.modal-container |
|||
.modal-content |
|||
.card.is-fullwidth |
|||
header.card-header.is-warning |
|||
p.card-header-title Discard? |
|||
.card-content |
|||
.content |
|||
| Are you sure you want to leave this page and loose anything you wrote so far? |
|||
footer.card-footer |
|||
a.card-footer-item.btn-create-discard Stay on page |
|||
a.card-footer-item(href='/') Discard |
@ -0,0 +1,9 @@ |
|||
extends ../layout |
|||
|
|||
block content |
|||
|
|||
#page-type-source(data-entrypath=pageData.meta.path) |
|||
.ace-container |
|||
#source-display= pageData.markdown |
|||
|
|||
include ../modals/create |
Write
Preview
Loading…
Cancel
Save