Sengi-Windows-MacOS-Linux/src/app/components/stream/status/action-bar/action-bar.component.ts

234 lines
8.2 KiB
TypeScript
Raw Normal View History

import { Component, OnInit, OnDestroy, Input, Output, EventEmitter } from '@angular/core';
2019-02-12 04:33:54 +01:00
import { HttpErrorResponse } from '@angular/common/http';
2018-10-02 06:19:11 +02:00
import { Store } from '@ngxs/store';
2018-10-13 17:38:23 +02:00
import { Observable, Subscription } from 'rxjs';
2019-07-04 05:47:06 +02:00
import { faWindowClose, faReply, faRetweet, faStar, faEllipsisH, faLock, faEnvelope } from "@fortawesome/free-solid-svg-icons";
import { faWindowClose as faWindowCloseRegular } from "@fortawesome/free-regular-svg-icons";
2018-10-02 06:19:11 +02:00
import { MastodonService } from '../../../../services/mastodon.service';
import { AccountInfo } from '../../../../states/accounts.state';
import { Status, Account, Results } from '../../../../services/models/mastodon.interfaces';
2019-07-04 02:23:23 +02:00
import { ToolsService, OpenThreadEvent } from '../../../../services/tools.service';
2019-02-12 04:33:54 +01:00
import { NotificationService } from '../../../../services/notification.service';
import { StatusWrapper } from '../../../../models/common.model';
2019-07-01 22:30:28 +02:00
@Component({
selector: 'app-action-bar',
templateUrl: './action-bar.component.html',
styleUrls: ['./action-bar.component.scss']
})
export class ActionBarComponent implements OnInit, OnDestroy {
faWindowClose = faWindowClose;
faReply = faReply;
faRetweet = faRetweet;
faStar = faStar;
faWindowCloseRegular = faWindowCloseRegular;
2019-06-01 20:22:12 +02:00
faEllipsisH = faEllipsisH;
faLock = faLock;
2019-07-04 05:47:06 +02:00
faEnvelope = faEnvelope;
@Input() statusWrapper: StatusWrapper;
2018-10-13 07:10:43 +02:00
@Output() replyEvent = new EventEmitter();
@Output() cwIsActiveEvent = new EventEmitter<boolean>();
2019-07-04 02:23:23 +02:00
@Output() browseThreadEvent = new EventEmitter<OpenThreadEvent>();
isFavorited: boolean;
isBoosted: boolean;
2019-07-04 05:47:06 +02:00
isDM: boolean;
2018-10-02 06:19:11 +02:00
isBoostLocked: boolean;
isLocked: boolean;
2019-04-07 20:18:10 +02:00
favoriteIsLoading: boolean;
boostIsLoading: boolean;
isContentWarningActive: boolean = false;
displayedStatus: Status;
private isProviderSelected: boolean;
private selectedAccounts: AccountInfo[];
private favoriteStatePerAccountId: { [id: string]: boolean; } = {};
private bootedStatePerAccountId: { [id: string]: boolean; } = {};
private accounts$: Observable<AccountInfo[]>;
private accountSub: Subscription;
constructor(
2018-10-02 06:19:11 +02:00
private readonly store: Store,
2019-02-12 04:28:15 +01:00
private readonly toolsService: ToolsService,
2019-04-07 20:18:10 +02:00
private readonly mastodonService: MastodonService,
2019-02-12 04:33:54 +01:00
private readonly notificationService: NotificationService) {
this.accounts$ = this.store.select(state => state.registeredaccounts.accounts);
}
ngOnInit() {
const status = this.statusWrapper.status;
const account = this.statusWrapper.provider;
2019-04-07 21:51:32 +02:00
2019-07-03 23:53:53 +02:00
if (status.reblog) {
2019-04-07 21:51:32 +02:00
this.favoriteStatePerAccountId[account.id] = status.reblog.favourited;
this.bootedStatePerAccountId[account.id] = status.reblog.reblogged;
2019-07-04 00:25:35 +02:00
this.displayedStatus = status.reblog;
2019-04-07 21:51:32 +02:00
} else {
this.favoriteStatePerAccountId[account.id] = status.favourited;
this.bootedStatePerAccountId[account.id] = status.reblogged;
2019-07-04 00:25:35 +02:00
this.displayedStatus = status;
2019-07-03 23:53:53 +02:00
}
if (this.displayedStatus.visibility === 'direct') {
2019-07-04 05:47:06 +02:00
this.isDM = true;
}
this.accountSub = this.accounts$.subscribe((accounts: AccountInfo[]) => {
this.checkStatus(accounts);
});
}
ngOnDestroy(): void {
this.accountSub.unsubscribe();
}
2018-10-04 02:13:31 +02:00
private checkStatus(accounts: AccountInfo[]): void {
const status = this.statusWrapper.status;
const provider = this.statusWrapper.provider;
this.selectedAccounts = accounts.filter(x => x.isSelected);
this.isProviderSelected = this.selectedAccounts.filter(x => x.id === provider.id).length > 0;
if (status.visibility === 'direct' || status.visibility === 'private') {
this.isBoostLocked = true;
} else {
this.isBoostLocked = false;
}
if ((status.visibility === 'direct' || status.visibility === 'private') && !this.isProviderSelected) {
this.isLocked = true;
} else {
this.isLocked = false;
}
2019-04-07 20:18:10 +02:00
if (status.sensitive || status.spoiler_text) {
this.isContentWarningActive = true;
}
this.checkIfFavorited();
this.checkIfBoosted();
}
showContent(): boolean {
this.isContentWarningActive = false;
this.cwIsActiveEvent.next(false);
return false;
}
hideContent(): boolean {
this.isContentWarningActive = true;
this.cwIsActiveEvent.next(true);
return false;
}
reply(): boolean {
2018-10-13 07:10:43 +02:00
this.replyEvent.emit();
return false;
}
boost(): boolean {
2019-07-03 23:53:53 +02:00
if (this.boostIsLoading) return;
2019-04-07 20:18:10 +02:00
this.boostIsLoading = true;
const account = this.toolsService.getSelectedAccounts()[0];
const usableStatus = this.toolsService.getStatusUsableByAccount(account, this.statusWrapper);
usableStatus
.then((status: Status) => {
if (this.isBoosted && status.reblogged) {
return this.mastodonService.unreblog(account, status);
} else if (!this.isBoosted && !status.reblogged) {
return this.mastodonService.reblog(account, status);
} else {
return Promise.resolve(status);
}
})
.then((boostedStatus: Status) => {
2019-07-03 23:53:53 +02:00
if (boostedStatus.pleroma) {
2019-04-13 23:04:24 +02:00
this.bootedStatePerAccountId[account.id] = boostedStatus.reblog !== null; //FIXME: when Pleroma will return the good status
} else {
let reblogged = boostedStatus.reblogged; //FIXME: when pixelfed will return the good status
if(reblogged === null){
reblogged = !this.bootedStatePerAccountId[account.id];
}
this.bootedStatePerAccountId[account.id] = reblogged;
2019-07-03 23:53:53 +02:00
}
2019-04-07 20:18:10 +02:00
this.checkIfBoosted();
})
.catch((err: HttpErrorResponse) => {
2019-09-07 23:52:07 +02:00
this.notificationService.notifyHttpError(err, account);
2019-04-07 20:18:10 +02:00
})
.then(() => {
this.boostIsLoading = false;
});
return false;
}
favorite(): boolean {
2019-07-03 23:53:53 +02:00
if (this.favoriteIsLoading) return;
2019-04-07 20:18:10 +02:00
this.favoriteIsLoading = true;
const account = this.toolsService.getSelectedAccounts()[0];
const usableStatus = this.toolsService.getStatusUsableByAccount(account, this.statusWrapper);
usableStatus
.then((status: Status) => {
if (this.isFavorited && status.favourited) {
return this.mastodonService.unfavorite(account, status);
} else if (!this.isFavorited && !status.favourited) {
return this.mastodonService.favorite(account, status);
} else {
return Promise.resolve(status);
}
})
.then((favoritedStatus: Status) => {
let favourited = favoritedStatus.favourited; //FIXME: when pixelfed will return the good status
if(favourited === null){
favourited = !this.favoriteStatePerAccountId[account.id];
}
this.favoriteStatePerAccountId[account.id] = favourited;
2019-04-07 20:18:10 +02:00
this.checkIfFavorited();
})
.catch((err: HttpErrorResponse) => {
2019-09-07 23:52:07 +02:00
this.notificationService.notifyHttpError(err, account);
2019-04-07 20:18:10 +02:00
})
.then(() => {
this.favoriteIsLoading = false;
});
return false;
}
private checkIfBoosted() {
const selectedAccount = <AccountInfo>this.selectedAccounts[0];
if (selectedAccount) {
this.isBoosted = this.bootedStatePerAccountId[selectedAccount.id];
} else {
this.isBoosted = false;
}
}
private checkIfFavorited() {
const selectedAccount = <AccountInfo>this.selectedAccounts[0];
if (selectedAccount) {
this.isFavorited = this.favoriteStatePerAccountId[selectedAccount.id];
} else {
this.isFavorited = false;
}
}
browseThread(event: OpenThreadEvent){
this.browseThreadEvent.next(event);
}
}