Handle locked accounts

This commit is contained in:
Lim Chee Aun 2023-01-03 13:25:55 +08:00
parent dbfdd6ec68
commit a71f66dcbd

View file

@ -197,17 +197,19 @@ function Account({ account }) {
{relationshipUIState !== 'loading' && relationship && ( {relationshipUIState !== 'loading' && relationship && (
<button <button
type="button" type="button"
class={`${following ? 'light' : ''} swap`} class={`${following || requested ? 'light swap' : ''}`}
data-swap-state={following ? 'danger' : ''} data-swap-state={following || requested ? 'danger' : ''}
disabled={relationshipUIState === 'loading'} disabled={relationshipUIState === 'loading'}
onClick={() => { onClick={() => {
setRelationshipUIState('loading'); setRelationshipUIState('loading');
(async () => { (async () => {
try { try {
let newRelationship; let newRelationship;
if (following) { if (following || requested) {
const yes = confirm( const yes = confirm(
'Are you sure that you want to unfollow this account?', requested
? 'Are you sure that you want to withdraw follow request?'
: 'Are you sure that you want to unfollow this account?',
); );
if (yes) { if (yes) {
newRelationship = await masto.v1.accounts.unfollow( newRelationship = await masto.v1.accounts.unfollow(
@ -231,10 +233,18 @@ function Account({ account }) {
<span>Following</span> <span>Following</span>
<span>Unfollow</span> <span>Unfollow</span>
</> </>
) : requested ? (
<>
<span>Requested</span>
<span>Withdraw</span>
</>
) : locked ? (
<>
<Icon icon="lock" /> <span>Follow</span>
</>
) : ( ) : (
'Follow' 'Follow'
)} )}
{/* {following ? 'Unfollow…' : 'Follow'} */}
</button> </button>
)} )}
</p> </p>