diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 9bbf76349..fba812fc7 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -40,14 +40,14 @@
@@ -62,14 +62,15 @@ export default Vue.extend({
default: false
},
- extract: {
+ prop: {
+ type: String,
required: false
}
},
computed: {
notes(): any[] {
- return this.extract ? this.extract(this.items) : this.items;
+ return this.prop ? this.items.map(item => item[this.prop]) : this.items;
},
reversed(): boolean {
@@ -78,6 +79,15 @@ export default Vue.extend({
},
methods: {
+ updated(oldValue, newValue) {
+ const i = this.notes.findIndex(n => n === oldValue);
+ if (this.prop) {
+ Vue.set(this.items[i], this.prop, newValue);
+ } else {
+ Vue.set(this.items, i, newValue);
+ }
+ },
+
focus() {
this.$refs.notes.focus();
}
diff --git a/src/client/components/reactions-viewer.reaction.vue b/src/client/components/reactions-viewer.reaction.vue
index 97d019d17..639a1603c 100644
--- a/src/client/components/reactions-viewer.reaction.vue
+++ b/src/client/components/reactions-viewer.reaction.vue
@@ -1,7 +1,7 @@
@@ -30,14 +30,6 @@ export default Vue.extend({
type: String,
required: true,
},
- myReaction: {
- type: String,
- required: false,
- },
- emojis: {
- type: Array,
- required: true,
- },
count: {
type: Number,
required: true,
@@ -79,7 +71,7 @@ export default Vue.extend({
toggleReaction() {
if (!this.canToggle) return;
- const oldReaction = this.myReaction;
+ const oldReaction = this.note.myReaction;
if (oldReaction) {
this.$root.api('notes/reactions/delete', {
noteId: this.note.id
diff --git a/src/client/components/reactions-viewer.vue b/src/client/components/reactions-viewer.vue
index 353e72ccf..88e7df464 100644
--- a/src/client/components/reactions-viewer.vue
+++ b/src/client/components/reactions-viewer.vue
@@ -1,6 +1,6 @@
-
+
@@ -12,28 +12,16 @@ export default Vue.extend({
components: {
XReaction
},
+ data() {
+ return {
+ initialReactions: new Set(Object.keys(this.note.reactions))
+ };
+ },
props: {
note: {
type: Object,
required: true
},
- reactions: {
- type: Object,
- required: true
- },
- myReaction: {
- type: String,
- required: false,
- },
- emojis: {
- type: Array,
- required: true,
- },
- },
- data() {
- return {
- initialReactions: new Set(Object.keys(this.note.reactions))
- };
},
computed: {
isMe(): boolean {
diff --git a/src/client/components/timeline.vue b/src/client/components/timeline.vue
index 5fd55e8ca..28ff6ab1b 100644
--- a/src/client/components/timeline.vue
+++ b/src/client/components/timeline.vue
@@ -52,7 +52,6 @@ export default Vue.extend({
});
const prepend = note => {
- Object.freeze(note);
(this.$refs.tl as any).prepend(note);
this.$emit('note');
diff --git a/src/client/pages/favorites.vue b/src/client/pages/favorites.vue
index 59bef2ca9..0e625f84c 100644
--- a/src/client/pages/favorites.vue
+++ b/src/client/pages/favorites.vue
@@ -2,7 +2,7 @@
{{ $t('favorites') }}
-
+
diff --git a/src/client/pages/instance/index.vue b/src/client/pages/instance/index.vue
index d21f8d455..3aedcb65a 100644
--- a/src/client/pages/instance/index.vue
+++ b/src/client/pages/instance/index.vue
@@ -436,7 +436,7 @@ export default Vue.extend({
},
onStatsLog(statsLog) {
- for (const stats of statsLog.reverse()) {
+ for (const stats of [...statsLog].reverse()) {
this.onStats(stats);
}
}
diff --git a/src/client/pages/instance/queue.queue.vue b/src/client/pages/instance/queue.queue.vue
index 1649d1e17..c2aa545fc 100644
--- a/src/client/pages/instance/queue.queue.vue
+++ b/src/client/pages/instance/queue.queue.vue
@@ -169,7 +169,7 @@ export default Vue.extend({
},
onStatsLog(statsLog) {
- for (const stats of statsLog.reverse()) {
+ for (const stats of [...statsLog].reverse()) {
this.onStats(stats);
}
},
diff --git a/src/client/pages/note.vue b/src/client/pages/note.vue
index 5464875df..3f4251632 100644
--- a/src/client/pages/note.vue
+++ b/src/client/pages/note.vue
@@ -14,7 +14,7 @@
-
+
diff --git a/src/client/scripts/stream.ts b/src/client/scripts/stream.ts
index 4dcd3f1b2..8a525ba00 100644
--- a/src/client/scripts/stream.ts
+++ b/src/client/scripts/stream.ts
@@ -112,10 +112,10 @@ export default class Stream extends EventEmitter {
}
for (const c of connections.filter(c => c != null)) {
- c.emit(body.type, body.body);
+ c.emit(body.type, Object.freeze(body.body));
}
} else {
- this.emit(type, body);
+ this.emit(type, Object.freeze(body));
}
}