Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
405e23f0
Commit
405e23f0
authored
Sep 17, 2016
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added uploads handler
parent
1dcd1157
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
79 additions
and
4 deletions
+79
-4
app.js
assets/js/app.js
+2
-2
editor-image.js
client/js/components/editor-image.js
+25
-0
editor.js
client/js/components/editor.js
+4
-0
uploads.js
controllers/uploads.js
+34
-0
git.js
models/git.js
+11
-0
server.js
server.js
+2
-1
editor-image.pug
views/modals/editor-image.pug
+1
-1
No files found.
assets/js/app.js
View file @
405e23f0
"use strict"
;
function
_classCallCheck
(
e
,
t
){
if
(
!
(
e
instanceof
t
))
throw
new
TypeError
(
"Cannot call a class as a function"
)}
function
setInputSelection
(
e
,
t
,
a
){
if
(
e
.
focus
(),
"undefined"
!=
typeof
e
.
selectionStart
)
e
.
selectionStart
=
t
,
e
.
selectionEnd
=
a
;
else
if
(
document
.
selection
&&
document
.
selection
.
createRange
){
e
.
select
();
var
o
=
document
.
selection
.
createRange
();
o
.
collapse
(
!
0
),
o
.
moveEnd
(
"character"
,
a
),
o
.
moveStart
(
"character"
,
t
),
o
.
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
a
=
0
;
a
<
t
.
length
;
a
++
){
var
o
=
t
[
a
];
o
.
enumerable
=
o
.
enumerable
||!
1
,
o
.
configurable
=!
0
,
"value"
in
o
&&
(
o
.
writable
=!
0
),
Object
.
defineProperty
(
e
,
o
.
key
,
o
)}}
return
function
(
t
,
a
,
o
){
return
a
&&
e
(
t
.
prototype
,
a
),
o
&&
e
(
t
,
o
),
t
}}();
jQuery
(
document
).
ready
(
function
(
e
){
e
(
"a"
).
smoothScroll
({
speed
:
400
,
offset
:
-
70
});
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
;
alertsData
&&
_
.
forEach
(
alertsData
,
function
(
e
){
t
.
push
(
e
)});
var
a
=
io
(
ioHost
);
if
(
jQuery
(
document
).
ready
(
function
(
e
){
if
(
e
(
"#search-input"
).
length
){
e
(
"#search-input"
).
focus
(),
Vue
.
transition
(
"slide"
,{
enterClass
:
"slideInDown"
,
leaveClass
:
"fadeOutUp"
}),
e
(
".searchresults"
).
css
(
"display"
,
"block"
);
var
t
=
new
Vue
({
el
:
"#header-container"
,
data
:{
searchq
:
""
,
searchres
:[],
searchsuggest
:[],
searchload
:
0
,
searchactive
:
!
1
,
searchmoveidx
:
0
,
searchmovekey
:
""
,
searchmovearr
:[]},
watch
:{
searchq
:
function
(
e
,
o
){
t
.
searchmoveidx
=
0
,
e
.
length
>=
3
?(
t
.
searchactive
=!
0
,
t
.
searchload
++
,
a
.
emit
(
"search"
,{
terms
:
e
},
function
(
e
){
t
.
searchres
=
e
.
match
,
t
.
searchsuggest
=
e
.
suggest
,
t
.
searchmovearr
=
_
.
concat
([],
t
.
searchres
,
t
.
searchsuggest
),
t
.
searchload
>
0
&&
t
.
searchload
--
})):(
t
.
searchactive
=!
1
,
t
.
searchres
=
[],
t
.
searchsuggest
=
[],
t
.
searchmovearr
=
[],
t
.
searchload
=
0
)},
searchmoveidx
:
function
(
e
,
a
){
e
>
0
?
t
.
searchmovekey
=
t
.
searchmovearr
[
e
-
1
].
document
?
"res."
+
t
.
searchmovearr
[
e
-
1
].
document
.
entryPath
:
"sug."
+
t
.
searchmovearr
[
e
-
1
]:
t
.
searchmovekey
=
""
}},
methods
:{
useSuggestion
:
function
(
e
){
t
.
searchq
=
e
},
closeSearch
:
function
(){
t
.
searchq
=
""
},
moveSelectSearch
:
function
(){
if
(
!
(
t
.
searchmoveidx
<
1
)){
var
e
=
t
.
searchmoveidx
-
1
;
t
.
searchmovearr
[
e
].
document
?
window
.
location
.
assign
(
"/"
+
t
.
searchmovearr
[
e
].
document
.
entryPath
):
t
.
searchq
=
t
.
searchmovearr
[
e
]}},
moveDownSearch
:
function
(){
t
.
searchmoveidx
<
t
.
searchmovearr
.
length
&&
t
.
searchmoveidx
++
},
moveUpSearch
:
function
(){
t
.
searchmoveidx
>
0
&&
t
.
searchmoveidx
--
}}});
e
(
"main"
).
on
(
"click"
,
t
.
closeSearch
)}}),
e
(
"#page-type-view"
).
length
&&!
function
(){
var
a
=
"home"
!==
e
(
"#page-type-view"
).
data
(
"entrypath"
)?
e
(
"#page-type-view"
).
data
(
"entrypath"
):
""
,
o
=
a
+
"/new-page"
;
e
(
".btn-create-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-create-prompt"
).
val
(
o
),
e
(
"#modal-create-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-create-prompt"
).
get
(
0
),
a
.
length
+
1
,
o
.
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
a
=
makeSafePath
(
e
(
"#txt-create-prompt"
).
val
());
_
.
isEmpty
(
a
)?
e
(
"#txt-create-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-create-prompt"
).
parent
().
addClass
(
"is-loading"
),
window
.
location
.
assign
(
"/create/"
+
a
))}),
""
!==
a
&&
e
(
".btn-move-prompt"
).
removeClass
(
"is-hidden"
);
var
n
=
_
.
lastIndexOf
(
a
,
"/"
)
+
1
;
e
(
".btn-move-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-move-prompt"
).
val
(
a
),
e
(
"#modal-move-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-move-prompt"
).
get
(
0
),
n
,
a
.
length
),
e
(
"#txt-move-prompt"
).
removeClass
(
"is-danger"
).
next
().
addClass
(
"is-hidden"
)}),
e
(
"#txt-move-prompt"
).
on
(
"keypress"
,
function
(
t
){
13
===
t
.
which
&&
e
(
".btn-move-go"
).
trigger
(
"click"
)}),
e
(
".btn-move-go"
).
on
(
"click"
,
function
(
o
){
var
n
=
makeSafePath
(
e
(
"#txt-move-prompt"
).
val
());
_
.
isEmpty
(
n
)
||
n
===
a
||
"home"
===
n
?
e
(
"#txt-move-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-move-prompt"
).
parent
().
addClass
(
"is-loading"
),
e
.
ajax
(
window
.
location
.
href
,{
data
:{
move
:
n
},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
a
,
o
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
n
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)}))})}(),
e
(
"#page-type-create"
).
length
){
var
o
;
!
function
(){
var
a
=
e
(
"#page-type-create"
).
data
(
"entrypath"
);
e
(
".btn-create-discard"
).
on
(
"click"
,
function
(
t
){
e
(
"#modal-create-discard"
).
toggleClass
(
"is-active"
)}),
1
===
e
(
"#mk-editor"
).
length
&&!
function
(){
var
a
=!
1
,
n
=
ace
.
edit
(
"codeblock-editor"
);
n
.
setTheme
(
"ace/theme/tomorrow_night"
),
n
.
getSession
().
setMode
(
"ace/mode/markdown"
),
n
.
setOption
(
"fontSize"
,
"14px"
),
n
.
setOption
(
"hScrollBarAlwaysVisible"
,
!
1
),
n
.
setOption
(
"wrap"
,
!
0
);
var
i
=
ace
.
require
(
"ace/ext/modelist"
),
r
=
new
Vue
({
el
:
"#modal-editor-codeblock"
,
data
:{
modes
:
i
.
modesByName
,
modeSelected
:
"text"
},
watch
:{
modeSelected
:
function
(
e
,
t
){
s
(
e
).
done
(
function
(){
ace
.
require
(
"ace/mode/"
+
e
),
n
.
getSession
().
setMode
(
"ace/mode/"
+
e
)})}},
methods
:{
cancel
:
function
(
t
){
a
=!
1
,
e
(
"#modal-editor-codeblock"
).
slideUp
()},
insertCode
:
function
(
e
){
o
.
codemirror
.
doc
.
somethingSelected
()
&&
o
.
codemirror
.
execCommand
(
"singleSelection"
);
var
t
=
"
\
n```"
+
r
.
modeSelected
+
"
\
n"
+
n
.
getValue
()
+
"
\
n```
\
n"
;
o
.
codemirror
.
doc
.
replaceSelection
(
t
),
r
.
cancel
()}}}),
c
=
[],
s
=
function
(
t
){
return
e
.
ajax
({
url
:
"/js/ace/mode-"
+
t
+
".js"
,
dataType
:
"script"
,
cache
:
!
0
,
beforeSend
:
function
(){
if
(
_
.
includes
(
c
,
t
))
return
!
1
},
success
:
function
(){
c
.
push
(
t
)}})};
o
=
new
SimpleMDE
({
autofocus
:
!
0
,
autoDownloadFontAwesome
:
!
1
,
element
:
e
(
"#mk-editor"
).
get
(
0
),
placeholder
:
"Enter Markdown formatted content here..."
,
spellChecker
:
!
1
,
status
:
!
1
,
toolbar
:[{
name
:
"bold"
,
action
:
SimpleMDE
.
toggleBold
,
className
:
"fa fa-bold"
,
title
:
"Bold"
},{
name
:
"italic"
,
action
:
SimpleMDE
.
toggleItalic
,
className
:
"fa fa-italic"
,
title
:
"Italic"
},{
name
:
"strikethrough"
,
action
:
SimpleMDE
.
toggleStrikethrough
,
className
:
"fa fa-strikethrough"
,
title
:
"Strikethrough"
},
"|"
,{
name
:
"heading-1"
,
action
:
SimpleMDE
.
toggleHeading1
,
className
:
"fa fa-header fa-header-x fa-header-1"
,
title
:
"Big Heading"
},{
name
:
"heading-2"
,
action
:
SimpleMDE
.
toggleHeading2
,
className
:
"fa fa-header fa-header-x fa-header-2"
,
title
:
"Medium Heading"
},{
name
:
"heading-3"
,
action
:
SimpleMDE
.
toggleHeading3
,
className
:
"fa fa-header fa-header-x fa-header-3"
,
title
:
"Small Heading"
},{
name
:
"quote"
,
action
:
SimpleMDE
.
toggleBlockquote
,
className
:
"fa fa-quote-left"
,
title
:
"Quote"
},
"|"
,{
name
:
"unordered-list"
,
action
:
SimpleMDE
.
toggleUnorderedList
,
className
:
"fa fa-list-ul"
,
title
:
"Bullet List"
},{
name
:
"ordered-list"
,
action
:
SimpleMDE
.
toggleOrderedList
,
className
:
"fa fa-list-ol"
,
title
:
"Numbered List"
},
"|"
,{
name
:
"link"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
e
(
"#modal-editor-link"
).
slideToggle
())},
className
:
"fa fa-link"
,
title
:
"Insert Link"
},{
name
:
"image"
,
action
:
function
(
t
){
e
(
"#modal-editor-image"
).
slideDown
()},
className
:
"fa fa-image"
,
title
:
"Insert Image"
},{
name
:
"file"
,
action
:
function
(
e
){},
className
:
"fa fa-file-text-o"
,
title
:
"Insert File"
},
"|"
,{
name
:
"inline-code"
,
action
:
function
(
e
){
if
(
!
e
.
codemirror
.
doc
.
somethingSelected
())
return
t
.
pushError
(
"Invalid selection"
,
"You must select at least 1 character first."
);
var
a
=
e
.
codemirror
.
doc
.
getSelections
();
a
=
_
.
map
(
a
,
function
(
e
){
return
"`"
+
e
+
"`"
}),
e
.
codemirror
.
doc
.
replaceSelections
(
a
)},
className
:
"fa fa-terminal"
,
title
:
"Inline Code"
},{
name
:
"code-block"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
o
.
codemirror
.
doc
.
somethingSelected
()?
n
.
setValue
(
o
.
codemirror
.
doc
.
getSelection
()):
n
.
setValue
(
""
),
e
(
"#modal-editor-codeblock"
).
slideDown
(
400
,
function
(){
n
.
resize
(),
n
.
focus
()}))},
className
:
"fa fa-code"
,
title
:
"Code Block"
},
"|"
,{
name
:
"table"
,
action
:
function
(
e
){},
className
:
"fa fa-table"
,
title
:
"Insert Table"
},{
name
:
"horizontal-rule"
,
action
:
SimpleMDE
.
drawHorizontalRule
,
className
:
"fa fa-minus"
,
title
:
"Horizontal Rule"
}],
shortcuts
:{
toggleBlockquote
:
null
,
toggleFullScreen
:
null
}})}(),
e
(
".btn-edit-save"
).
on
(
"click"
,
function
(
n
){
e
.
ajax
(
window
.
location
.
href
,{
data
:{
markdown
:
o
.
value
()},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
o
,
n
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
a
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)})})}()}
if
(
e
(
"#page-type-edit"
).
length
){
var
o
;
!
function
(){
var
a
=
e
(
"#page-type-edit"
).
data
(
"entrypath"
);
e
(
".btn-edit-discard"
).
on
(
"click"
,
function
(
t
){
e
(
"#modal-edit-discard"
).
toggleClass
(
"is-active"
)}),
1
===
e
(
"#mk-editor"
).
length
&&!
function
(){
var
a
=!
1
,
n
=
ace
.
edit
(
"codeblock-editor"
);
n
.
setTheme
(
"ace/theme/tomorrow_night"
),
n
.
getSession
().
setMode
(
"ace/mode/markdown"
),
n
.
setOption
(
"fontSize"
,
"14px"
),
n
.
setOption
(
"hScrollBarAlwaysVisible"
,
!
1
),
n
.
setOption
(
"wrap"
,
!
0
);
var
i
=
ace
.
require
(
"ace/ext/modelist"
),
r
=
new
Vue
({
el
:
"#modal-editor-codeblock"
,
data
:{
modes
:
i
.
modesByName
,
modeSelected
:
"text"
},
watch
:{
modeSelected
:
function
(
e
,
t
){
s
(
e
).
done
(
function
(){
ace
.
require
(
"ace/mode/"
+
e
),
n
.
getSession
().
setMode
(
"ace/mode/"
+
e
)})}},
methods
:{
cancel
:
function
(
t
){
a
=!
1
,
e
(
"#modal-editor-codeblock"
).
slideUp
()},
insertCode
:
function
(
e
){
o
.
codemirror
.
doc
.
somethingSelected
()
&&
o
.
codemirror
.
execCommand
(
"singleSelection"
);
var
t
=
"
\
n```"
+
r
.
modeSelected
+
"
\
n"
+
n
.
getValue
()
+
"
\
n```
\
n"
;
o
.
codemirror
.
doc
.
replaceSelection
(
t
),
r
.
cancel
()}}}),
c
=
[],
s
=
function
(
t
){
return
e
.
ajax
({
url
:
"/js/ace/mode-"
+
t
+
".js"
,
dataType
:
"script"
,
cache
:
!
0
,
beforeSend
:
function
(){
if
(
_
.
includes
(
c
,
t
))
return
!
1
},
success
:
function
(){
c
.
push
(
t
)}})};
o
=
new
SimpleMDE
({
autofocus
:
!
0
,
autoDownloadFontAwesome
:
!
1
,
element
:
e
(
"#mk-editor"
).
get
(
0
),
placeholder
:
"Enter Markdown formatted content here..."
,
spellChecker
:
!
1
,
status
:
!
1
,
toolbar
:[{
name
:
"bold"
,
action
:
SimpleMDE
.
toggleBold
,
className
:
"fa fa-bold"
,
title
:
"Bold"
},{
name
:
"italic"
,
action
:
SimpleMDE
.
toggleItalic
,
className
:
"fa fa-italic"
,
title
:
"Italic"
},{
name
:
"strikethrough"
,
action
:
SimpleMDE
.
toggleStrikethrough
,
className
:
"fa fa-strikethrough"
,
title
:
"Strikethrough"
},
"|"
,{
name
:
"heading-1"
,
action
:
SimpleMDE
.
toggleHeading1
,
className
:
"fa fa-header fa-header-x fa-header-1"
,
title
:
"Big Heading"
},{
name
:
"heading-2"
,
action
:
SimpleMDE
.
toggleHeading2
,
className
:
"fa fa-header fa-header-x fa-header-2"
,
title
:
"Medium Heading"
},{
name
:
"heading-3"
,
action
:
SimpleMDE
.
toggleHeading3
,
className
:
"fa fa-header fa-header-x fa-header-3"
,
title
:
"Small Heading"
},{
name
:
"quote"
,
action
:
SimpleMDE
.
toggleBlockquote
,
className
:
"fa fa-quote-left"
,
title
:
"Quote"
},
"|"
,{
name
:
"unordered-list"
,
action
:
SimpleMDE
.
toggleUnorderedList
,
className
:
"fa fa-list-ul"
,
title
:
"Bullet List"
},{
name
:
"ordered-list"
,
action
:
SimpleMDE
.
toggleOrderedList
,
className
:
"fa fa-list-ol"
,
title
:
"Numbered List"
},
"|"
,{
name
:
"link"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
e
(
"#modal-editor-link"
).
slideToggle
())},
className
:
"fa fa-link"
,
title
:
"Insert Link"
},{
name
:
"image"
,
action
:
function
(
t
){
e
(
"#modal-editor-image"
).
slideDown
()},
className
:
"fa fa-image"
,
title
:
"Insert Image"
},{
name
:
"file"
,
action
:
function
(
e
){},
className
:
"fa fa-file-text-o"
,
title
:
"Insert File"
},
"|"
,{
name
:
"inline-code"
,
action
:
function
(
e
){
if
(
!
e
.
codemirror
.
doc
.
somethingSelected
())
return
t
.
pushError
(
"Invalid selection"
,
"You must select at least 1 character first."
);
var
a
=
e
.
codemirror
.
doc
.
getSelections
();
a
=
_
.
map
(
a
,
function
(
e
){
return
"`"
+
e
+
"`"
}),
e
.
codemirror
.
doc
.
replaceSelections
(
a
)},
className
:
"fa fa-terminal"
,
title
:
"Inline Code"
},{
name
:
"code-block"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
o
.
codemirror
.
doc
.
somethingSelected
()?
n
.
setValue
(
o
.
codemirror
.
doc
.
getSelection
()):
n
.
setValue
(
""
),
e
(
"#modal-editor-codeblock"
).
slideDown
(
400
,
function
(){
n
.
resize
(),
n
.
focus
()}))},
className
:
"fa fa-code"
,
title
:
"Code Block"
},
"|"
,{
name
:
"table"
,
action
:
function
(
e
){},
className
:
"fa fa-table"
,
title
:
"Insert Table"
},{
name
:
"horizontal-rule"
,
action
:
SimpleMDE
.
drawHorizontalRule
,
className
:
"fa fa-minus"
,
title
:
"Horizontal Rule"
}],
shortcuts
:{
toggleBlockquote
:
null
,
toggleFullScreen
:
null
}})}(),
e
(
".btn-edit-save"
).
on
(
"click"
,
function
(
n
){
e
.
ajax
(
window
.
location
.
href
,{
data
:{
markdown
:
o
.
value
()},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
o
,
n
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
a
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)})})}()}
if
(
e
(
"#page-type-source"
).
length
){
var
n
;
!
function
(){
n
=
ace
.
edit
(
"source-display"
),
n
.
setTheme
(
"ace/theme/tomorrow_night"
),
n
.
getSession
().
setMode
(
"ace/mode/markdown"
),
n
.
setReadOnly
(
!
0
),
n
.
renderer
.
updateFull
();
var
a
=
"home"
!==
e
(
"#page-type-source"
).
data
(
"entrypath"
)?
e
(
"#page-type-source"
).
data
(
"entrypath"
):
""
,
o
=
a
+
"/new-page"
;
e
(
".btn-create-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-create-prompt"
).
val
(
o
),
e
(
"#modal-create-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-create-prompt"
).
get
(
0
),
a
.
length
+
1
,
o
.
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
a
=
makeSafePath
(
e
(
"#txt-create-prompt"
).
val
());
_
.
isEmpty
(
a
)?
e
(
"#txt-create-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-create-prompt"
).
parent
().
addClass
(
"is-loading"
),
window
.
location
.
assign
(
"/create/"
+
a
))}),
""
!==
a
&&
e
(
".btn-move-prompt"
).
removeClass
(
"is-hidden"
);
var
i
=
_
.
lastIndexOf
(
a
,
"/"
)
+
1
;
e
(
".btn-move-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-move-prompt"
).
val
(
a
),
e
(
"#modal-move-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-move-prompt"
).
get
(
0
),
i
,
a
.
length
),
e
(
"#txt-move-prompt"
).
removeClass
(
"is-danger"
).
next
().
addClass
(
"is-hidden"
)}),
e
(
"#txt-move-prompt"
).
on
(
"keypress"
,
function
(
t
){
13
===
t
.
which
&&
e
(
".btn-move-go"
).
trigger
(
"click"
)}),
e
(
".btn-move-go"
).
on
(
"click"
,
function
(
o
){
var
n
=
makeSafePath
(
e
(
"#txt-move-prompt"
).
val
());
_
.
isEmpty
(
n
)
||
n
===
a
||
"home"
===
n
?
e
(
"#txt-move-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-move-prompt"
).
parent
().
addClass
(
"is-loading"
),
e
.
ajax
(
window
.
location
.
href
,{
data
:{
move
:
n
},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
a
,
o
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
n
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)}))})}()}});
var
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
,
a
=
_
.
defaults
(
e
,{
_uid
:
t
.
uidNext
,
class
:
"is-info"
,
message
:
"---"
,
sticky
:
!
1
,
title
:
"---"
});
t
.
mdl
.
children
.
push
(
a
),
a
.
sticky
||
_
.
delay
(
function
(){
t
.
close
(
a
.
_uid
)},
5
e3
),
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
,
a
=
_
.
findIndex
(
t
.
mdl
.
children
,[
"_uid"
,
e
]),
o
=
_
.
nth
(
t
.
mdl
.
children
,
a
);
a
>=
0
&&
o
&&
(
o
.
class
+=
" exit"
,
t
.
mdl
.
children
.
$set
(
a
,
o
),
_
.
delay
(
function
(){
t
.
mdl
.
children
.
$remove
(
o
)},
500
))}}]),
e
}();
"use strict"
;
function
_classCallCheck
(
e
,
t
){
if
(
!
(
e
instanceof
t
))
throw
new
TypeError
(
"Cannot call a class as a function"
)}
function
setInputSelection
(
e
,
t
,
a
){
if
(
e
.
focus
(),
"undefined"
!=
typeof
e
.
selectionStart
)
e
.
selectionStart
=
t
,
e
.
selectionEnd
=
a
;
else
if
(
document
.
selection
&&
document
.
selection
.
createRange
){
e
.
select
();
var
o
=
document
.
selection
.
createRange
();
o
.
collapse
(
!
0
),
o
.
moveEnd
(
"character"
,
a
),
o
.
moveStart
(
"character"
,
t
),
o
.
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
a
=
0
;
a
<
t
.
length
;
a
++
){
var
o
=
t
[
a
];
o
.
enumerable
=
o
.
enumerable
||!
1
,
o
.
configurable
=!
0
,
"value"
in
o
&&
(
o
.
writable
=!
0
),
Object
.
defineProperty
(
e
,
o
.
key
,
o
)}}
return
function
(
t
,
a
,
o
){
return
a
&&
e
(
t
.
prototype
,
a
),
o
&&
e
(
t
,
o
),
t
}}();
jQuery
(
document
).
ready
(
function
(
e
){
e
(
"a"
).
smoothScroll
({
speed
:
400
,
offset
:
-
70
});
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
;
alertsData
&&
_
.
forEach
(
alertsData
,
function
(
e
){
t
.
push
(
e
)});
var
a
=
io
(
ioHost
);
if
(
jQuery
(
document
).
ready
(
function
(
e
){
if
(
e
(
"#search-input"
).
length
){
e
(
"#search-input"
).
focus
(),
Vue
.
transition
(
"slide"
,{
enterClass
:
"slideInDown"
,
leaveClass
:
"fadeOutUp"
}),
e
(
".searchresults"
).
css
(
"display"
,
"block"
);
var
t
=
new
Vue
({
el
:
"#header-container"
,
data
:{
searchq
:
""
,
searchres
:[],
searchsuggest
:[],
searchload
:
0
,
searchactive
:
!
1
,
searchmoveidx
:
0
,
searchmovekey
:
""
,
searchmovearr
:[]},
watch
:{
searchq
:
function
(
e
,
o
){
t
.
searchmoveidx
=
0
,
e
.
length
>=
3
?(
t
.
searchactive
=!
0
,
t
.
searchload
++
,
a
.
emit
(
"search"
,{
terms
:
e
},
function
(
e
){
t
.
searchres
=
e
.
match
,
t
.
searchsuggest
=
e
.
suggest
,
t
.
searchmovearr
=
_
.
concat
([],
t
.
searchres
,
t
.
searchsuggest
),
t
.
searchload
>
0
&&
t
.
searchload
--
})):(
t
.
searchactive
=!
1
,
t
.
searchres
=
[],
t
.
searchsuggest
=
[],
t
.
searchmovearr
=
[],
t
.
searchload
=
0
)},
searchmoveidx
:
function
(
e
,
a
){
e
>
0
?
t
.
searchmovekey
=
t
.
searchmovearr
[
e
-
1
].
document
?
"res."
+
t
.
searchmovearr
[
e
-
1
].
document
.
entryPath
:
"sug."
+
t
.
searchmovearr
[
e
-
1
]:
t
.
searchmovekey
=
""
}},
methods
:{
useSuggestion
:
function
(
e
){
t
.
searchq
=
e
},
closeSearch
:
function
(){
t
.
searchq
=
""
},
moveSelectSearch
:
function
(){
if
(
!
(
t
.
searchmoveidx
<
1
)){
var
e
=
t
.
searchmoveidx
-
1
;
t
.
searchmovearr
[
e
].
document
?
window
.
location
.
assign
(
"/"
+
t
.
searchmovearr
[
e
].
document
.
entryPath
):
t
.
searchq
=
t
.
searchmovearr
[
e
]}},
moveDownSearch
:
function
(){
t
.
searchmoveidx
<
t
.
searchmovearr
.
length
&&
t
.
searchmoveidx
++
},
moveUpSearch
:
function
(){
t
.
searchmoveidx
>
0
&&
t
.
searchmoveidx
--
}}});
e
(
"main"
).
on
(
"click"
,
t
.
closeSearch
)}}),
e
(
"#page-type-view"
).
length
&&!
function
(){
var
a
=
"home"
!==
e
(
"#page-type-view"
).
data
(
"entrypath"
)?
e
(
"#page-type-view"
).
data
(
"entrypath"
):
""
,
o
=
a
+
"/new-page"
;
e
(
".btn-create-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-create-prompt"
).
val
(
o
),
e
(
"#modal-create-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-create-prompt"
).
get
(
0
),
a
.
length
+
1
,
o
.
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
a
=
makeSafePath
(
e
(
"#txt-create-prompt"
).
val
());
_
.
isEmpty
(
a
)?
e
(
"#txt-create-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-create-prompt"
).
parent
().
addClass
(
"is-loading"
),
window
.
location
.
assign
(
"/create/"
+
a
))}),
""
!==
a
&&
e
(
".btn-move-prompt"
).
removeClass
(
"is-hidden"
);
var
n
=
_
.
lastIndexOf
(
a
,
"/"
)
+
1
;
e
(
".btn-move-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-move-prompt"
).
val
(
a
),
e
(
"#modal-move-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-move-prompt"
).
get
(
0
),
n
,
a
.
length
),
e
(
"#txt-move-prompt"
).
removeClass
(
"is-danger"
).
next
().
addClass
(
"is-hidden"
)}),
e
(
"#txt-move-prompt"
).
on
(
"keypress"
,
function
(
t
){
13
===
t
.
which
&&
e
(
".btn-move-go"
).
trigger
(
"click"
)}),
e
(
".btn-move-go"
).
on
(
"click"
,
function
(
o
){
var
n
=
makeSafePath
(
e
(
"#txt-move-prompt"
).
val
());
_
.
isEmpty
(
n
)
||
n
===
a
||
"home"
===
n
?
e
(
"#txt-move-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-move-prompt"
).
parent
().
addClass
(
"is-loading"
),
e
.
ajax
(
window
.
location
.
href
,{
data
:{
move
:
n
},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
a
,
o
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
n
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)}))})}(),
e
(
"#page-type-create"
).
length
){
var
o
;
!
function
(){
var
a
=
e
(
"#page-type-create"
).
data
(
"entrypath"
);
e
(
".btn-create-discard"
).
on
(
"click"
,
function
(
t
){
e
(
"#modal-create-discard"
).
toggleClass
(
"is-active"
)}),
1
===
e
(
"#mk-editor"
).
length
&&!
function
(){
var
a
=!
1
,
n
=
(
new
Vue
({
el
:
"#modal-editor-image"
,
data
:{
modeSelected
:
"text"
},
methods
:{
cancel
:
function
(
t
){
a
=!
1
,
e
(
"#modal-editor-image"
).
slideUp
()},
insertImage
:
function
(
e
){
o
.
codemirror
.
doc
.
somethingSelected
()
&&
o
.
codemirror
.
execCommand
(
"singleSelection"
);
var
t
=
"
\
n```"
+
r
.
modeSelected
+
"
\
n"
+
n
.
getValue
()
+
"
\
n```
\
n"
;
o
.
codemirror
.
doc
.
replaceSelection
(
t
),
r
.
cancel
()}}}),
ace
.
edit
(
"codeblock-editor"
));
n
.
setTheme
(
"ace/theme/tomorrow_night"
),
n
.
getSession
().
setMode
(
"ace/mode/markdown"
),
n
.
setOption
(
"fontSize"
,
"14px"
),
n
.
setOption
(
"hScrollBarAlwaysVisible"
,
!
1
),
n
.
setOption
(
"wrap"
,
!
0
);
var
i
=
ace
.
require
(
"ace/ext/modelist"
),
r
=
new
Vue
({
el
:
"#modal-editor-codeblock"
,
data
:{
modes
:
i
.
modesByName
,
modeSelected
:
"text"
},
watch
:{
modeSelected
:
function
(
e
,
t
){
l
(
e
).
done
(
function
(){
ace
.
require
(
"ace/mode/"
+
e
),
n
.
getSession
().
setMode
(
"ace/mode/"
+
e
)})}},
methods
:{
cancel
:
function
(
t
){
a
=!
1
,
e
(
"#modal-editor-codeblock"
).
slideUp
()},
insertCode
:
function
(
e
){
o
.
codemirror
.
doc
.
somethingSelected
()
&&
o
.
codemirror
.
execCommand
(
"singleSelection"
);
var
t
=
"
\
n```"
+
r
.
modeSelected
+
"
\
n"
+
n
.
getValue
()
+
"
\
n```
\
n"
;
o
.
codemirror
.
doc
.
replaceSelection
(
t
),
r
.
cancel
()}}}),
c
=
[],
l
=
function
(
t
){
return
e
.
ajax
({
url
:
"/js/ace/mode-"
+
t
+
".js"
,
dataType
:
"script"
,
cache
:
!
0
,
beforeSend
:
function
(){
if
(
_
.
includes
(
c
,
t
))
return
!
1
},
success
:
function
(){
c
.
push
(
t
)}})};
o
=
new
SimpleMDE
({
autofocus
:
!
0
,
autoDownloadFontAwesome
:
!
1
,
element
:
e
(
"#mk-editor"
).
get
(
0
),
placeholder
:
"Enter Markdown formatted content here..."
,
spellChecker
:
!
1
,
status
:
!
1
,
toolbar
:[{
name
:
"bold"
,
action
:
SimpleMDE
.
toggleBold
,
className
:
"fa fa-bold"
,
title
:
"Bold"
},{
name
:
"italic"
,
action
:
SimpleMDE
.
toggleItalic
,
className
:
"fa fa-italic"
,
title
:
"Italic"
},{
name
:
"strikethrough"
,
action
:
SimpleMDE
.
toggleStrikethrough
,
className
:
"fa fa-strikethrough"
,
title
:
"Strikethrough"
},
"|"
,{
name
:
"heading-1"
,
action
:
SimpleMDE
.
toggleHeading1
,
className
:
"fa fa-header fa-header-x fa-header-1"
,
title
:
"Big Heading"
},{
name
:
"heading-2"
,
action
:
SimpleMDE
.
toggleHeading2
,
className
:
"fa fa-header fa-header-x fa-header-2"
,
title
:
"Medium Heading"
},{
name
:
"heading-3"
,
action
:
SimpleMDE
.
toggleHeading3
,
className
:
"fa fa-header fa-header-x fa-header-3"
,
title
:
"Small Heading"
},{
name
:
"quote"
,
action
:
SimpleMDE
.
toggleBlockquote
,
className
:
"fa fa-quote-left"
,
title
:
"Quote"
},
"|"
,{
name
:
"unordered-list"
,
action
:
SimpleMDE
.
toggleUnorderedList
,
className
:
"fa fa-list-ul"
,
title
:
"Bullet List"
},{
name
:
"ordered-list"
,
action
:
SimpleMDE
.
toggleOrderedList
,
className
:
"fa fa-list-ol"
,
title
:
"Numbered List"
},
"|"
,{
name
:
"link"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
e
(
"#modal-editor-link"
).
slideToggle
())},
className
:
"fa fa-link"
,
title
:
"Insert Link"
},{
name
:
"image"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
e
(
"#modal-editor-image"
).
slideDown
())},
className
:
"fa fa-image"
,
title
:
"Insert Image"
},{
name
:
"file"
,
action
:
function
(
e
){},
className
:
"fa fa-file-text-o"
,
title
:
"Insert File"
},
"|"
,{
name
:
"inline-code"
,
action
:
function
(
e
){
if
(
!
e
.
codemirror
.
doc
.
somethingSelected
())
return
t
.
pushError
(
"Invalid selection"
,
"You must select at least 1 character first."
);
var
a
=
e
.
codemirror
.
doc
.
getSelections
();
a
=
_
.
map
(
a
,
function
(
e
){
return
"`"
+
e
+
"`"
}),
e
.
codemirror
.
doc
.
replaceSelections
(
a
)},
className
:
"fa fa-terminal"
,
title
:
"Inline Code"
},{
name
:
"code-block"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
o
.
codemirror
.
doc
.
somethingSelected
()?
n
.
setValue
(
o
.
codemirror
.
doc
.
getSelection
()):
n
.
setValue
(
""
),
e
(
"#modal-editor-codeblock"
).
slideDown
(
400
,
function
(){
n
.
resize
(),
n
.
focus
()}))},
className
:
"fa fa-code"
,
title
:
"Code Block"
},
"|"
,{
name
:
"table"
,
action
:
function
(
e
){},
className
:
"fa fa-table"
,
title
:
"Insert Table"
},{
name
:
"horizontal-rule"
,
action
:
SimpleMDE
.
drawHorizontalRule
,
className
:
"fa fa-minus"
,
title
:
"Horizontal Rule"
}],
shortcuts
:{
toggleBlockquote
:
null
,
toggleFullScreen
:
null
}})}(),
e
(
".btn-edit-save"
).
on
(
"click"
,
function
(
n
){
e
.
ajax
(
window
.
location
.
href
,{
data
:{
markdown
:
o
.
value
()},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
o
,
n
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
a
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)})})}()}
if
(
e
(
"#page-type-edit"
).
length
){
var
o
;
!
function
(){
var
a
=
e
(
"#page-type-edit"
).
data
(
"entrypath"
);
e
(
".btn-edit-discard"
).
on
(
"click"
,
function
(
t
){
e
(
"#modal-edit-discard"
).
toggleClass
(
"is-active"
)}),
1
===
e
(
"#mk-editor"
).
length
&&!
function
(){
var
a
=!
1
,
n
=
(
new
Vue
({
el
:
"#modal-editor-image"
,
data
:{
modeSelected
:
"text"
},
methods
:{
cancel
:
function
(
t
){
a
=!
1
,
e
(
"#modal-editor-image"
).
slideUp
()},
insertImage
:
function
(
e
){
o
.
codemirror
.
doc
.
somethingSelected
()
&&
o
.
codemirror
.
execCommand
(
"singleSelection"
);
var
t
=
"
\
n```"
+
r
.
modeSelected
+
"
\
n"
+
n
.
getValue
()
+
"
\
n```
\
n"
;
o
.
codemirror
.
doc
.
replaceSelection
(
t
),
r
.
cancel
()}}}),
ace
.
edit
(
"codeblock-editor"
));
n
.
setTheme
(
"ace/theme/tomorrow_night"
),
n
.
getSession
().
setMode
(
"ace/mode/markdown"
),
n
.
setOption
(
"fontSize"
,
"14px"
),
n
.
setOption
(
"hScrollBarAlwaysVisible"
,
!
1
),
n
.
setOption
(
"wrap"
,
!
0
);
var
i
=
ace
.
require
(
"ace/ext/modelist"
),
r
=
new
Vue
({
el
:
"#modal-editor-codeblock"
,
data
:{
modes
:
i
.
modesByName
,
modeSelected
:
"text"
},
watch
:{
modeSelected
:
function
(
e
,
t
){
l
(
e
).
done
(
function
(){
ace
.
require
(
"ace/mode/"
+
e
),
n
.
getSession
().
setMode
(
"ace/mode/"
+
e
)})}},
methods
:{
cancel
:
function
(
t
){
a
=!
1
,
e
(
"#modal-editor-codeblock"
).
slideUp
()},
insertCode
:
function
(
e
){
o
.
codemirror
.
doc
.
somethingSelected
()
&&
o
.
codemirror
.
execCommand
(
"singleSelection"
);
var
t
=
"
\
n```"
+
r
.
modeSelected
+
"
\
n"
+
n
.
getValue
()
+
"
\
n```
\
n"
;
o
.
codemirror
.
doc
.
replaceSelection
(
t
),
r
.
cancel
()}}}),
c
=
[],
l
=
function
(
t
){
return
e
.
ajax
({
url
:
"/js/ace/mode-"
+
t
+
".js"
,
dataType
:
"script"
,
cache
:
!
0
,
beforeSend
:
function
(){
if
(
_
.
includes
(
c
,
t
))
return
!
1
},
success
:
function
(){
c
.
push
(
t
)}})};
o
=
new
SimpleMDE
({
autofocus
:
!
0
,
autoDownloadFontAwesome
:
!
1
,
element
:
e
(
"#mk-editor"
).
get
(
0
),
placeholder
:
"Enter Markdown formatted content here..."
,
spellChecker
:
!
1
,
status
:
!
1
,
toolbar
:[{
name
:
"bold"
,
action
:
SimpleMDE
.
toggleBold
,
className
:
"fa fa-bold"
,
title
:
"Bold"
},{
name
:
"italic"
,
action
:
SimpleMDE
.
toggleItalic
,
className
:
"fa fa-italic"
,
title
:
"Italic"
},{
name
:
"strikethrough"
,
action
:
SimpleMDE
.
toggleStrikethrough
,
className
:
"fa fa-strikethrough"
,
title
:
"Strikethrough"
},
"|"
,{
name
:
"heading-1"
,
action
:
SimpleMDE
.
toggleHeading1
,
className
:
"fa fa-header fa-header-x fa-header-1"
,
title
:
"Big Heading"
},{
name
:
"heading-2"
,
action
:
SimpleMDE
.
toggleHeading2
,
className
:
"fa fa-header fa-header-x fa-header-2"
,
title
:
"Medium Heading"
},{
name
:
"heading-3"
,
action
:
SimpleMDE
.
toggleHeading3
,
className
:
"fa fa-header fa-header-x fa-header-3"
,
title
:
"Small Heading"
},{
name
:
"quote"
,
action
:
SimpleMDE
.
toggleBlockquote
,
className
:
"fa fa-quote-left"
,
title
:
"Quote"
},
"|"
,{
name
:
"unordered-list"
,
action
:
SimpleMDE
.
toggleUnorderedList
,
className
:
"fa fa-list-ul"
,
title
:
"Bullet List"
},{
name
:
"ordered-list"
,
action
:
SimpleMDE
.
toggleOrderedList
,
className
:
"fa fa-list-ol"
,
title
:
"Numbered List"
},
"|"
,{
name
:
"link"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
e
(
"#modal-editor-link"
).
slideToggle
())},
className
:
"fa fa-link"
,
title
:
"Insert Link"
},{
name
:
"image"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
e
(
"#modal-editor-image"
).
slideDown
())},
className
:
"fa fa-image"
,
title
:
"Insert Image"
},{
name
:
"file"
,
action
:
function
(
e
){},
className
:
"fa fa-file-text-o"
,
title
:
"Insert File"
},
"|"
,{
name
:
"inline-code"
,
action
:
function
(
e
){
if
(
!
e
.
codemirror
.
doc
.
somethingSelected
())
return
t
.
pushError
(
"Invalid selection"
,
"You must select at least 1 character first."
);
var
a
=
e
.
codemirror
.
doc
.
getSelections
();
a
=
_
.
map
(
a
,
function
(
e
){
return
"`"
+
e
+
"`"
}),
e
.
codemirror
.
doc
.
replaceSelections
(
a
)},
className
:
"fa fa-terminal"
,
title
:
"Inline Code"
},{
name
:
"code-block"
,
action
:
function
(
t
){
a
||
(
a
=!
0
,
o
.
codemirror
.
doc
.
somethingSelected
()?
n
.
setValue
(
o
.
codemirror
.
doc
.
getSelection
()):
n
.
setValue
(
""
),
e
(
"#modal-editor-codeblock"
).
slideDown
(
400
,
function
(){
n
.
resize
(),
n
.
focus
()}))},
className
:
"fa fa-code"
,
title
:
"Code Block"
},
"|"
,{
name
:
"table"
,
action
:
function
(
e
){},
className
:
"fa fa-table"
,
title
:
"Insert Table"
},{
name
:
"horizontal-rule"
,
action
:
SimpleMDE
.
drawHorizontalRule
,
className
:
"fa fa-minus"
,
title
:
"Horizontal Rule"
}],
shortcuts
:{
toggleBlockquote
:
null
,
toggleFullScreen
:
null
}})}(),
e
(
".btn-edit-save"
).
on
(
"click"
,
function
(
n
){
e
.
ajax
(
window
.
location
.
href
,{
data
:{
markdown
:
o
.
value
()},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
o
,
n
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
a
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)})})}()}
if
(
e
(
"#page-type-source"
).
length
){
var
n
;
!
function
(){
n
=
ace
.
edit
(
"source-display"
),
n
.
setTheme
(
"ace/theme/tomorrow_night"
),
n
.
getSession
().
setMode
(
"ace/mode/markdown"
),
n
.
setReadOnly
(
!
0
),
n
.
renderer
.
updateFull
();
var
a
=
"home"
!==
e
(
"#page-type-source"
).
data
(
"entrypath"
)?
e
(
"#page-type-source"
).
data
(
"entrypath"
):
""
,
o
=
a
+
"/new-page"
;
e
(
".btn-create-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-create-prompt"
).
val
(
o
),
e
(
"#modal-create-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-create-prompt"
).
get
(
0
),
a
.
length
+
1
,
o
.
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
a
=
makeSafePath
(
e
(
"#txt-create-prompt"
).
val
());
_
.
isEmpty
(
a
)?
e
(
"#txt-create-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-create-prompt"
).
parent
().
addClass
(
"is-loading"
),
window
.
location
.
assign
(
"/create/"
+
a
))}),
""
!==
a
&&
e
(
".btn-move-prompt"
).
removeClass
(
"is-hidden"
);
var
i
=
_
.
lastIndexOf
(
a
,
"/"
)
+
1
;
e
(
".btn-move-prompt"
).
on
(
"click"
,
function
(
t
){
e
(
"#txt-move-prompt"
).
val
(
a
),
e
(
"#modal-move-prompt"
).
toggleClass
(
"is-active"
),
setInputSelection
(
e
(
"#txt-move-prompt"
).
get
(
0
),
i
,
a
.
length
),
e
(
"#txt-move-prompt"
).
removeClass
(
"is-danger"
).
next
().
addClass
(
"is-hidden"
)}),
e
(
"#txt-move-prompt"
).
on
(
"keypress"
,
function
(
t
){
13
===
t
.
which
&&
e
(
".btn-move-go"
).
trigger
(
"click"
)}),
e
(
".btn-move-go"
).
on
(
"click"
,
function
(
o
){
var
n
=
makeSafePath
(
e
(
"#txt-move-prompt"
).
val
());
_
.
isEmpty
(
n
)
||
n
===
a
||
"home"
===
n
?
e
(
"#txt-move-prompt"
).
addClass
(
"is-danger"
).
next
().
removeClass
(
"is-hidden"
):(
e
(
"#txt-move-prompt"
).
parent
().
addClass
(
"is-loading"
),
e
.
ajax
(
window
.
location
.
href
,{
data
:{
move
:
n
},
dataType
:
"json"
,
method
:
"PUT"
}).
then
(
function
(
e
,
a
,
o
){
e
.
ok
?
window
.
location
.
assign
(
"/"
+
n
):
t
.
pushError
(
"Something went wrong"
,
e
.
error
)},
function
(
e
,
a
,
o
){
t
.
pushError
(
"Something went wrong"
,
"Save operation failed."
)}))})}()}});
var
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
,
a
=
_
.
defaults
(
e
,{
_uid
:
t
.
uidNext
,
class
:
"is-info"
,
message
:
"---"
,
sticky
:
!
1
,
title
:
"---"
});
t
.
mdl
.
children
.
push
(
a
),
a
.
sticky
||
_
.
delay
(
function
(){
t
.
close
(
a
.
_uid
)},
5
e3
),
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
,
a
=
_
.
findIndex
(
t
.
mdl
.
children
,[
"_uid"
,
e
]),
o
=
_
.
nth
(
t
.
mdl
.
children
,
a
);
a
>=
0
&&
o
&&
(
o
.
class
+=
" exit"
,
t
.
mdl
.
children
.
$set
(
a
,
o
),
_
.
delay
(
function
(){
t
.
mdl
.
children
.
$remove
(
o
)},
500
))}}]),
e
}();
\ No newline at end of file
\ No newline at end of file
client/js/components/editor-image.js
0 → 100644
View file @
405e23f0
let
vueImage
=
new
Vue
({
el
:
'#modal-editor-image'
,
data
:
{
modeSelected
:
'text'
},
methods
:
{
cancel
:
(
ev
)
=>
{
mdeModalOpenState
=
false
;
$
(
'#modal-editor-image'
).
slideUp
();
},
insertImage
:
(
ev
)
=>
{
if
(
mde
.
codemirror
.
doc
.
somethingSelected
())
{
mde
.
codemirror
.
execCommand
(
'singleSelection'
);
}
let
codeBlockText
=
'
\
n```'
+
vueCodeBlock
.
modeSelected
+
'
\
n'
+
codeEditor
.
getValue
()
+
'
\
n```
\
n'
;
mde
.
codemirror
.
doc
.
replaceSelection
(
codeBlockText
);
vueCodeBlock
.
cancel
();
}
}
});
\ No newline at end of file
client/js/components/editor.js
View file @
405e23f0
...
@@ -8,6 +8,7 @@ if($('#mk-editor').length === 1) {
...
@@ -8,6 +8,7 @@ if($('#mk-editor').length === 1) {
let
mdeModalOpenState
=
false
;
let
mdeModalOpenState
=
false
;
let
mdeCurrentEditor
=
null
;
let
mdeCurrentEditor
=
null
;
//=include editor-image.js
//=include editor-codeblock.js
//=include editor-codeblock.js
var
mde
=
new
SimpleMDE
({
var
mde
=
new
SimpleMDE
({
...
@@ -88,7 +89,10 @@ if($('#mk-editor').length === 1) {
...
@@ -88,7 +89,10 @@ if($('#mk-editor').length === 1) {
{
{
name
:
"image"
,
name
:
"image"
,
action
:
(
editor
)
=>
{
action
:
(
editor
)
=>
{
if
(
!
mdeModalOpenState
)
{
mdeModalOpenState
=
true
;
$
(
'#modal-editor-image'
).
slideDown
();
$
(
'#modal-editor-image'
).
slideDown
();
}
},
},
className
:
"fa fa-image"
,
className
:
"fa fa-image"
,
title
:
"Insert Image"
,
title
:
"Insert Image"
,
...
...
controllers/uploads.js
0 → 100644
View file @
405e23f0
"use strict"
;
var
express
=
require
(
'express'
);
var
router
=
express
.
Router
();
var
_
=
require
(
'lodash'
);
var
validPathRe
=
new
RegExp
(
"^([a-z0-9
\\
/-]+
\\
.[a-z0-9]+)$"
);
// ==========================================
// SERVE UPLOADS FILES
// ==========================================
router
.
get
(
'/*'
,
(
req
,
res
,
next
)
=>
{
let
fileName
=
req
.
params
[
0
];
if
(
!
validPathRe
.
test
(
fileName
))
{
return
res
.
sendStatus
(
404
).
end
();
}
//todo: Authentication-based access
res
.
sendFile
(
fileName
,
{
root
:
git
.
getRepoPath
()
+
'/uploads/'
,
dotfiles
:
'deny'
},
(
err
)
=>
{
if
(
err
)
{
res
.
status
(
err
.
status
).
end
();
}
});
});
module
.
exports
=
router
;
\ No newline at end of file
models/git.js
View file @
405e23f0
...
@@ -126,6 +126,17 @@ module.exports = {
...
@@ -126,6 +126,17 @@ module.exports = {
},
},
/**
/**
* Gets the repo path.
*
* @return {String} The repo path.
*/
getRepoPath
()
{
return
this
.
_repo
.
path
||
path
.
join
(
ROOTPATH
,
'repo'
);
},
/**
* Sync with the remote repository
* Sync with the remote repository
*
*
* @return {Promise} Resolve on sync success
* @return {Promise} Resolve on sync success
...
...
server.js
View file @
405e23f0
...
@@ -145,8 +145,9 @@ app.use(mw.flash);
...
@@ -145,8 +145,9 @@ app.use(mw.flash);
app
.
use
(
'/'
,
ctrl
.
auth
);
app
.
use
(
'/'
,
ctrl
.
auth
);
app
.
use
(
'/
'
,
ctrl
.
page
s
);
app
.
use
(
'/
uploads'
,
ctrl
.
upload
s
);
app
.
use
(
'/admin'
,
mw
.
auth
,
ctrl
.
admin
);
app
.
use
(
'/admin'
,
mw
.
auth
,
ctrl
.
admin
);
app
.
use
(
'/'
,
ctrl
.
pages
);
// ----------------------------------------
// ----------------------------------------
// Error handling
// Error handling
...
...
views/modals/editor-image.pug
View file @
405e23f0
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
p.control
p.control
a.button.is-warning.is-outlined(v-on:click="cancel") Cancel
a.button.is-warning.is-outlined(v-on:click="cancel") Cancel
p.control
p.control
a.button.is-primary.is-outlined(v-on:click="insert
Cod
e") Insert Image
a.button.is-primary.is-outlined(v-on:click="insert
Imag
e") Insert Image
.columns
.columns
.column.is-one-quarter(style={'max-width':'350px'})
.column.is-one-quarter(style={'max-width':'350px'})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment