rename vm.toggleReaction to vm.toggle
This commit is contained in:
parent
c46c330efb
commit
38b465cb9d
2 changed files with 7 additions and 7 deletions
|
@ -164,7 +164,7 @@ class ReactionViewModel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
toggleReaction(log = null) {
|
toggle(log = null) {
|
||||||
return this._parentTile.toggleReaction(this.key, log);
|
return this._parentTile.toggleReaction(this.key, log);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -264,7 +264,7 @@ export function tests() {
|
||||||
// make sure the preexisting reaction is counted
|
// make sure the preexisting reaction is counted
|
||||||
assert.equal(reactionVM.count, 1);
|
assert.equal(reactionVM.count, 1);
|
||||||
// 5.1. unset reaction, should redact the pre-existing reaction
|
// 5.1. unset reaction, should redact the pre-existing reaction
|
||||||
await reactionVM.toggleReaction();
|
await reactionVM.toggle();
|
||||||
{
|
{
|
||||||
assert.equal(reactionVM.count, 0);
|
assert.equal(reactionVM.count, 0);
|
||||||
const {value: redaction, type} = await queueObserver.next();
|
const {value: redaction, type} = await queueObserver.next();
|
||||||
|
@ -275,7 +275,7 @@ export function tests() {
|
||||||
assert.equal("update", (await queueObserver.next()).type);
|
assert.equal("update", (await queueObserver.next()).type);
|
||||||
}
|
}
|
||||||
// 5.2. set reaction, should send a new reaction as the redaction is already sending
|
// 5.2. set reaction, should send a new reaction as the redaction is already sending
|
||||||
await reactionVM.toggleReaction();
|
await reactionVM.toggle();
|
||||||
let reactionIndex;
|
let reactionIndex;
|
||||||
{
|
{
|
||||||
assert.equal(reactionVM.count, 1);
|
assert.equal(reactionVM.count, 1);
|
||||||
|
@ -286,7 +286,7 @@ export function tests() {
|
||||||
reactionIndex = index;
|
reactionIndex = index;
|
||||||
}
|
}
|
||||||
// 5.3. unset reaction, should abort the previous pending reaction as it hasn't started sending yet
|
// 5.3. unset reaction, should abort the previous pending reaction as it hasn't started sending yet
|
||||||
await reactionVM.toggleReaction();
|
await reactionVM.toggle();
|
||||||
{
|
{
|
||||||
assert.equal(reactionVM.count, 0);
|
assert.equal(reactionVM.count, 0);
|
||||||
const {index, type} = await queueObserver.next();
|
const {index, type} = await queueObserver.next();
|
||||||
|
@ -338,7 +338,7 @@ export function tests() {
|
||||||
}
|
}
|
||||||
// 5.2. unset reaction, should redact the previous pending reaction as it has started sending already
|
// 5.2. unset reaction, should redact the previous pending reaction as it has started sending already
|
||||||
let redactionIndex;
|
let redactionIndex;
|
||||||
await reactionVM.toggleReaction();
|
await reactionVM.toggle();
|
||||||
{
|
{
|
||||||
assert.equal(reactionVM.count, 0);
|
assert.equal(reactionVM.count, 0);
|
||||||
const {value: redaction, type, index} = await queueObserver.next();
|
const {value: redaction, type, index} = await queueObserver.next();
|
||||||
|
@ -348,7 +348,7 @@ export function tests() {
|
||||||
redactionIndex = index;
|
redactionIndex = index;
|
||||||
}
|
}
|
||||||
// 5.3. set reaction, should abort the previous pending redaction as it hasn't started sending yet
|
// 5.3. set reaction, should abort the previous pending redaction as it hasn't started sending yet
|
||||||
await reactionVM.toggleReaction();
|
await reactionVM.toggle();
|
||||||
{
|
{
|
||||||
assert.equal(reactionVM.count, 1);
|
assert.equal(reactionVM.count, 1);
|
||||||
const {index, type} = await queueObserver.next();
|
const {index, type} = await queueObserver.next();
|
||||||
|
|
|
@ -40,6 +40,6 @@ class ReactionView extends TemplateView {
|
||||||
}
|
}
|
||||||
|
|
||||||
onClick() {
|
onClick() {
|
||||||
this.value.toggleReaction();
|
this.value.toggle();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue