Merge remote-tracking branch 'origin/main' into no-untranslated-jsx

This commit is contained in:
danidfra 2024-10-23 10:44:54 -03:00
commit fb5003682f
12 changed files with 87 additions and 65 deletions

View File

@ -133,7 +133,7 @@
"no-irregular-whitespace": "error",
"no-loop-func": "error",
"no-mixed-spaces-and-tabs": "error",
"no-nested-ternary": "warn",
"no-nested-ternary": "error",
"no-restricted-imports": [
"error",
{

View File

@ -27,10 +27,10 @@ function logInNostr(pubkey: string) {
secret,
}));
dispatch(setNostrPubkey(undefined));
const { access_token } = dispatch(authLoggedIn(token));
return await dispatch(verifyCredentials(access_token as string));
await dispatch(verifyCredentials(access_token as string));
dispatch(setNostrPubkey(undefined));
};
}

View File

@ -241,7 +241,8 @@ const saveSettings = (opts?: SettingOpts) =>
const getLocale = (state: RootState, fallback = 'en') => {
const localeWithVariant = (getSettings(state).get('locale') as string).replace('_', '-');
const locale = localeWithVariant.split('-')[0];
return Object.keys(messages).includes(localeWithVariant) ? localeWithVariant : Object.keys(messages).includes(locale) ? locale : fallback;
const fallbackLocale = Object.keys(messages).includes(locale) ? locale : fallback;
return Object.keys(messages).includes(localeWithVariant) ? localeWithVariant : fallbackLocale;
};
type SettingsAction =

View File

@ -2,7 +2,7 @@ import { NRelay, NRelay1, NostrSigner } from '@nostrify/nostrify';
import React, { createContext, useContext, useState, useEffect, useMemo } from 'react';
import { NKeys } from 'soapbox/features/nostr/keys';
import { useAppSelector, useOwnAccount } from 'soapbox/hooks';
import { useAppSelector } from 'soapbox/hooks';
import { useInstance } from 'soapbox/hooks/useInstance';
interface NostrContextType {
@ -25,13 +25,11 @@ export const NostrProvider: React.FC<NostrProviderProps> = ({ children }) => {
const [relay, setRelay] = useState<NRelay1>();
const [isRelayOpen, setIsRelayOpen] = useState(false);
const { account } = useOwnAccount();
const url = instance.nostr?.relay;
const accountPubkey = useAppSelector((state) => state.meta.pubkey ?? account?.nostr.pubkey);
const accountPubkey = useAppSelector(({ meta, auth }) => meta.pubkey ?? auth.users.get(auth.me!)?.id);
const signer = useMemo(
() => (accountPubkey ? NKeys.get(accountPubkey) : undefined) ?? window.nostr,
() => accountPubkey ? NKeys.get(accountPubkey) ?? window.nostr : undefined,
[accountPubkey, window.nostr],
);

View File

@ -51,7 +51,9 @@ const Domain: React.FC<IDomain> = ({ domain }) => {
}));
};
const domainState = domain.last_checked_at ? (domain.resolves ? 'active' : 'error') : 'pending';
const resolveState = domain.resolves ? 'active' : 'error';
const domainState = domain.last_checked_at ? resolveState : 'pending';
const domainStateLabel = {
active: <FormattedMessage id='admin.domains.resolve.success_label' defaultMessage='Resolves correctly' />,
error: <FormattedMessage id='admin.domains.resolve.fail_label' defaultMessage='Not resolving' />,

View File

@ -141,13 +141,19 @@ const RegistrationForm: React.FC<IRegistrationForm> = ({ inviteToken }) => {
/></p>}
</>);
const confirmationHeading = needsConfirmation
? intl.formatMessage(messages.needsConfirmationHeader)
: undefined;
const approvalHeading = needsApproval
? intl.formatMessage(messages.needsApprovalHeader)
: undefined;
const heading = confirmationHeading || approvalHeading;
dispatch(openModal('CONFIRM', {
icon: require('@tabler/icons/outline/check.svg'),
heading: needsConfirmation
? intl.formatMessage(messages.needsConfirmationHeader)
: needsApproval
? intl.formatMessage(messages.needsApprovalHeader)
: undefined,
heading: heading,
message,
confirm: intl.formatMessage(messages.close),
}));

View File

@ -88,12 +88,14 @@ const Backups = () => {
</Card>
);
const body = showLoading ? <Spinner /> : backups.isEmpty() ? emptyMessage : (
const backupsContent = backups.isEmpty() ? emptyMessage : (
<div className='mb-4 grid grid-cols-1 gap-4 sm:grid-cols-2'>
{backups.map((backup) => <Backup key={backup.id} backup={backup} />)}
</div>
);
const body = showLoading ? <Spinner /> : backupsContent;
return (
<Column label={intl.formatMessage(messages.heading)}>
{body}

View File

@ -70,7 +70,17 @@ const Filters = () => {
emptyMessage={emptyMessage}
itemClassName='pb-4 last:pb-0'
>
{filters.map((filter) => (
{filters.map((filter) => {
const truthMessageFilter = filter.filter_action === 'hide' ?
<FormattedMessage id='filters.filters_list_hide_completely' defaultMessage='Hide content' /> :
<FormattedMessage id='filters.filters_list_warn' defaultMessage='Display warning' />;
const falseMessageFilter = (filter.filter_action === 'hide' ?
<FormattedMessage id='filters.filters_list_drop' defaultMessage='Drop' /> :
<FormattedMessage id='filters.filters_list_hide' defaultMessage='Hide' />);
return (
<div key={filter.id} className='rounded-lg bg-gray-100 p-4 dark:bg-primary-800'>
<Stack space={2}>
<Stack className='grow' space={1}>
@ -86,13 +96,7 @@ const Filters = () => {
</Text>
<HStack space={4} wrap>
<Text weight='medium'>
{filtersV2 ? (
filter.filter_action === 'hide' ?
<FormattedMessage id='filters.filters_list_hide_completely' defaultMessage='Hide content' /> :
<FormattedMessage id='filters.filters_list_warn' defaultMessage='Display warning' />
) : (filter.filter_action === 'hide' ?
<FormattedMessage id='filters.filters_list_drop' defaultMessage='Drop' /> :
<FormattedMessage id='filters.filters_list_hide' defaultMessage='Hide' />)}
{filtersV2 ? truthMessageFilter : falseMessageFilter}
</Text>
{filter.expires_at && (
<Text weight='medium'>
@ -113,7 +117,9 @@ const Filters = () => {
</HStack>
</Stack>
</div>
))}
);
},
)}
</ScrollableList>
</Column>
);

View File

@ -121,7 +121,7 @@ const AccountModerationModal: React.FC<IAccountModerationModal> = ({ onClose, ac
</OutlineBox>
<List>
{(ownAccount.admin && account.local) && (
{(ownAccount.admin && (account.local || features.nostr)) && (
<ListItem label={<FormattedMessage id='account_moderation_modal.fields.account_role' defaultMessage='Staff level' />}>
<div className='w-auto'>
<StaffRolePicker account={account} />

View File

@ -22,6 +22,8 @@ const CaptchaModal: React.FC<ICaptchaModal> = ({ onClose }) => {
xPosition,
} = useCaptcha();
const messageButton = tryAgain ? <FormattedMessage id='nostr_signup.captcha_try_again_button' defaultMessage='Try again' /> : <FormattedMessage id='nostr_signup.captcha_check_button' defaultMessage='Check' />;
return (
<Modal
title={<FormattedMessage id='nostr_signup.captcha_title' defaultMessage='Human Verification' />} width='sm'
@ -46,10 +48,7 @@ const CaptchaModal: React.FC<ICaptchaModal> = ({ onClose }) => {
>
{isSubmitting ? (
<FormattedMessage id='nostr_signup.captcha_check_button.checking' defaultMessage='Checking…' />
) : (tryAgain ?
<FormattedMessage id='nostr_signup.captcha_try_again_button' defaultMessage='Try again' /> :
<FormattedMessage id='nostr_signup.captcha_check_button' defaultMessage='Check' />
)}
) : messageButton}
</Button>
<Button onClick={loadCaptcha}>
<FormattedMessage id='nostr_signup.captcha_reset_button' defaultMessage='Reset puzzle' />

View File

@ -44,9 +44,11 @@ const SoapboxLoad: React.FC<ISoapboxLoad> = ({ children }) => {
const [localeLoading, setLocaleLoading] = useState(true);
const [isLoaded, setIsLoaded] = useState(false);
const { hasNostr, isRelayOpen } = useNostr();
const { hasNostr, isRelayOpen, signer } = useNostr();
const { isSubscribed } = useSignerStream();
const nostrLoading = Boolean(hasNostr && signer && (!isRelayOpen || !isSubscribed));
/** Whether to display a loading indicator. */
const showLoading = [
me === null,
@ -55,7 +57,7 @@ const SoapboxLoad: React.FC<ISoapboxLoad> = ({ children }) => {
localeLoading,
instance.isLoading,
swUpdating,
hasNostr && me && (!isRelayOpen || !isSubscribed),
nostrLoading,
].some(Boolean);
// Load the user's locale
@ -68,14 +70,14 @@ const SoapboxLoad: React.FC<ISoapboxLoad> = ({ children }) => {
// Load initial data from the API
useEffect(() => {
if (!instance.isLoading) {
if (!instance.isLoading && !nostrLoading) {
dispatch(loadInitial()).then(() => {
setIsLoaded(true);
}).catch(() => {
setIsLoaded(true);
});
}
}, [instance.isLoading]);
}, [instance.isLoading, nostrLoading]);
// intl is part of loading.
// It's important nothing in here depends on intl.

View File

@ -33,12 +33,18 @@ export const AdminAccountRecord = ImmutableRecord({
const normalizePleromaAccount = (account: ImmutableMap<string, any>) => {
if (!account.get('account')) {
const isAdmin = account.getIn(['roles', 'admin']);
const isModerator = account.getIn(['roles', 'moderator']) ? 'moderator' : null;
const accountRole = isAdmin ? 'admin' : isModerator;
return account.withMutations(account => {
account.set('approved', account.get('is_approved'));
account.set('confirmed', account.get('is_confirmed'));
account.set('disabled', !account.get('is_active'));
account.set('invite_request', account.get('registration_reason'));
account.set('role', account.getIn(['roles', 'admin']) ? 'admin' : (account.getIn(['roles', 'moderator']) ? 'moderator' : null));
account.set('role', accountRole);
});
}