2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { $i } from '@/account.js';
|
2023-07-18 12:50:23 +02:00
|
|
|
|
2023-12-18 12:59:20 +01:00
|
|
|
export function isFollowingVisibleForMe(user: Misskey.entities.UserDetailed): boolean {
|
2023-07-18 12:50:23 +02:00
|
|
|
if ($i && $i.id === user.id) return true;
|
|
|
|
|
2023-12-18 12:59:20 +01:00
|
|
|
if (user.followingVisibility === 'private') return false;
|
|
|
|
if (user.followingVisibility === 'followers' && !user.isFollowing) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
export function isFollowersVisibleForMe(user: Misskey.entities.UserDetailed): boolean {
|
|
|
|
if ($i && $i.id === user.id) return true;
|
|
|
|
|
|
|
|
if (user.followersVisibility === 'private') return false;
|
|
|
|
if (user.followersVisibility === 'followers' && !user.isFollowing) return false;
|
2023-07-18 12:50:23 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|