Commit 4dd51e34 authored by RawKStar77's avatar RawKStar77

Create lightweight markdown editor from scratch

Code cleanup.

First pass at implementing @aron's mockups.

Fix bugs, breakout markdown into its own directive

Forgot to add markdown.coffee
parent 9c379204
......@@ -63,61 +63,6 @@ formValidate = ->
ctrl.submit()
markdown = ['$filter', '$timeout', ($filter, $timeout) ->
link: (scope, elem, attr, ctrl) ->
return unless ctrl?
input = elem.find('textarea')
output = elem.find('div')
# Inserts a markdown link guide.
scope.insertLink = ->
# console.log window.getSelection().toString()
if input[0].selectionStart != undefined
startPos = input[0].selectionStart
endPos = input[0].selectionEnd
selectedText = input[0].value.substring(startPos, endPos)
textBefore = input[0].value.substring(0, (startPos))
textAfter = input[0].value.substring(endPos)
newtext = textBefore + '[' + selectedText + '](https://example.com)' + textAfter
input[0].value = newtext
scope.insertIMG = ->
# console.log window.getSelection().toString()
if input[0].selectionStart != undefined
startPos = input[0].selectionStart
endPos = input[0].selectionEnd
selectedText = input[0].value.substring(startPos, endPos)
console.log selectedText
newtext = input[0].value.substring(0, (startPos)) + '![' + selectedText + '](https://yourimage.jpg)' + input[0].value.substring(endPos)
input[0].value = newtext
# Re-render the markdown when the view needs updating.
ctrl.$render = ->
input.val (ctrl.$viewValue or '')
scope.rendered = ($filter 'converter') (ctrl.$viewValue or '')
# React to the changes to the text area
input.bind 'blur change keyup', ->
ctrl.$setViewValue input.val()
scope.$digest()
# Auto-focus the input box when the widget becomes editable.
# Re-render when it becomes uneditable.
scope.$watch 'readonly', (readonly) ->
ctrl.$render()
unless readonly then $timeout -> input.focus()
require: '?ngModel'
scope:
readonly: '@'
required: '@'
templateUrl: 'markdown.html'
]
privacy = ->
levels = ['Public', 'Only Me']
......@@ -270,7 +215,6 @@ match = ->
angular.module('h.directives', imports)
.directive('formInput', formInput)
.directive('formValidate', formValidate)
.directive('markdown', markdown)
.directive('privacy', privacy)
.directive('tabReveal', tabReveal)
.directive('showAccount', showAccount)
......
# This directive controls both the rendering and display of markdown in annotations, as well as
# the markdown editor interface.
markdown = ['$filter', '$timeout', ($filter, $timeout) ->
link: (scope, elem, attr, ctrl) ->
return unless ctrl?
input = elem.find('textarea')
output = elem.find('div')
scope.returnSelection = ->
# Maybe get selections from other parts of the text? Such as the quote or a reply?
ourIframeSelection = window.getSelection().toString()
parentDocumentSelection = parent.window.getSelection().toString()
if input[0].selectionStart != undefined
startPos = input[0].selectionStart
endPos = input[0].selectionEnd
if ourIframeSelection
selectedText = ourIframeSelection
else if parentDocumentSelection
selectedText = parentDocumentSelection
else
selectedText = input[0].value.substring(startPos, endPos)
textBefore = input[0].value.substring(0, (startPos))
textAfter = input[0].value.substring(endPos)
selection = {
before: textBefore
after: textAfter
selection: selectedText
start: startPos
end: endPos
}
input.focus()
return selection
scope.insertBold = (markup="**", innertext="Bold")->
text = scope.returnSelection()
if text.selection == ""
newtext = text.before + markup + innertext + markup + text.after
input[0].value = newtext
else
newtext = text.before + markup + text.selection + markup + text.after
input[0].value = newtext
input[0].selectionStart = (text.before + markup).length
input[0].selectionEnd = (text.before + innertext + markup).length
scope.insertItalic = ->
# Shares the same logic as insertBold() but with different markup.
scope.insertBold("*", "Italic")
scope.insertMath = ->
# Shares the same logic as insertBold() but with different markup.
scope.insertBold("$$", "LaTex")
scope.insertLink = ->
text = scope.returnSelection()
if text.selection == ""
newtext = text.before + "[Link Text](https://example.com)" + text.after
input[0].value = newtext
input[0].selectionStart = text.before.length + 1
input[0].selectionEnd = text.before.length + 10
else
newtext = text.before + '[' + text.selection + '](https://example.com)' + text.after
input[0].value = newtext
input[0].selectionStart = (text.before + text.selection).length + 3
input[0].selectionEnd = (text.before + text.selection).length + 22
scope.insertIMG = ->
text = scope.returnSelection()
if text.selection == ""
newtext = text.before + "![Image Description](https://yourimage.jpg)" + text.after
input[0].value = newtext
input[0].selectionStart = text.before.length + 21
input[0].selectionEnd = text.before.length + 42
else
newtext = text.before + '![' + text.selection + '](https://yourimage.jpg)' + text.after
input[0].value = newtext
input[0].selectionStart = (text.before + text.selection).length + 4
input[0].selectionEnd = (text.before + text.selection).length + 25
scope.insertList = (markup = "* ") ->
text = scope.returnSelection()
# If the character preceeding the curser is a newline just insert a "* ".
if text.selection != ""
newstring = ""
index = text.before.length
if index == 0
# The selection takes place at the very start of the textarea
for char in text.selection
if char == "\n"
newstring = newstring + "\n" + markup
else if index == 0
newstring = newstring + markup + char
else
newstring = newstring + char
index += 1
else
newlinedetected = false
if input[0].value.substring(index - 1).charAt(0) == "\n"
# Look to see if the selection falls at the beginning of a new line.
newstring = newstring + markup
newlinedetected = true
for char in text.selection
if char == "\n"
newstring = newstring + "\n" + markup
newlinedetected = true
else
newstring = newstring + char
index += 1
if not newlinedetected
# Edge case: The selection does not include any new lines and does not start at 0.
# We need to find the newline before the currently selected text and add markup there.
# console.log input[0].value.substring(0, (text.before + text.selection).length)
i = 0
indexoflastnewline = undefined
newstring = ""
for char in (text.before + text.selection)
if char == "\n"
indexoflastnewline = i
newstring = newstring + char
i++
if indexoflastnewline == undefined
# The partial selection happens to fall on the firstline
newstring = markup + newstring
else
newstring = newstring.substring(0, (indexoflastnewline + 1)) + markup + newstring.substring(indexoflastnewline + 1)
input[0].value = newstring + text.after
input[0].selectionStart = (text.before + markup).length
input[0].selectionEnd = (text.before + text.selection + markup).length
return
# Sets textarea value and selection for cases where there are new lines in the selection
# or the selection is at the start
input[0].value = text.before + newstring + text.after
input[0].selectionStart = (text.before + newstring).length
input[0].selectionEnd = (text.before + newstring).length
else if input[0].value.substring((text.start - 1 ), text.start) == "\n"
# Edge case, no selection, the cursor is on a new line.
input[0].value = text.before + markup + text.selection + text.after
input[0].selectionStart = (text.before + markup).length
input[0].selectionEnd = (text.before + markup).length
else
# No selection, cursor is not on new line. Go to the previous newline and insert markup there.
i = 0
for char in text.before
if char == "\n" and i != 0
index = i
i += 1
if !index
# If the line of text happens to fall on the first line and index is not set.
newtext = markup + text.before.substring(0) + text.after
else
newtext = text.before.substring(0, (index)) + "\n" + markup + text.before.substring(index + 1) + text.after
input[0].value = newtext
input[0].selectionStart = (text.before + markup).length
input[0].selectionEnd = (text.before + markup).length
scope.insertNumList = ->
# Shares the same logic as insertList but with different markup.
scope.insertList("1. ")
scope.insertQuote = ->
# Shares the same logic as insertList but with different markup.
scope.insertList("> ")
scope.insertCode = ->
# Shares the same logic as insertList but with different markup.
scope.insertList(" ")
# Keyboard shortcuts for bold, italic, and link.
elem.bind
keydown: (e) ->
if e.keyCode == 66 && (e.ctrlKey || e.metaKey)
e.preventDefault()
scope.insertBold()
if e.keyCode == 73 && (e.ctrlKey || e.metaKey)
e.preventDefault()
scope.insertItalic()
if e.keyCode == 75 && (e.ctrlKey || e.metaKey)
e.preventDefault()
scope.insertLink()
scope.preview = false
scope.togglePreview = ->
if !scope.readonly
scope.preview = !scope.preview
if scope.preview
output[2].style.height = input[0].style.height
ctrl.$render()
else
input[0].style.height = output[2].style.height
$timeout -> input.focus()
# Re-render the markdown when the view needs updating.
ctrl.$render = ->
input.val (ctrl.$viewValue or '')
scope.rendered = ($filter 'converter') (ctrl.$viewValue or '')
# React to the changes to the text area
input.bind 'blur change keyup', ->
ctrl.$setViewValue input.val()
scope.$digest()
# Reset height of output div incase it has been changed.
# Re-render when it becomes uneditable.
# Auto-focus the input box when the widget becomes editable.
scope.$watch 'readonly', (readonly) ->
scope.preview = false
output[2].style.height = ""
ctrl.$render()
unless readonly then $timeout -> input.focus()
require: '?ngModel'
restrict: 'C'
scope:
readonly: '@'
required: '@'
templateUrl: 'markdown.html'
]
angular.module('h.directives').directive('markdown', markdown)
......@@ -42,12 +42,53 @@
font-size: .923em;
}
.icon-markdown {
color: $text-color;
line-height: 1.4;
margin-left: .5em;
// Markdown Controls ////////////////////////
.markdown {
.preview {
overflow: auto;
border: 1px solid $gray-lighter;
background-color: $gray-lightest;
min-height: 120px;
padding-left: 10px;
resize: vertical;
}
.markdowntools {
margin-top: 10px;
border-top: 1px solid #D3D3D3;
border-left: 1px solid #D3D3D3;
border-right: 1px solid #D3D3D3;
border-radius: 2px 2px 0 0;
width: 100%;
margin-bottom: -1px;
padding: .7em .7em .7em .5em;
&.disable {
i {
color: $gray-lighter;
pointer-events: none;
}
}
i {padding: 5px;}
i, a {
color: $gray;
&:hover {
color: black;
}
}
.preview-toggle {
float: right;
}
}
}
//MAGICONTROL////////////////////////////////
.magicontrol {
margin-right: .8em;
color: $gray-lighter;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment