Bugfix Batch

* Animations disabled on remote events, closing note still triggers animation for local user
* Created save icons to fix display on mobile
* Hidden URLs are hidden until note is deleted or URL is removed from note
* Tags search all categories, but probably not trash
* Back to all notes button clears search
* Deleted Notes are removed from search index
This commit is contained in:
Max G
2020-05-19 03:38:43 +00:00
parent 5096e74a60
commit 543ecf0f2d
8 changed files with 58 additions and 45 deletions

View File

@@ -54,8 +54,6 @@
</div>
<div class="menu-bottom-half">
<div class="edit-divide"></div>
<div class="edit-button" v-on:click="undoCustom()" data-tooltip="Undo" data-position="bottom center" data-inverted>
<i class="undo icon"></i>
@@ -101,13 +99,16 @@
<i class="folder icon"></i>
</div>
<span>{{ statusText }}</span>
<div class="edit-button">
<i class="icons">
<i class="grey save outline icon"></i>
<i v-if="statusText == 'saved'" class="green small bottom left corner check icon"></i>
<i v-if="statusText == 'saving'" class="small bottom left corner double angle up icon"></i>
</i>
</div>
</div>
<!-- <span :data-tooltip="`Created: ${$helpers.timeAgo(created)}`">
Edited: {{ $helpers.timeAgo(updated) }}
</span> -->
</div>
<div class="bottom-edit-menu"></div>
@@ -265,7 +266,7 @@
updated: '',
shareUsername: null,
diffNoteText: '',
statusText: 'Saved.',
statusText: 'saved',
lastNoteHash: null,
saveDebounce: null, //Prevent save from being called numerous times quickly
updated: 'Never',
@@ -1035,7 +1036,7 @@
},
onKeyup(){
this.statusText = 'Modded'
this.statusText = 'modified'
// this.diffText()
@@ -1063,7 +1064,7 @@
const currentNoteText = this.getText()
const currentHash = this.hashString( currentNoteText )
if( this.lastNoteHash == currentHash){
this.statusText = 'Saved.'
this.statusText = 'saved'
return resolve(true)
}
@@ -1084,9 +1085,9 @@
// console.log('Save Hash', currentHash)
this.statusText = 'Saving'
this.statusText = 'saving'
axios.post('/api/note/update', postData).then( response => {
this.statusText = 'Saved.'
this.statusText = 'saved'
this.updated = Math.round((+new Date)/1000)
this.modified = true
@@ -1298,7 +1299,7 @@
background-color: var(--menu-accent);
height: 15px;
width: 1px;
margin: 0 3px;
margin: 0 1px;
padding: 0;
}
@media only screen and (max-width: 740px) {

View File

@@ -187,8 +187,8 @@
<!-- set -->
<div class="middle aligned centered row">
<div class="six wide right aligned column">
<h2>Search your data</h2>
<h3>Type in a word and find that same word but somewhere else</h3>
<h2>Secure Search</h2>
<h3>Keyword search using an encrypted search index helps you find what you need without compromising security</h3>
</div>
<div class="six wide column">
<img loading="lazy" width="100%" src="/api/static/assets/marketing/solution.svg" alt="Hypercube of Solutions">

View File

@@ -218,7 +218,8 @@
'sent': ['paper plane outline', 'Shared Notes'],
'notes': ['file','Notes'],
'highlights': ['paragraph', 'Found In Text'],
'trashed': ['poop', 'Trashed Notes']
'trashed': ['poop', 'Trashed Notes'],
'tagged': ['tag', 'Tagged'],
},
noteSections: {
pinned: [],
@@ -227,7 +228,8 @@
sent:[],
notes: [],
highlights: [],
trashed: []
trashed: [],
tagged:[],
},
}
@@ -241,7 +243,7 @@
//Do not update note if its open
if(this.activeNoteId1 != noteId){
this.$store.dispatch('fetchAndUpdateUserTotals')
this.updateSingleNote(noteId)
this.updateSingleNote(noteId, false)
}
})
@@ -249,7 +251,7 @@
//Do not update note if its open
if(this.activeNoteId1 != noteId){
this.$store.dispatch('fetchAndUpdateUserTotals')
this.updateSingleNote(noteId)
this.updateSingleNote(noteId, false)
}
})
@@ -258,7 +260,7 @@
//Do not update note if its open
if(this.activeNoteId1 != noteId){
this.updateSingleNote(noteId)
this.updateSingleNote(noteId, false)
}
})
@@ -481,7 +483,7 @@
},
// @TODO Don't even trigger this if the note wasn't changed
updateSingleNote(noteId){
updateSingleNote(noteId, focuseAndAnimate = true){
noteId = parseInt(noteId)
@@ -539,7 +541,7 @@
this.$nextTick( () => {
//Trigger close animation on note
if(this.$refs['note-'+noteId] && this.$refs['note-'+noteId][0]){
if(this.$refs['note-'+noteId] && this.$refs['note-'+noteId][0] && focuseAndAnimate){
this.$refs['note-'+noteId][0].justClosed()
}
})
@@ -662,6 +664,11 @@
//Sort notes into defined sections
notes.forEach(note => {
if(this.searchTags.length >= 1){
this.noteSections.tagged.push(note)
return
}
//Only show trashed notes when trashed
if(this.fastFilters.onlyShowTrashed == 1){
@@ -725,7 +732,7 @@
this.fastFilters = {}
this.updateFastFilters(5)
this.foundAttachments = [] //Remove all attachments
// this.$bus.$emit('reset_fast_filters')
this.$bus.$emit('reset_fast_filters')
//Load initial batch, then tags, then other batch
this.search(true, this.firstLoadBatchSize)
@@ -733,9 +740,6 @@
//Load a larger batch once first batch has loaded
return this.search(false, this.batchSize, true)
})
.then( i => {
//Thats how you promise chain
})
},
updateFastFilters(index){