mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -06:00
REFACTOR: removes useless variable assignment (#9666)
This commit is contained in:
parent
1dd9df9cd0
commit
3cd412ae02
@ -641,19 +641,18 @@ export default Component.extend(
|
||||
},
|
||||
|
||||
_highlightNext() {
|
||||
const highlightedIndex = this.mainCollection.indexOf(
|
||||
let highlightedIndex = this.mainCollection.indexOf(
|
||||
this.selectKit.highlighted
|
||||
);
|
||||
let newHighlightedIndex = highlightedIndex;
|
||||
const count = this.mainCollection.length;
|
||||
|
||||
if (highlightedIndex < count - 1) {
|
||||
newHighlightedIndex = highlightedIndex + 1;
|
||||
highlightedIndex = highlightedIndex + 1;
|
||||
} else {
|
||||
newHighlightedIndex = 0;
|
||||
highlightedIndex = 0;
|
||||
}
|
||||
|
||||
const highlighted = this.mainCollection.objectAt(newHighlightedIndex);
|
||||
const highlighted = this.mainCollection.objectAt(highlightedIndex);
|
||||
if (highlighted) {
|
||||
this._scrollToRow(highlighted);
|
||||
this.set("selectKit.highlighted", highlighted);
|
||||
@ -661,19 +660,18 @@ export default Component.extend(
|
||||
},
|
||||
|
||||
_highlightPrevious() {
|
||||
const highlightedIndex = this.mainCollection.indexOf(
|
||||
let highlightedIndex = this.mainCollection.indexOf(
|
||||
this.selectKit.highlighted
|
||||
);
|
||||
let newHighlightedIndex = highlightedIndex;
|
||||
const count = this.mainCollection.length;
|
||||
|
||||
if (highlightedIndex > 0) {
|
||||
newHighlightedIndex = highlightedIndex - 1;
|
||||
highlightedIndex = highlightedIndex - 1;
|
||||
} else {
|
||||
newHighlightedIndex = count - 1;
|
||||
highlightedIndex = count - 1;
|
||||
}
|
||||
|
||||
const highlighted = this.mainCollection.objectAt(newHighlightedIndex);
|
||||
const highlighted = this.mainCollection.objectAt(highlightedIndex);
|
||||
if (highlighted) {
|
||||
this._scrollToRow(highlighted);
|
||||
this.set("selectKit.highlighted", highlighted);
|
||||
|
Loading…
Reference in New Issue
Block a user