Use for-of instead of forEach (#3583)

Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
This commit is contained in:
Aya Morisawa 2018-12-11 20:36:55 +09:00 committed by GitHub
parent 30c53e9ee0
commit 125849673a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
84 changed files with 345 additions and 283 deletions

View file

@ -224,7 +224,9 @@ export default Vue.extend({
if (this.menu) {
items.unshift(null);
this.menu.reverse().forEach(i => items.unshift(i));
for (const i of this.menu.reverse()) {
items.unshift(i);
}
}
return items;

View file

@ -77,7 +77,9 @@ export default Vue.extend({
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
for (const n of notes) {
(this.$refs.timeline as any).append(n);
}
this.moreFetching = false;
});

View file

@ -102,7 +102,9 @@ export default Vue.extend({
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
for (const n of notes) {
(this.$refs.timeline as any).append(n);
}
this.moreFetching = false;
});

View file

@ -104,7 +104,9 @@ export default Vue.extend({
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
for (const n of notes) {
(this.$refs.timeline as any).append(n);
}
this.moreFetching = false;
});

View file

@ -75,7 +75,9 @@ export default Vue.extend({
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
for (const n of notes) {
(this.$refs.timeline as any).append(n);
}
this.moreFetching = false;
});

View file

@ -164,7 +164,9 @@ export default Vue.extend({
},
releaseQueue() {
this.queue.forEach(n => this.prepend(n, true));
for (const n of this.queue) {
this.prepend(n, true);
}
this.queue = [];
},

View file

@ -142,7 +142,9 @@ export default Vue.extend({
},
releaseQueue() {
this.queue.forEach(n => this.prepend(n));
for (const n of this.queue) {
this.prepend(n);
}
this.queue = [];
},

View file

@ -123,7 +123,9 @@ export default Vue.extend({
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
for (const n of notes) {
(this.$refs.timeline as any).append(n);
}
this.moreFetching = false;
});

View file

@ -167,11 +167,11 @@ export default Vue.extend({
limit: 9,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {
notes.forEach(note => {
note.files.forEach(file => {
for (const note of notes) {
for (const file of note.files) {
file._note = note;
});
});
}
}
const files = concat(notes.map((n: any): any[] => n.files));
this.images = files.filter(f => image.includes(f.type)).slice(0, 9);
});
@ -298,7 +298,7 @@ export default Vue.extend({
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
for (const n of notes) (this.$refs.timeline as any).append(n);
this.moreFetching = false;
});