2019-07-19 13:51:57 -07:00
|
|
|
|
<template>
|
2019-07-21 09:28:07 -07:00
|
|
|
|
<div id="InputNotes" class="master-note-edit" :class="[ 'position-'+position ]" @keyup.esc="close" :style="{'background-color':color}">
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
2019-07-21 09:28:07 -07:00
|
|
|
|
|
|
|
|
|
<div v-if="fancyInput == 1" class="textarea-height no-flow">
|
|
|
|
|
<ckeditor ref="main-edit"
|
|
|
|
|
:editor="editor" @ready="onReady" v-model="noteText" :config="editorConfig" v-on:blur="save" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<textarea
|
|
|
|
|
class="textarea-height raw-edit"
|
|
|
|
|
v-if="fancyInput == 0"
|
|
|
|
|
v-model="noteText"
|
|
|
|
|
v-on:blur="save"
|
|
|
|
|
v-on:keyup="onKeyup"
|
|
|
|
|
/>
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
|
|
|
|
<div class="ui buttons">
|
2019-07-21 09:28:07 -07:00
|
|
|
|
<div class="ui right floated green button">{{statusText}}</div>
|
2019-07-20 16:07:22 -07:00
|
|
|
|
<div class="ui button">Delete</div>
|
2019-07-21 09:28:07 -07:00
|
|
|
|
<div @click="close" class="ui button">Close (ESC)</div>
|
|
|
|
|
<div @click="onToggleFancyInput" class="ui button">
|
|
|
|
|
Fancy ({{fancyInput?'On':'Off'}})
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ui buttons">
|
|
|
|
|
<button @click="onChangeColor" class="ui icon white button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon red button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon orange button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon yellow button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon olive button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon green button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon teal button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon blue button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon violet button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon purple button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon pink button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon brown button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon grey button"></button>
|
|
|
|
|
<button @click="onChangeColor" class="ui icon black button"></button>
|
2019-07-19 13:51:57 -07:00
|
|
|
|
</div>
|
2019-07-21 09:28:07 -07:00
|
|
|
|
<!-- <p>
|
2019-07-20 16:07:22 -07:00
|
|
|
|
Last Updated: {{$helpers.timeAgo(updated)}}
|
2019-07-21 09:28:07 -07:00
|
|
|
|
</p> -->
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
2019-07-21 09:28:07 -07:00
|
|
|
|
<note-tag-edit :noteId="noteid" :key="'tags-for-note-'+noteid"/>
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
|
|
|
|
<div class="ui segment" v-if="false">
|
|
|
|
|
Block formatting
|
|
|
|
|
|
|
|
|
|
The following block formatting options are available:
|
|
|
|
|
|
|
|
|
|
<p> Bulleted list – Start a line with * or - followed by a space.</p>
|
|
|
|
|
<p> Numbered list – Start a line with 1. or 1) followed by a space.</p>
|
|
|
|
|
<p> Headings – Start a line with # or ## or ### followed by a space to create a heading 1, heading 2 or heading 3 (up to heading 6 if options defines more headings).</p>
|
|
|
|
|
<p> Block quote – Start a line with > followed by a space.</p>
|
|
|
|
|
|
|
|
|
|
Inline formatting
|
|
|
|
|
|
|
|
|
|
The following inline formatting options are available:
|
|
|
|
|
|
|
|
|
|
Bold – Type **text** or __text__,
|
|
|
|
|
Italic – Type *text* or _text_,
|
|
|
|
|
Code – Type `text`.
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import axios from 'axios'
|
|
|
|
|
import DecoupledEditor from '@ckeditor/ckeditor5-build-decoupled-document';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'InputNotes',
|
2019-07-20 16:07:22 -07:00
|
|
|
|
props: [ 'noteid', 'position' ],
|
2019-07-19 13:51:57 -07:00
|
|
|
|
components:{
|
|
|
|
|
'note-tag-edit': require('./NoteTagEdit.vue').default
|
|
|
|
|
},
|
|
|
|
|
data(){
|
|
|
|
|
return {
|
|
|
|
|
currentNoteId: 0,
|
|
|
|
|
noteText: '',
|
|
|
|
|
statusText: 'Save',
|
|
|
|
|
lastNoteHash: null,
|
2019-07-20 16:07:22 -07:00
|
|
|
|
lastSaved: 0,
|
2019-07-19 13:51:57 -07:00
|
|
|
|
updated: 'Never',
|
|
|
|
|
editDebounce: null,
|
|
|
|
|
keyPressesCounter: 0,
|
2019-07-21 09:28:07 -07:00
|
|
|
|
fancyInput: 0, //Default to basic text edit. Upgrade if set to 1
|
|
|
|
|
color: '#FFF',
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
|
|
|
|
editor: DecoupledEditor,
|
|
|
|
|
editorConfig: {
|
|
|
|
|
startupFocus: 'end',
|
|
|
|
|
toolbar: ["alignment", "fontSize", "removeHighlight", "highlight", "bold", "italic", "strikethrough", "underline", "blockQuote", "heading", "link", "numberedList", "bulletedList", "insertTable", "|", "undo", "redo"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
noteid:function(newVal, oldVal){
|
|
|
|
|
|
|
|
|
|
if(newVal == this.currentNoteId){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(newVal == oldVal){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.currentNoteId = newVal
|
|
|
|
|
this.loadNote(this.currentNoteId)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
beforeMount(){
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
beforeDestroy(){
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
mounted: function() {
|
|
|
|
|
|
|
|
|
|
this.loadNote(this.noteid)
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2019-07-21 09:28:07 -07:00
|
|
|
|
onToggleFancyInput(){
|
|
|
|
|
|
|
|
|
|
if(this.fancyInput == 0){
|
|
|
|
|
this.fancyInput = 1
|
|
|
|
|
} else {
|
|
|
|
|
this.fancyInput = 0;
|
|
|
|
|
}
|
|
|
|
|
//Update last note hash, this will tell note to save next update
|
|
|
|
|
this.lastNoteHash = 0
|
|
|
|
|
},
|
|
|
|
|
onChangeColor(event){
|
|
|
|
|
//Grab the color of the button clicked
|
|
|
|
|
const style = getComputedStyle(event.target)
|
|
|
|
|
this.color = style['background-color']
|
|
|
|
|
|
|
|
|
|
if(this.color == "rgb(255, 255, 255)" || this.color == '#FFF'){
|
|
|
|
|
this.color = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.lastNoteHash = 0 //Update hash to force note update on next save
|
|
|
|
|
this.save()
|
|
|
|
|
},
|
2019-07-19 13:51:57 -07:00
|
|
|
|
loadNote(noteId){
|
|
|
|
|
let vm = this
|
|
|
|
|
//Component is activated with NoteId in place, lookup text with associated ID
|
|
|
|
|
if(this.$store.getters.getLoggedIn){
|
|
|
|
|
axios.post('/api/notes/get', {'noteId': noteId})
|
|
|
|
|
.then(response => {
|
2019-07-21 09:28:07 -07:00
|
|
|
|
|
2019-07-19 13:51:57 -07:00
|
|
|
|
//Set up local data
|
|
|
|
|
vm.currentNoteId = noteId
|
|
|
|
|
vm.noteText = response.data.text
|
|
|
|
|
vm.updated = response.data.updated
|
|
|
|
|
vm.lastNoteHash = vm.hashString(response.data.text)
|
|
|
|
|
|
2019-07-21 09:28:07 -07:00
|
|
|
|
if(response.data.raw_input == 1){
|
|
|
|
|
this.fancyInput = 1
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-19 13:51:57 -07:00
|
|
|
|
//Put focus on note, at the end of the note text
|
|
|
|
|
vm.$nextTick(() => {
|
|
|
|
|
// vm.$refs['custom-input'].focus()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
console.log('Could not fetch note')
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onReady(editor){
|
|
|
|
|
|
|
|
|
|
let vm = this
|
|
|
|
|
|
|
|
|
|
// Insert the toolbar before the editable area.
|
|
|
|
|
editor.ui.getEditableElement().parentElement.insertBefore(
|
|
|
|
|
editor.ui.view.toolbar.element,
|
|
|
|
|
editor.ui.getEditableElement()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
editor.editing.view.focus()
|
|
|
|
|
|
|
|
|
|
// const editor = this.editor;
|
|
|
|
|
const view = editor.editing.view;
|
|
|
|
|
const viewDocument = view.document;
|
|
|
|
|
|
|
|
|
|
//Insert 5 spaces when tab is pressed
|
|
|
|
|
viewDocument.on( 'keyup', ( evt, data ) => {
|
|
|
|
|
|
2019-07-21 09:28:07 -07:00
|
|
|
|
vm.onKeyup(event)
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
2019-07-20 16:07:22 -07:00
|
|
|
|
//Optional data bindings for tab key
|
2019-07-19 13:51:57 -07:00
|
|
|
|
if( (data.keyCode == 9) && viewDocument.isFocused ){
|
|
|
|
|
|
|
|
|
|
//Insert 5 spaces to simulate tab
|
2019-07-20 16:07:22 -07:00
|
|
|
|
//editor.execute( 'input', { text: " " } );
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
|
|
|
|
evt.stop(); // Prevent executing the default handler.
|
|
|
|
|
data.preventDefault();
|
|
|
|
|
view.scrollToTheSelection();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
},
|
2019-07-21 09:28:07 -07:00
|
|
|
|
onKeyup(){
|
|
|
|
|
let vm = this
|
|
|
|
|
//Each note, save after 5 seconds, focus lost or 30 characters typed.
|
|
|
|
|
clearTimeout(vm.editDebounce)
|
|
|
|
|
vm.editDebounce = setTimeout(() => {
|
|
|
|
|
vm.save()
|
|
|
|
|
}, 5000)
|
|
|
|
|
//Save after 20 keystrokes
|
|
|
|
|
vm.keyPressesCounter = (vm.keyPressesCounter + 1)
|
|
|
|
|
if(vm.keyPressesCounter > 30){
|
|
|
|
|
vm.keyPressesCounter = 0
|
|
|
|
|
vm.save()
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-07-19 13:51:57 -07:00
|
|
|
|
save(){
|
2019-07-20 16:07:22 -07:00
|
|
|
|
|
2019-07-19 13:51:57 -07:00
|
|
|
|
clearTimeout(this.editDebounce)
|
|
|
|
|
|
|
|
|
|
//Don't save note if its hash doesn't change
|
2019-07-21 09:28:07 -07:00
|
|
|
|
if( this.lastNoteHash == this.hashString(this.noteText) ){
|
2019-07-19 13:51:57 -07:00
|
|
|
|
return
|
|
|
|
|
}
|
2019-07-20 16:07:22 -07:00
|
|
|
|
|
2019-07-19 13:51:57 -07:00
|
|
|
|
const postData = {
|
|
|
|
|
'noteId':this.currentNoteId,
|
2019-07-21 09:28:07 -07:00
|
|
|
|
'text': this.noteText,
|
|
|
|
|
'fancyInput': this.fancyInput,
|
|
|
|
|
'color': this.color
|
2019-07-19 13:51:57 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let vm = this
|
2019-07-20 16:07:22 -07:00
|
|
|
|
|
|
|
|
|
//Only notify user if saving - may help with debugging in the future
|
|
|
|
|
vm.statusText = 'Saving'
|
2019-07-19 13:51:57 -07:00
|
|
|
|
axios.post('/api/notes/update', postData).then( response => {
|
2019-07-20 16:07:22 -07:00
|
|
|
|
vm.statusText = 'Save'
|
|
|
|
|
vm.updated = Math.round((+new Date)/1000)
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
|
|
|
|
//Update last saved note hash
|
|
|
|
|
vm.lastNoteHash = vm.hashString(vm.noteText)
|
2019-07-21 09:28:07 -07:00
|
|
|
|
})
|
2019-07-19 13:51:57 -07:00
|
|
|
|
},
|
|
|
|
|
hashString(text){
|
|
|
|
|
var hash = 0;
|
|
|
|
|
if (text.length == 0) {
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
for (let i = 0; i < text.length; i++) {
|
|
|
|
|
let char = text.charCodeAt(i);
|
|
|
|
|
hash = ((hash<<5)-hash)+char;
|
|
|
|
|
hash = hash & hash; // Convert to 32bit integer
|
|
|
|
|
}
|
|
|
|
|
return hash;
|
|
|
|
|
},
|
|
|
|
|
close(){
|
2019-07-21 09:28:07 -07:00
|
|
|
|
this.save()
|
2019-07-20 16:07:22 -07:00
|
|
|
|
this.$bus.$emit('close_active_note', this.position)
|
2019-07-19 13:51:57 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style type="text/css" scoped>
|
|
|
|
|
|
2019-07-21 09:28:07 -07:00
|
|
|
|
.textarea-height {
|
|
|
|
|
height: calc(100% - 177px);
|
|
|
|
|
}
|
|
|
|
|
.no-flow {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.raw-edit {
|
|
|
|
|
font-family: 'Open Sans' !important;
|
|
|
|
|
font-size: 1.3rem !important;
|
|
|
|
|
background: white;
|
|
|
|
|
width: 100%;
|
|
|
|
|
resize: none;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* container styles change based on mobile and number of open screens */
|
2019-07-19 13:51:57 -07:00
|
|
|
|
.master-note-edit {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
2019-07-20 16:07:22 -07:00
|
|
|
|
background: white;
|
2019-07-21 09:28:07 -07:00
|
|
|
|
height: 100vh;
|
2019-07-19 13:51:57 -07:00
|
|
|
|
box-shadow: 0px 0px 5px 2px rgba(140,140,140,1);
|
|
|
|
|
}
|
2019-07-20 16:07:22 -07:00
|
|
|
|
/* One note open, in the middle of the screen */
|
|
|
|
|
.master-note-edit.position-0 {
|
|
|
|
|
left: 30%;
|
|
|
|
|
right: 1%;
|
|
|
|
|
}
|
2019-07-21 09:28:07 -07:00
|
|
|
|
@media only screen and (max-width: 740px) {
|
|
|
|
|
.master-note-edit.position-0 {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-20 16:07:22 -07:00
|
|
|
|
/* Two Notes Open, each takes up 50% of the space */
|
|
|
|
|
.master-note-edit.position-1 {
|
|
|
|
|
left: 50%;
|
|
|
|
|
right: 0%;
|
|
|
|
|
}
|
|
|
|
|
.master-note-edit.position-2 {
|
|
|
|
|
left: 0%;
|
|
|
|
|
right: 50%;
|
|
|
|
|
}
|
2019-07-19 13:51:57 -07:00
|
|
|
|
|
|
|
|
|
</style>
|