Move Group hooks to api folder
This commit is contained in:
parent
bf7d7f93a5
commit
e0af6c4b2e
57 changed files with 57 additions and 61 deletions
|
@ -1,8 +1,8 @@
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntity } from 'soapbox/entity-store/hooks';
|
import { useEntity } from 'soapbox/entity-store/hooks';
|
||||||
|
import { useApi } from 'soapbox/hooks/useApi';
|
||||||
import { type Account, accountSchema } from 'soapbox/schemas';
|
import { type Account, accountSchema } from 'soapbox/schemas';
|
||||||
|
|
||||||
import { useApi } from '../useApi';
|
|
||||||
|
|
||||||
import { useRelationships } from './useRelationships';
|
import { useRelationships } from './useRelationships';
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities } from 'soapbox/entity-store/hooks';
|
import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
|
import { useApi } from 'soapbox/hooks/useApi';
|
||||||
import { type Relationship, relationshipSchema } from 'soapbox/schemas';
|
import { type Relationship, relationshipSchema } from 'soapbox/schemas';
|
||||||
|
|
||||||
import { useApi } from '../useApi';
|
|
||||||
|
|
||||||
function useRelationships(ids: string[]) {
|
function useRelationships(ids: string[]) {
|
||||||
const api = useApi();
|
const api = useApi();
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
import { GroupMember, groupMemberSchema } from 'soapbox/schemas';
|
import { GroupMember, groupMemberSchema } from 'soapbox/schemas';
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
|
|
||||||
import { useApi } from '../useApi';
|
import { useApi } from '../../../hooks/useApi';
|
||||||
|
|
||||||
function useGroupMembers(groupId: string, role: GroupRoles) {
|
function useGroupMembers(groupId: string, role: GroupRoles) {
|
||||||
const api = useApi();
|
const api = useApi();
|
|
@ -1,10 +1,8 @@
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities } from 'soapbox/entity-store/hooks';
|
import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
|
import { useApi, useFeatures } from 'soapbox/hooks';
|
||||||
import { groupSchema } from 'soapbox/schemas';
|
import { groupSchema } from 'soapbox/schemas';
|
||||||
|
|
||||||
import { useApi } from '../../useApi';
|
|
||||||
import { useFeatures } from '../../useFeatures';
|
|
||||||
|
|
||||||
import { useGroupRelationships } from './useGroups';
|
import { useGroupRelationships } from './useGroups';
|
||||||
|
|
||||||
import type { Group } from 'soapbox/schemas';
|
import type { Group } from 'soapbox/schemas';
|
|
@ -5,11 +5,10 @@ import { fetchGroupRelationshipsSuccess } from 'soapbox/actions/groups';
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities, useEntity } from 'soapbox/entity-store/hooks';
|
import { useEntities, useEntity } from 'soapbox/entity-store/hooks';
|
||||||
import { useApi, useAppDispatch } from 'soapbox/hooks';
|
import { useApi, useAppDispatch } from 'soapbox/hooks';
|
||||||
|
import { useFeatures } from 'soapbox/hooks/useFeatures';
|
||||||
import { groupSchema, Group } from 'soapbox/schemas/group';
|
import { groupSchema, Group } from 'soapbox/schemas/group';
|
||||||
import { groupRelationshipSchema, GroupRelationship } from 'soapbox/schemas/group-relationship';
|
import { groupRelationshipSchema, GroupRelationship } from 'soapbox/schemas/group-relationship';
|
||||||
|
|
||||||
import { useFeatures } from '../../useFeatures';
|
|
||||||
|
|
||||||
function useGroups(q: string = '') {
|
function useGroups(q: string = '') {
|
||||||
const api = useApi();
|
const api = useApi();
|
||||||
const features = useFeatures();
|
const features = useFeatures();
|
|
@ -1,10 +1,8 @@
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities } from 'soapbox/entity-store/hooks';
|
import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
|
import { useApi, useFeatures } from 'soapbox/hooks';
|
||||||
import { groupSchema } from 'soapbox/schemas';
|
import { groupSchema } from 'soapbox/schemas';
|
||||||
|
|
||||||
import { useApi } from '../../useApi';
|
|
||||||
import { useFeatures } from '../../useFeatures';
|
|
||||||
|
|
||||||
import { useGroupRelationships } from './useGroups';
|
import { useGroupRelationships } from './useGroups';
|
||||||
|
|
||||||
import type { Group } from 'soapbox/schemas';
|
import type { Group } from 'soapbox/schemas';
|
|
@ -2,9 +2,10 @@ import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities } from 'soapbox/entity-store/hooks';
|
import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
import { Group, groupSchema } from 'soapbox/schemas';
|
import { Group, groupSchema } from 'soapbox/schemas';
|
||||||
|
|
||||||
import { useGroupRelationships } from '../api/groups/useGroups';
|
import { useApi } from '../../../hooks/useApi';
|
||||||
import { useApi } from '../useApi';
|
import { useFeatures } from '../../../hooks/useFeatures';
|
||||||
import { useFeatures } from '../useFeatures';
|
|
||||||
|
import { useGroupRelationships } from './useGroups';
|
||||||
|
|
||||||
function usePopularGroups() {
|
function usePopularGroups() {
|
||||||
const api = useApi();
|
const api = useApi();
|
|
@ -1,9 +1,7 @@
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities } from 'soapbox/entity-store/hooks';
|
import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
import { GroupTag, groupTagSchema } from 'soapbox/schemas';
|
import { useApi, useFeatures } from 'soapbox/hooks';
|
||||||
|
import { type GroupTag, groupTagSchema } from 'soapbox/schemas';
|
||||||
import { useApi } from '../../useApi';
|
|
||||||
import { useFeatures } from '../../useFeatures';
|
|
||||||
|
|
||||||
function usePopularTags() {
|
function usePopularTags() {
|
||||||
const api = useApi();
|
const api = useApi();
|
|
@ -1,10 +1,9 @@
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useEntities } from 'soapbox/entity-store/hooks';
|
import { useEntities } from 'soapbox/entity-store/hooks';
|
||||||
import { Group, groupSchema } from 'soapbox/schemas';
|
import { useApi, useFeatures } from 'soapbox/hooks';
|
||||||
|
import { type Group, groupSchema } from 'soapbox/schemas';
|
||||||
|
|
||||||
import { useGroupRelationships } from '../api/groups/useGroups';
|
import { useGroupRelationships } from './useGroups';
|
||||||
import { useApi } from '../useApi';
|
|
||||||
import { useFeatures } from '../useFeatures';
|
|
||||||
|
|
||||||
function useSuggestedGroups() {
|
function useSuggestedGroups() {
|
||||||
const api = useApi();
|
const api = useApi();
|
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Accounts
|
* Accounts
|
||||||
*/
|
*/
|
||||||
export { useAccount } from './useAccount';
|
export { useAccount } from './accounts/useAccount';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Groups
|
* Groups
|
||||||
|
@ -12,7 +13,9 @@ export { useCreateGroup, type CreateGroupParams } from './groups/useCreateGroup'
|
||||||
export { useDeleteGroup } from './groups/useDeleteGroup';
|
export { useDeleteGroup } from './groups/useDeleteGroup';
|
||||||
export { useDemoteGroupMember } from './groups/useDemoteGroupMember';
|
export { useDemoteGroupMember } from './groups/useDemoteGroupMember';
|
||||||
export { useGroup, useGroups } from './groups/useGroups';
|
export { useGroup, useGroups } from './groups/useGroups';
|
||||||
|
export { useGroupLookup } from './groups/useGroupLookup';
|
||||||
export { useGroupMedia } from './groups/useGroupMedia';
|
export { useGroupMedia } from './groups/useGroupMedia';
|
||||||
|
export { useGroupMembers } from './groups/useGroupMembers';
|
||||||
export { useGroupMembershipRequests } from './groups/useGroupMembershipRequests';
|
export { useGroupMembershipRequests } from './groups/useGroupMembershipRequests';
|
||||||
export { useGroupSearch } from './groups/useGroupSearch';
|
export { useGroupSearch } from './groups/useGroupSearch';
|
||||||
export { useGroupTag } from './groups/useGroupTag';
|
export { useGroupTag } from './groups/useGroupTag';
|
||||||
|
@ -21,12 +24,14 @@ export { useGroupValidation } from './groups/useGroupValidation';
|
||||||
export { useGroupsFromTag } from './groups/useGroupsFromTag';
|
export { useGroupsFromTag } from './groups/useGroupsFromTag';
|
||||||
export { useJoinGroup } from './groups/useJoinGroup';
|
export { useJoinGroup } from './groups/useJoinGroup';
|
||||||
export { useLeaveGroup } from './groups/useLeaveGroup';
|
export { useLeaveGroup } from './groups/useLeaveGroup';
|
||||||
|
export { usePopularGroups } from './groups/usePopularGroups';
|
||||||
export { usePopularTags } from './groups/usePopularTags';
|
export { usePopularTags } from './groups/usePopularTags';
|
||||||
export { usePromoteGroupMember } from './groups/usePromoteGroupMember';
|
export { usePromoteGroupMember } from './groups/usePromoteGroupMember';
|
||||||
|
export { useSuggestedGroups } from './groups/useSuggestedGroups';
|
||||||
export { useUpdateGroup } from './groups/useUpdateGroup';
|
export { useUpdateGroup } from './groups/useUpdateGroup';
|
||||||
export { useUpdateGroupTag } from './groups/useUpdateGroupTag';
|
export { useUpdateGroupTag } from './groups/useUpdateGroupTag';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Relationships
|
* Relationships
|
||||||
*/
|
*/
|
||||||
export { useRelationships } from './useRelationships';
|
export { useRelationships } from './accounts/useRelationships';
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
import { useGroupLookup } from 'soapbox/api/hooks';
|
||||||
import ColumnLoading from 'soapbox/features/ui/components/column-loading';
|
import ColumnLoading from 'soapbox/features/ui/components/column-loading';
|
||||||
import { useGroupLookup } from 'soapbox/hooks/api/groups/useGroupLookup';
|
|
||||||
|
|
||||||
import { Layout } from '../ui';
|
import { Layout } from '../ui';
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,11 @@ import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||||
|
|
||||||
import { fetchGroupRelationshipsSuccess } from 'soapbox/actions/groups';
|
import { fetchGroupRelationshipsSuccess } from 'soapbox/actions/groups';
|
||||||
import { openModal } from 'soapbox/actions/modals';
|
import { openModal } from 'soapbox/actions/modals';
|
||||||
|
import { useCancelMembershipRequest, useJoinGroup, useLeaveGroup } from 'soapbox/api/hooks';
|
||||||
import { Button } from 'soapbox/components/ui';
|
import { Button } from 'soapbox/components/ui';
|
||||||
import { importEntities } from 'soapbox/entity-store/actions';
|
import { importEntities } from 'soapbox/entity-store/actions';
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useAppDispatch, useOwnAccount } from 'soapbox/hooks';
|
import { useAppDispatch, useOwnAccount } from 'soapbox/hooks';
|
||||||
import { useCancelMembershipRequest, useJoinGroup, useLeaveGroup } from 'soapbox/hooks/api';
|
|
||||||
import { queryClient } from 'soapbox/queries/client';
|
import { queryClient } from 'soapbox/queries/client';
|
||||||
import { GroupKeys } from 'soapbox/queries/groups';
|
import { GroupKeys } from 'soapbox/queries/groups';
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
|
|
|
@ -4,6 +4,7 @@ import { defineMessages, useIntl } from 'react-intl';
|
||||||
|
|
||||||
import { groupKick } from 'soapbox/actions/groups';
|
import { groupKick } from 'soapbox/actions/groups';
|
||||||
import { openModal } from 'soapbox/actions/modals';
|
import { openModal } from 'soapbox/actions/modals';
|
||||||
|
import { useAccount, useBlockGroupMember, useDemoteGroupMember, usePromoteGroupMember } from 'soapbox/api/hooks';
|
||||||
import Account from 'soapbox/components/account';
|
import Account from 'soapbox/components/account';
|
||||||
import DropdownMenu from 'soapbox/components/dropdown-menu/dropdown-menu';
|
import DropdownMenu from 'soapbox/components/dropdown-menu/dropdown-menu';
|
||||||
import { HStack } from 'soapbox/components/ui';
|
import { HStack } from 'soapbox/components/ui';
|
||||||
|
@ -11,7 +12,6 @@ import { deleteEntities } from 'soapbox/entity-store/actions';
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import PlaceholderAccount from 'soapbox/features/placeholder/components/placeholder-account';
|
import PlaceholderAccount from 'soapbox/features/placeholder/components/placeholder-account';
|
||||||
import { useAppDispatch, useFeatures } from 'soapbox/hooks';
|
import { useAppDispatch, useFeatures } from 'soapbox/hooks';
|
||||||
import { useAccount, useBlockGroupMember, useDemoteGroupMember, usePromoteGroupMember } from 'soapbox/hooks/api';
|
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,10 @@ import { defineMessages, useIntl } from 'react-intl';
|
||||||
|
|
||||||
import { openModal } from 'soapbox/actions/modals';
|
import { openModal } from 'soapbox/actions/modals';
|
||||||
import { initReport, ReportableEntities } from 'soapbox/actions/reports';
|
import { initReport, ReportableEntities } from 'soapbox/actions/reports';
|
||||||
|
import { useLeaveGroup } from 'soapbox/api/hooks';
|
||||||
import DropdownMenu, { Menu } from 'soapbox/components/dropdown-menu';
|
import DropdownMenu, { Menu } from 'soapbox/components/dropdown-menu';
|
||||||
import { IconButton } from 'soapbox/components/ui';
|
import { IconButton } from 'soapbox/components/ui';
|
||||||
import { useAppDispatch, useOwnAccount } from 'soapbox/hooks';
|
import { useAppDispatch, useOwnAccount } from 'soapbox/hooks';
|
||||||
import { useLeaveGroup } from 'soapbox/hooks/api';
|
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@ import React from 'react';
|
||||||
import { defineMessages, useIntl } from 'react-intl';
|
import { defineMessages, useIntl } from 'react-intl';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { useUpdateGroupTag } from 'soapbox/api/hooks';
|
||||||
import { HStack, IconButton, Stack, Text, Tooltip } from 'soapbox/components/ui';
|
import { HStack, IconButton, Stack, Text, Tooltip } from 'soapbox/components/ui';
|
||||||
import { importEntities } from 'soapbox/entity-store/actions';
|
import { importEntities } from 'soapbox/entity-store/actions';
|
||||||
import { Entities } from 'soapbox/entity-store/entities';
|
import { Entities } from 'soapbox/entity-store/entities';
|
||||||
import { useAppDispatch } from 'soapbox/hooks';
|
import { useAppDispatch } from 'soapbox/hooks';
|
||||||
import { useUpdateGroupTag } from 'soapbox/hooks/api';
|
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
import { shortNumberFormat } from 'soapbox/utils/numbers';
|
import { shortNumberFormat } from 'soapbox/utils/numbers';
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||||
|
|
||||||
|
import { useGroup, useUpdateGroup } from 'soapbox/api/hooks';
|
||||||
import { Button, Column, Form, FormActions, FormGroup, Icon, Input, Spinner, Textarea } from 'soapbox/components/ui';
|
import { Button, Column, Form, FormActions, FormGroup, Icon, Input, Spinner, Textarea } from 'soapbox/components/ui';
|
||||||
import { useAppSelector, useInstance } from 'soapbox/hooks';
|
import { useAppSelector, useInstance } from 'soapbox/hooks';
|
||||||
import { useGroup, useUpdateGroup } from 'soapbox/hooks/api';
|
|
||||||
import { useImageField, useTextField } from 'soapbox/hooks/forms';
|
import { useImageField, useTextField } from 'soapbox/hooks/forms';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
import { isDefaultAvatar, isDefaultHeader } from 'soapbox/utils/accounts';
|
import { isDefaultAvatar, isDefaultHeader } from 'soapbox/utils/accounts';
|
||||||
|
|
|
@ -2,11 +2,11 @@ import React, { useCallback, useEffect } from 'react';
|
||||||
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
||||||
|
|
||||||
import { fetchGroupBlocks, groupUnblock } from 'soapbox/actions/groups';
|
import { fetchGroupBlocks, groupUnblock } from 'soapbox/actions/groups';
|
||||||
|
import { useGroup } from 'soapbox/api/hooks';
|
||||||
import Account from 'soapbox/components/account';
|
import Account from 'soapbox/components/account';
|
||||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||||
import { Button, Column, HStack, Spinner } from 'soapbox/components/ui';
|
import { Button, Column, HStack, Spinner } from 'soapbox/components/ui';
|
||||||
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
||||||
import { useGroup } from 'soapbox/hooks/api';
|
|
||||||
import { makeGetAccount } from 'soapbox/selectors';
|
import { makeGetAccount } from 'soapbox/selectors';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@ import React from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
import { openModal } from 'soapbox/actions/modals';
|
import { openModal } from 'soapbox/actions/modals';
|
||||||
|
import { useGroup, useGroupMedia } from 'soapbox/api/hooks';
|
||||||
import LoadMore from 'soapbox/components/load-more';
|
import LoadMore from 'soapbox/components/load-more';
|
||||||
import MissingIndicator from 'soapbox/components/missing-indicator';
|
import MissingIndicator from 'soapbox/components/missing-indicator';
|
||||||
import { Column, Spinner } from 'soapbox/components/ui';
|
import { Column, Spinner } from 'soapbox/components/ui';
|
||||||
import { useAppDispatch } from 'soapbox/hooks';
|
import { useAppDispatch } from 'soapbox/hooks';
|
||||||
import { useGroup, useGroupMedia } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import MediaItem from '../account-gallery/components/media-item';
|
import MediaItem from '../account-gallery/components/media-item';
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import React, { useMemo } from 'react';
|
import React, { useMemo } from 'react';
|
||||||
|
|
||||||
|
import { useGroup, useGroupMembers, useGroupMembershipRequests } from 'soapbox/api/hooks';
|
||||||
import { PendingItemsRow } from 'soapbox/components/pending-items-row';
|
import { PendingItemsRow } from 'soapbox/components/pending-items-row';
|
||||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||||
import { useFeatures } from 'soapbox/hooks';
|
import { useFeatures } from 'soapbox/hooks';
|
||||||
import { useGroup } from 'soapbox/hooks/api';
|
|
||||||
import { useGroupMembershipRequests } from 'soapbox/hooks/api/groups/useGroupMembershipRequests';
|
|
||||||
import { useGroupMembers } from 'soapbox/hooks/api/useGroupMembers';
|
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
|
|
||||||
import PlaceholderAccount from '../placeholder/components/placeholder-account';
|
import PlaceholderAccount from '../placeholder/components/placeholder-account';
|
||||||
|
@ -15,6 +13,7 @@ import GroupMemberListItem from './components/group-member-list-item';
|
||||||
|
|
||||||
import type { Group } from 'soapbox/types/entities';
|
import type { Group } from 'soapbox/types/entities';
|
||||||
|
|
||||||
|
|
||||||
interface IGroupMembers {
|
interface IGroupMembers {
|
||||||
params: { groupId: string }
|
params: { groupId: string }
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
import React, { useEffect } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
||||||
|
|
||||||
|
import { useGroup, useGroupMembers, useGroupMembershipRequests } from 'soapbox/api/hooks';
|
||||||
import Account from 'soapbox/components/account';
|
import Account from 'soapbox/components/account';
|
||||||
import { AuthorizeRejectButtons } from 'soapbox/components/authorize-reject-buttons';
|
import { AuthorizeRejectButtons } from 'soapbox/components/authorize-reject-buttons';
|
||||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||||
import { Column, HStack, Spinner } from 'soapbox/components/ui';
|
import { Column, HStack, Spinner } from 'soapbox/components/ui';
|
||||||
import { useGroup, useGroupMembershipRequests } from 'soapbox/hooks/api';
|
|
||||||
import { useGroupMembers } from 'soapbox/hooks/api/useGroupMembers';
|
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ import React, { useEffect } from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
import { expandGroupTimelineFromTag } from 'soapbox/actions/timelines';
|
import { expandGroupTimelineFromTag } from 'soapbox/actions/timelines';
|
||||||
|
import { useGroup, useGroupTag } from 'soapbox/api/hooks';
|
||||||
import { Column, Icon, Stack, Text } from 'soapbox/components/ui';
|
import { Column, Icon, Stack, Text } from 'soapbox/components/ui';
|
||||||
import { useAppDispatch } from 'soapbox/hooks';
|
import { useAppDispatch } from 'soapbox/hooks';
|
||||||
import { useGroup, useGroupTag } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import Timeline from '../ui/components/timeline';
|
import Timeline from '../ui/components/timeline';
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { useGroupTags } from 'soapbox/api/hooks';
|
||||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||||
import { Icon, Stack, Text } from 'soapbox/components/ui';
|
import { Icon, Stack, Text } from 'soapbox/components/ui';
|
||||||
import { useGroupTags } from 'soapbox/hooks/api';
|
|
||||||
import { useGroup } from 'soapbox/queries/groups';
|
import { useGroup } from 'soapbox/queries/groups';
|
||||||
|
|
||||||
import PlaceholderAccount from '../placeholder/components/placeholder-account';
|
import PlaceholderAccount from '../placeholder/components/placeholder-account';
|
||||||
|
|
|
@ -6,10 +6,10 @@ import { Link } from 'react-router-dom';
|
||||||
import { groupCompose, setGroupTimelineVisible, uploadCompose } from 'soapbox/actions/compose';
|
import { groupCompose, setGroupTimelineVisible, uploadCompose } from 'soapbox/actions/compose';
|
||||||
import { connectGroupStream } from 'soapbox/actions/streaming';
|
import { connectGroupStream } from 'soapbox/actions/streaming';
|
||||||
import { expandGroupTimeline } from 'soapbox/actions/timelines';
|
import { expandGroupTimeline } from 'soapbox/actions/timelines';
|
||||||
|
import { useGroup } from 'soapbox/api/hooks';
|
||||||
import { Avatar, HStack, Icon, Stack, Text, Toggle } from 'soapbox/components/ui';
|
import { Avatar, HStack, Icon, Stack, Text, Toggle } from 'soapbox/components/ui';
|
||||||
import ComposeForm from 'soapbox/features/compose/components/compose-form';
|
import ComposeForm from 'soapbox/features/compose/components/compose-form';
|
||||||
import { useAppDispatch, useAppSelector, useDraggedFiles, useOwnAccount } from 'soapbox/hooks';
|
import { useAppDispatch, useAppSelector, useDraggedFiles, useOwnAccount } from 'soapbox/hooks';
|
||||||
import { useGroup } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import Timeline from '../ui/components/timeline';
|
import Timeline from '../ui/components/timeline';
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,10 @@ import { defineMessages, useIntl } from 'react-intl';
|
||||||
import { useHistory } from 'react-router-dom';
|
import { useHistory } from 'react-router-dom';
|
||||||
|
|
||||||
import { openModal } from 'soapbox/actions/modals';
|
import { openModal } from 'soapbox/actions/modals';
|
||||||
|
import { useDeleteGroup, useGroup } from 'soapbox/api/hooks';
|
||||||
import List, { ListItem } from 'soapbox/components/list';
|
import List, { ListItem } from 'soapbox/components/list';
|
||||||
import { CardBody, CardHeader, CardTitle, Column, Spinner, Text } from 'soapbox/components/ui';
|
import { CardBody, CardHeader, CardTitle, Column, Spinner, Text } from 'soapbox/components/ui';
|
||||||
import { useAppDispatch, useBackend, useGroupsPath } from 'soapbox/hooks';
|
import { useAppDispatch, useBackend, useGroupsPath } from 'soapbox/hooks';
|
||||||
import { useDeleteGroup, useGroup } from 'soapbox/hooks/api';
|
|
||||||
import { GroupRoles } from 'soapbox/schemas/group-member';
|
import { GroupRoles } from 'soapbox/schemas/group-member';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
import { TRUTHSOCIAL } from 'soapbox/utils/features';
|
import { TRUTHSOCIAL } from 'soapbox/utils/features';
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { usePopularGroups } from 'soapbox/api/hooks';
|
||||||
import Link from 'soapbox/components/link';
|
import Link from 'soapbox/components/link';
|
||||||
import { Carousel, HStack, Stack, Text } from 'soapbox/components/ui';
|
import { Carousel, HStack, Stack, Text } from 'soapbox/components/ui';
|
||||||
import PlaceholderGroupDiscover from 'soapbox/features/placeholder/components/placeholder-group-discover';
|
import PlaceholderGroupDiscover from 'soapbox/features/placeholder/components/placeholder-group-discover';
|
||||||
import { usePopularGroups } from 'soapbox/hooks/api/usePopularGroups';
|
|
||||||
|
|
||||||
import GroupGridItem from './group-grid-item';
|
import GroupGridItem from './group-grid-item';
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { usePopularTags } from 'soapbox/api/hooks';
|
||||||
import Link from 'soapbox/components/link';
|
import Link from 'soapbox/components/link';
|
||||||
import { HStack, Stack, Text } from 'soapbox/components/ui';
|
import { HStack, Stack, Text } from 'soapbox/components/ui';
|
||||||
import { usePopularTags } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import TagListItem from './tag-list-item';
|
import TagListItem from './tag-list-item';
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@ import React, { useCallback, useState } from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
||||||
|
|
||||||
|
import { useGroupSearch } from 'soapbox/api/hooks';
|
||||||
import { HStack, Stack, Text } from 'soapbox/components/ui';
|
import { HStack, Stack, Text } from 'soapbox/components/ui';
|
||||||
import { useGroupSearch } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import GroupGridItem from '../group-grid-item';
|
import GroupGridItem from '../group-grid-item';
|
||||||
import GroupListItem from '../group-list-item';
|
import GroupListItem from '../group-list-item';
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import React, { useEffect } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { useGroupSearch } from 'soapbox/api/hooks';
|
||||||
import { Stack } from 'soapbox/components/ui';
|
import { Stack } from 'soapbox/components/ui';
|
||||||
import PlaceholderGroupSearch from 'soapbox/features/placeholder/components/placeholder-group-search';
|
import PlaceholderGroupSearch from 'soapbox/features/placeholder/components/placeholder-group-search';
|
||||||
import { useDebounce, useOwnAccount } from 'soapbox/hooks';
|
import { useDebounce, useOwnAccount } from 'soapbox/hooks';
|
||||||
import { useGroupSearch } from 'soapbox/hooks/api';
|
|
||||||
import { saveGroupSearch } from 'soapbox/utils/groups';
|
import { saveGroupSearch } from 'soapbox/utils/groups';
|
||||||
|
|
||||||
import Blankslate from './blankslate';
|
import Blankslate from './blankslate';
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { useSuggestedGroups } from 'soapbox/api/hooks';
|
||||||
import Link from 'soapbox/components/link';
|
import Link from 'soapbox/components/link';
|
||||||
import { Carousel, HStack, Stack, Text } from 'soapbox/components/ui';
|
import { Carousel, HStack, Stack, Text } from 'soapbox/components/ui';
|
||||||
import PlaceholderGroupDiscover from 'soapbox/features/placeholder/components/placeholder-group-discover';
|
import PlaceholderGroupDiscover from 'soapbox/features/placeholder/components/placeholder-group-discover';
|
||||||
import { useSuggestedGroups } from 'soapbox/hooks/api/useSuggestedGroups';
|
|
||||||
|
|
||||||
import GroupGridItem from './group-grid-item';
|
import GroupGridItem from './group-grid-item';
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,11 @@ import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
import { openModal } from 'soapbox/actions/modals';
|
import { openModal } from 'soapbox/actions/modals';
|
||||||
|
import { useGroups } from 'soapbox/api/hooks';
|
||||||
import GroupCard from 'soapbox/components/group-card';
|
import GroupCard from 'soapbox/components/group-card';
|
||||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||||
import { Button, Input, Stack, Text } from 'soapbox/components/ui';
|
import { Button, Input, Stack, Text } from 'soapbox/components/ui';
|
||||||
import { useAppDispatch, useAppSelector, useDebounce, useFeatures } from 'soapbox/hooks';
|
import { useAppDispatch, useAppSelector, useDebounce, useFeatures } from 'soapbox/hooks';
|
||||||
import { useGroups } from 'soapbox/hooks/api';
|
|
||||||
import { PERMISSION_CREATE_GROUPS, hasPermission } from 'soapbox/utils/permissions';
|
import { PERMISSION_CREATE_GROUPS, hasPermission } from 'soapbox/utils/permissions';
|
||||||
|
|
||||||
import PlaceholderGroupCard from '../placeholder/components/placeholder-group-card';
|
import PlaceholderGroupCard from '../placeholder/components/placeholder-group-card';
|
||||||
|
|
|
@ -3,8 +3,8 @@ import React, { useCallback, useState } from 'react';
|
||||||
import { defineMessages, useIntl } from 'react-intl';
|
import { defineMessages, useIntl } from 'react-intl';
|
||||||
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
||||||
|
|
||||||
|
import { usePopularGroups } from 'soapbox/api/hooks';
|
||||||
import { Column } from 'soapbox/components/ui';
|
import { Column } from 'soapbox/components/ui';
|
||||||
import { usePopularGroups } from 'soapbox/hooks/api/usePopularGroups';
|
|
||||||
|
|
||||||
import GroupGridItem from './components/discover/group-grid-item';
|
import GroupGridItem from './components/discover/group-grid-item';
|
||||||
import GroupListItem from './components/discover/group-list-item';
|
import GroupListItem from './components/discover/group-list-item';
|
||||||
|
|
|
@ -3,8 +3,8 @@ import React, { useCallback, useState } from 'react';
|
||||||
import { defineMessages, useIntl } from 'react-intl';
|
import { defineMessages, useIntl } from 'react-intl';
|
||||||
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
||||||
|
|
||||||
|
import { useSuggestedGroups } from 'soapbox/api/hooks';
|
||||||
import { Column } from 'soapbox/components/ui';
|
import { Column } from 'soapbox/components/ui';
|
||||||
import { useSuggestedGroups } from 'soapbox/hooks/api/useSuggestedGroups';
|
|
||||||
|
|
||||||
import GroupGridItem from './components/discover/group-grid-item';
|
import GroupGridItem from './components/discover/group-grid-item';
|
||||||
import GroupListItem from './components/discover/group-list-item';
|
import GroupListItem from './components/discover/group-list-item';
|
||||||
|
|
|
@ -2,8 +2,8 @@ import clsx from 'clsx';
|
||||||
import React, { useCallback, useState } from 'react';
|
import React, { useCallback, useState } from 'react';
|
||||||
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
import { Components, Virtuoso, VirtuosoGrid } from 'react-virtuoso';
|
||||||
|
|
||||||
|
import { useGroupTag, useGroupsFromTag } from 'soapbox/api/hooks';
|
||||||
import { Column, HStack, Icon } from 'soapbox/components/ui';
|
import { Column, HStack, Icon } from 'soapbox/components/ui';
|
||||||
import { useGroupTag, useGroupsFromTag } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import GroupGridItem from './components/discover/group-grid-item';
|
import GroupGridItem from './components/discover/group-grid-item';
|
||||||
import GroupListItem from './components/discover/group-list-item';
|
import GroupListItem from './components/discover/group-list-item';
|
||||||
|
|
|
@ -3,8 +3,8 @@ import React from 'react';
|
||||||
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
||||||
import { Virtuoso } from 'react-virtuoso';
|
import { Virtuoso } from 'react-virtuoso';
|
||||||
|
|
||||||
|
import { usePopularTags } from 'soapbox/api/hooks';
|
||||||
import { Column, Text } from 'soapbox/components/ui';
|
import { Column, Text } from 'soapbox/components/ui';
|
||||||
import { usePopularTags } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
import TagListItem from './components/discover/tag-list-item';
|
import TagListItem from './components/discover/tag-list-item';
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ import { AxiosError } from 'axios';
|
||||||
import React, { useMemo, useState } from 'react';
|
import React, { useMemo, useState } from 'react';
|
||||||
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||||
|
|
||||||
|
import { useCreateGroup, useGroupValidation, type CreateGroupParams } from 'soapbox/api/hooks';
|
||||||
import { Modal, Stack } from 'soapbox/components/ui';
|
import { Modal, Stack } from 'soapbox/components/ui';
|
||||||
import { useDebounce } from 'soapbox/hooks';
|
import { useDebounce } from 'soapbox/hooks';
|
||||||
import { useCreateGroup, useGroupValidation, type CreateGroupParams } from 'soapbox/hooks/api';
|
|
||||||
import { type Group } from 'soapbox/schemas';
|
import { type Group } from 'soapbox/schemas';
|
||||||
import toast from 'soapbox/toast';
|
import toast from 'soapbox/toast';
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||||
|
|
||||||
|
import { CreateGroupParams, useGroupValidation } from 'soapbox/api/hooks';
|
||||||
import { Form, FormGroup, Input, Textarea } from 'soapbox/components/ui';
|
import { Form, FormGroup, Input, Textarea } from 'soapbox/components/ui';
|
||||||
import AvatarPicker from 'soapbox/features/group/components/group-avatar-picker';
|
import AvatarPicker from 'soapbox/features/group/components/group-avatar-picker';
|
||||||
import HeaderPicker from 'soapbox/features/group/components/group-header-picker';
|
import HeaderPicker from 'soapbox/features/group/components/group-header-picker';
|
||||||
import GroupTagsField from 'soapbox/features/group/components/group-tags-field';
|
import GroupTagsField from 'soapbox/features/group/components/group-tags-field';
|
||||||
import { useAppSelector, useDebounce, useInstance } from 'soapbox/hooks';
|
import { useAppSelector, useDebounce, useInstance } from 'soapbox/hooks';
|
||||||
import { CreateGroupParams, useGroupValidation } from 'soapbox/hooks/api';
|
|
||||||
import { usePreview } from 'soapbox/hooks/forms';
|
import { usePreview } from 'soapbox/hooks/forms';
|
||||||
import resizeImage from 'soapbox/utils/resize-image';
|
import resizeImage from 'soapbox/utils/resize-image';
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { type CreateGroupParams } from 'soapbox/api/hooks';
|
||||||
import List, { ListItem } from 'soapbox/components/list';
|
import List, { ListItem } from 'soapbox/components/list';
|
||||||
import { Form, FormGroup, Stack, Text } from 'soapbox/components/ui';
|
import { Form, FormGroup, Stack, Text } from 'soapbox/components/ui';
|
||||||
import { type CreateGroupParams } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
interface IPrivacyStep {
|
interface IPrivacyStep {
|
||||||
params: CreateGroupParams
|
params: CreateGroupParams
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
import { useGroups } from 'soapbox/api/hooks';
|
||||||
import { Widget } from 'soapbox/components/ui';
|
import { Widget } from 'soapbox/components/ui';
|
||||||
import GroupListItem from 'soapbox/features/groups/components/discover/group-list-item';
|
import GroupListItem from 'soapbox/features/groups/components/discover/group-list-item';
|
||||||
import PlaceholderGroupSearch from 'soapbox/features/placeholder/components/placeholder-group-search';
|
import PlaceholderGroupSearch from 'soapbox/features/placeholder/components/placeholder-group-search';
|
||||||
import { useGroups } from 'soapbox/hooks/api';
|
|
||||||
|
|
||||||
const MyGroupsPanel = () => {
|
const MyGroupsPanel = () => {
|
||||||
const { groups, isFetching, isFetched, isError } = useGroups();
|
const { groups, isFetching, isFetched, isError } = useGroups();
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
import { useSuggestedGroups } from 'soapbox/api/hooks';
|
||||||
import { Widget } from 'soapbox/components/ui';
|
import { Widget } from 'soapbox/components/ui';
|
||||||
import GroupListItem from 'soapbox/features/groups/components/discover/group-list-item';
|
import GroupListItem from 'soapbox/features/groups/components/discover/group-list-item';
|
||||||
import PlaceholderGroupSearch from 'soapbox/features/placeholder/components/placeholder-group-search';
|
import PlaceholderGroupSearch from 'soapbox/features/placeholder/components/placeholder-group-search';
|
||||||
import { useSuggestedGroups } from 'soapbox/hooks/api/useSuggestedGroups';
|
|
||||||
|
|
||||||
const SuggestedGroupsPanel = () => {
|
const SuggestedGroupsPanel = () => {
|
||||||
const { groups, isFetching, isFetched, isError } = useSuggestedGroups();
|
const { groups, isFetching, isFetched, isError } = useSuggestedGroups();
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { useGroups } from './api';
|
import { useGroups } from 'soapbox/api/hooks';
|
||||||
|
|
||||||
import { useFeatures } from './useFeatures';
|
import { useFeatures } from './useFeatures';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2,6 +2,7 @@ import React, { useMemo } from 'react';
|
||||||
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
||||||
import { useRouteMatch } from 'react-router-dom';
|
import { useRouteMatch } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { useGroup, useGroupMembershipRequests } from 'soapbox/api/hooks';
|
||||||
import GroupLookupHoc from 'soapbox/components/hoc/group-lookup-hoc';
|
import GroupLookupHoc from 'soapbox/components/hoc/group-lookup-hoc';
|
||||||
import { Column, Icon, Layout, Stack, Text } from 'soapbox/components/ui';
|
import { Column, Icon, Layout, Stack, Text } from 'soapbox/components/ui';
|
||||||
import GroupHeader from 'soapbox/features/group/components/group-header';
|
import GroupHeader from 'soapbox/features/group/components/group-header';
|
||||||
|
@ -14,12 +15,11 @@ import {
|
||||||
SuggestedGroupsPanel,
|
SuggestedGroupsPanel,
|
||||||
} from 'soapbox/features/ui/util/async-components';
|
} from 'soapbox/features/ui/util/async-components';
|
||||||
import { useFeatures, useOwnAccount } from 'soapbox/hooks';
|
import { useFeatures, useOwnAccount } from 'soapbox/hooks';
|
||||||
import { useGroup } from 'soapbox/hooks/api';
|
|
||||||
import { useGroupMembershipRequests } from 'soapbox/hooks/api/groups/useGroupMembershipRequests';
|
|
||||||
import { Group } from 'soapbox/schemas';
|
|
||||||
|
|
||||||
import { Tabs } from '../components/ui';
|
import { Tabs } from '../components/ui';
|
||||||
|
|
||||||
|
import type { Group } from 'soapbox/schemas';
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
all: { id: 'group.tabs.all', defaultMessage: 'All' },
|
all: { id: 'group.tabs.all', defaultMessage: 'All' },
|
||||||
members: { id: 'group.tabs.members', defaultMessage: 'Members' },
|
members: { id: 'group.tabs.members', defaultMessage: 'Members' },
|
||||||
|
|
Loading…
Reference in a new issue