Handle shift-clicking orignal item

This commit is contained in:
Michael Shamoon 2021-01-15 02:13:21 -08:00
parent 86376c8c5f
commit 8d606b9f34

View File

@ -267,9 +267,8 @@ export class DocumentListViewService {
const toIndex = Math.max(this.lastSelectedDocumentIndex, documentToIndex)
if (this.lastSelectedDocumentToIndex !== null &&
((this.lastSelectedDocumentToIndex > this.lastSelectedDocumentIndex && documentToIndex < this.lastSelectedDocumentIndex) ||
(this.lastSelectedDocumentToIndex < this.lastSelectedDocumentIndex && documentToIndex > this.lastSelectedDocumentIndex))) {
console.log('invert');
((this.lastSelectedDocumentToIndex > this.lastSelectedDocumentIndex && documentToIndex <= this.lastSelectedDocumentIndex) ||
(this.lastSelectedDocumentToIndex < this.lastSelectedDocumentIndex && documentToIndex >= this.lastSelectedDocumentIndex))) {
// new click is "opposite side" of anchor so we invert the old selection
this.documents.slice(Math.min(this.lastSelectedDocumentIndex, this.lastSelectedDocumentToIndex), Math.max(this.lastSelectedDocumentIndex, this.lastSelectedDocumentToIndex) + 1).forEach(d => {
@ -282,7 +281,7 @@ export class DocumentListViewService {
})
this.lastSelectedDocumentToIndex = documentToIndex
} else { // e.g. shift key but was first click
this.lastSelectedDocumentIndex = this.documentIndexInCurrentView(d.id)
this.toggleSelected(d)
}
}