Handle locked accounts
This commit is contained in:
parent
dbfdd6ec68
commit
a71f66dcbd
1 changed files with 15 additions and 5 deletions
|
@ -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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue