2020-09-04 05:59:35 -07:00
|
|
|
import React from "react";
|
2020-12-25 09:09:16 -08:00
|
|
|
import { css } from "@emotion/css";
|
2020-11-18 06:45:33 -08:00
|
|
|
import {
|
|
|
|
Badge,
|
|
|
|
Box,
|
|
|
|
Center,
|
|
|
|
Flex,
|
|
|
|
IconButton,
|
|
|
|
Input,
|
|
|
|
InputGroup,
|
|
|
|
InputLeftElement,
|
|
|
|
InputRightElement,
|
2020-11-18 07:42:40 -08:00
|
|
|
Menu,
|
|
|
|
MenuButton,
|
|
|
|
MenuItem,
|
|
|
|
MenuList,
|
|
|
|
Portal,
|
2020-11-18 06:45:33 -08:00
|
|
|
Wrap,
|
|
|
|
VStack,
|
2020-12-07 18:58:10 -08:00
|
|
|
useBreakpointValue,
|
2020-11-18 06:45:33 -08:00
|
|
|
useToast,
|
2020-12-25 09:08:33 -08:00
|
|
|
} from "@chakra-ui/react";
|
2020-11-18 06:45:33 -08:00
|
|
|
import {
|
|
|
|
ArrowForwardIcon,
|
|
|
|
CheckIcon,
|
2020-11-18 07:42:40 -08:00
|
|
|
EditIcon,
|
2020-11-18 06:45:33 -08:00
|
|
|
EmailIcon,
|
|
|
|
SearchIcon,
|
|
|
|
StarIcon,
|
|
|
|
} from "@chakra-ui/icons";
|
2020-09-04 05:59:35 -07:00
|
|
|
import gql from "graphql-tag";
|
2020-11-18 06:45:33 -08:00
|
|
|
import { useHistory, useParams } from "react-router-dom";
|
2020-11-18 07:42:40 -08:00
|
|
|
import { useQuery, useLazyQuery, useMutation } from "@apollo/client";
|
2020-12-07 18:58:10 -08:00
|
|
|
import { AutoSizer, Grid, WindowScroller } from "react-virtualized";
|
2020-10-28 00:00:14 -07:00
|
|
|
import SimpleMarkdown from "simple-markdown";
|
|
|
|
import DOMPurify from "dompurify";
|
2020-09-04 05:59:35 -07:00
|
|
|
|
|
|
|
import HangerSpinner from "./components/HangerSpinner";
|
2020-10-27 23:09:42 -07:00
|
|
|
import { Heading1, Heading2, Heading3 } from "./util";
|
2020-09-11 20:41:39 -07:00
|
|
|
import ItemCard, {
|
|
|
|
ItemBadgeList,
|
2020-11-08 15:13:30 -08:00
|
|
|
ItemKindBadge,
|
2020-09-11 21:45:38 -07:00
|
|
|
YouOwnThisBadge,
|
|
|
|
YouWantThisBadge,
|
2020-11-03 20:11:37 -08:00
|
|
|
getZoneBadges,
|
2020-09-11 20:41:39 -07:00
|
|
|
} from "./components/ItemCard";
|
2020-11-18 07:42:40 -08:00
|
|
|
import SupportOnly from "./WardrobePage/support/SupportOnly";
|
|
|
|
import useSupport from "./WardrobePage/support/useSupport";
|
2020-09-04 05:59:35 -07:00
|
|
|
import useCurrentUser from "./components/useCurrentUser";
|
2020-10-10 02:07:49 -07:00
|
|
|
import WIPCallout from "./components/WIPCallout";
|
2020-09-04 05:59:35 -07:00
|
|
|
|
2020-11-18 07:42:40 -08:00
|
|
|
const BadgeButton = React.forwardRef((props, ref) => (
|
|
|
|
<Badge as="button" ref={ref} {...props} />
|
|
|
|
));
|
|
|
|
|
2020-09-11 23:20:06 -07:00
|
|
|
function UserItemsPage() {
|
2020-09-04 05:59:35 -07:00
|
|
|
const { userId } = useParams();
|
|
|
|
const currentUser = useCurrentUser();
|
|
|
|
const isCurrentUser = currentUser.id === userId;
|
|
|
|
|
|
|
|
const { loading, error, data } = useQuery(
|
|
|
|
gql`
|
2020-11-24 20:54:10 -08:00
|
|
|
query UserItemsPage($userId: ID!) {
|
2020-09-04 05:59:35 -07:00
|
|
|
user(id: $userId) {
|
|
|
|
id
|
|
|
|
username
|
2020-10-23 23:00:53 -07:00
|
|
|
contactNeopetsUsername
|
2020-09-11 21:34:28 -07:00
|
|
|
|
2020-10-27 23:09:42 -07:00
|
|
|
closetLists {
|
2020-09-04 05:59:35 -07:00
|
|
|
id
|
|
|
|
name
|
2020-10-28 00:00:14 -07:00
|
|
|
description
|
2020-10-27 23:09:42 -07:00
|
|
|
ownsOrWantsItems
|
|
|
|
isDefaultList
|
|
|
|
items {
|
2020-10-23 23:29:50 -07:00
|
|
|
id
|
2020-10-27 23:09:42 -07:00
|
|
|
isNc
|
2020-11-08 15:13:30 -08:00
|
|
|
isPb
|
2020-10-27 23:09:42 -07:00
|
|
|
name
|
|
|
|
thumbnailUrl
|
|
|
|
currentUserOwnsThis
|
|
|
|
currentUserWantsThis
|
|
|
|
allOccupiedZones {
|
|
|
|
id
|
|
|
|
label @client
|
|
|
|
}
|
2020-10-23 23:29:50 -07:00
|
|
|
}
|
2020-09-11 21:34:28 -07:00
|
|
|
}
|
2020-09-04 05:59:35 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
{ variables: { userId } }
|
|
|
|
);
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
return (
|
2020-09-11 23:27:23 -07:00
|
|
|
<Center>
|
2020-09-10 03:06:44 -07:00
|
|
|
<HangerSpinner />
|
2020-09-11 23:27:23 -07:00
|
|
|
</Center>
|
2020-09-04 05:59:35 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error) {
|
2020-09-06 18:12:34 -07:00
|
|
|
return <Box color="red.400">{error.message}</Box>;
|
2020-09-04 05:59:35 -07:00
|
|
|
}
|
|
|
|
|
2020-10-27 23:09:42 -07:00
|
|
|
if (data.user == null) {
|
|
|
|
return <Box color="red.400">User not found</Box>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const listsOfOwnedItems = data.user.closetLists.filter(
|
|
|
|
(l) => l.ownsOrWantsItems === "OWNS"
|
|
|
|
);
|
|
|
|
const listsOfWantedItems = data.user.closetLists.filter(
|
|
|
|
(l) => l.ownsOrWantsItems === "WANTS"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Sort default list to the end, then sort alphabetically. We use a similar
|
|
|
|
// sort hack that we use for sorting items in ClosetList!
|
|
|
|
listsOfOwnedItems.sort((a, b) => {
|
|
|
|
const aName = `${a.isDefaultList ? "ZZZ" : "AAA"} ${a.name}`;
|
|
|
|
const bName = `${b.isDefaultList ? "ZZZ" : "AAA"} ${b.name}`;
|
2020-09-11 22:04:37 -07:00
|
|
|
return aName.localeCompare(bName);
|
|
|
|
});
|
2020-10-27 23:09:42 -07:00
|
|
|
listsOfWantedItems.sort((a, b) => {
|
|
|
|
const aName = `${a.isDefaultList ? "ZZZ" : "AAA"} ${a.name}`;
|
|
|
|
const bName = `${b.isDefaultList ? "ZZZ" : "AAA"} ${b.name}`;
|
2020-09-11 22:04:37 -07:00
|
|
|
return aName.localeCompare(bName);
|
|
|
|
});
|
|
|
|
|
2020-10-27 23:09:42 -07:00
|
|
|
const allItemsTheyOwn = listsOfOwnedItems.map((l) => l.items).flat();
|
|
|
|
const allItemsTheyWant = listsOfWantedItems.map((l) => l.items).flat();
|
|
|
|
|
|
|
|
const itemsTheyOwnThatYouWant = allItemsTheyOwn.filter(
|
|
|
|
(i) => i.currentUserWantsThis
|
|
|
|
);
|
|
|
|
const itemsTheyWantThatYouOwn = allItemsTheyWant.filter(
|
|
|
|
(i) => i.currentUserOwnsThis
|
|
|
|
);
|
|
|
|
|
|
|
|
// It's important to de-duplicate these! Otherwise, if the same item appears
|
|
|
|
// in multiple lists, we'll double-count it.
|
|
|
|
const numItemsTheyOwnThatYouWant = new Set(
|
|
|
|
itemsTheyOwnThatYouWant.map((i) => i.id)
|
|
|
|
).size;
|
|
|
|
const numItemsTheyWantThatYouOwn = new Set(
|
|
|
|
itemsTheyWantThatYouOwn.map((i) => i.id)
|
|
|
|
).size;
|
|
|
|
|
2020-09-04 05:59:35 -07:00
|
|
|
return (
|
2020-09-06 18:45:20 -07:00
|
|
|
<Box>
|
2020-11-18 06:45:33 -08:00
|
|
|
<Flex align="center" wrap="wrap-reverse">
|
|
|
|
<Box>
|
|
|
|
<Heading1>
|
|
|
|
{isCurrentUser ? "Your items" : `${data.user.username}'s items`}
|
|
|
|
</Heading1>
|
|
|
|
<Wrap spacing="2" opacity="0.7">
|
|
|
|
{data.user.contactNeopetsUsername && (
|
|
|
|
<Badge
|
|
|
|
as="a"
|
|
|
|
href={`http://www.neopets.com/userlookup.phtml?user=${data.user.contactNeopetsUsername}`}
|
|
|
|
display="flex"
|
|
|
|
alignItems="center"
|
|
|
|
>
|
|
|
|
<NeopetsStarIcon marginRight="1" />
|
|
|
|
{data.user.contactNeopetsUsername}
|
|
|
|
</Badge>
|
|
|
|
)}
|
|
|
|
{data.user.contactNeopetsUsername && (
|
|
|
|
<Badge
|
|
|
|
as="a"
|
|
|
|
href={`http://www.neopets.com/neomessages.phtml?type=send&recipient=${data.user.contactNeopetsUsername}`}
|
|
|
|
display="flex"
|
|
|
|
alignItems="center"
|
|
|
|
>
|
|
|
|
<EmailIcon marginRight="1" />
|
|
|
|
Neomail
|
|
|
|
</Badge>
|
|
|
|
)}
|
2020-11-18 07:42:40 -08:00
|
|
|
<SupportOnly>
|
|
|
|
<UserSupportMenu user={data.user}>
|
|
|
|
<MenuButton as={BadgeButton} display="flex" alignItems="center">
|
|
|
|
<EditIcon marginRight="1" />
|
|
|
|
Support
|
|
|
|
</MenuButton>
|
|
|
|
</UserSupportMenu>
|
|
|
|
</SupportOnly>
|
2020-11-18 06:45:33 -08:00
|
|
|
{/* Usually I put "Own" before "Want", but this matches the natural
|
|
|
|
* order on the page: the _matches_ for things you want are things
|
|
|
|
* _this user_ owns, so they come first. I think it's also probably a
|
|
|
|
* more natural train of thought: you come to someone's list _wanting_
|
|
|
|
* something, and _then_ thinking about what you can offer. */}
|
|
|
|
{!isCurrentUser && numItemsTheyOwnThatYouWant > 0 && (
|
|
|
|
<Badge
|
|
|
|
as="a"
|
|
|
|
href="#owned-items"
|
|
|
|
colorScheme="blue"
|
|
|
|
display="flex"
|
|
|
|
alignItems="center"
|
|
|
|
>
|
|
|
|
<StarIcon marginRight="1" />
|
|
|
|
{numItemsTheyOwnThatYouWant > 1
|
|
|
|
? `${numItemsTheyOwnThatYouWant} items you want`
|
|
|
|
: "1 item you want"}
|
|
|
|
</Badge>
|
|
|
|
)}
|
|
|
|
{!isCurrentUser && numItemsTheyWantThatYouOwn > 0 && (
|
|
|
|
<Badge
|
|
|
|
as="a"
|
|
|
|
href="#wanted-items"
|
|
|
|
colorScheme="green"
|
|
|
|
display="flex"
|
|
|
|
alignItems="center"
|
|
|
|
>
|
|
|
|
<CheckIcon marginRight="1" />
|
|
|
|
{numItemsTheyWantThatYouOwn > 1
|
|
|
|
? `${numItemsTheyWantThatYouOwn} items you own`
|
|
|
|
: "1 item you own"}
|
|
|
|
</Badge>
|
|
|
|
)}
|
|
|
|
</Wrap>
|
2020-11-03 14:45:43 -08:00
|
|
|
</Box>
|
2020-11-18 06:45:33 -08:00
|
|
|
<Box flex="1 0 auto" width="2" />
|
|
|
|
<Box marginBottom="1">
|
|
|
|
<UserSearchForm />
|
|
|
|
</Box>
|
|
|
|
</Flex>
|
|
|
|
|
|
|
|
<Box marginTop="4">
|
|
|
|
{isCurrentUser && (
|
|
|
|
<Box float="right">
|
|
|
|
<WIPCallout details="These lists are read-only for now. To edit, head back to Classic DTI!" />
|
|
|
|
</Box>
|
2020-10-27 21:43:57 -07:00
|
|
|
)}
|
2020-11-18 06:45:33 -08:00
|
|
|
<Heading2 id="owned-items" marginBottom="2">
|
|
|
|
{isCurrentUser ? "Items you own" : `Items ${data.user.username} owns`}
|
|
|
|
</Heading2>
|
2020-12-07 18:58:10 -08:00
|
|
|
<VStack
|
|
|
|
spacing="8"
|
|
|
|
alignItems="stretch"
|
|
|
|
className={css`
|
|
|
|
clear: both;
|
|
|
|
`}
|
|
|
|
>
|
2020-11-18 06:45:33 -08:00
|
|
|
{listsOfOwnedItems.map((closetList) => (
|
|
|
|
<ClosetList
|
|
|
|
key={closetList.id}
|
|
|
|
closetList={closetList}
|
|
|
|
isCurrentUser={isCurrentUser}
|
|
|
|
showHeading={listsOfOwnedItems.length > 1}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</VStack>
|
|
|
|
</Box>
|
2020-10-27 23:09:42 -07:00
|
|
|
|
|
|
|
<Heading2 id="wanted-items" marginTop="10" marginBottom="2">
|
|
|
|
{isCurrentUser ? "Items you want" : `Items ${data.user.username} wants`}
|
|
|
|
</Heading2>
|
|
|
|
<VStack spacing="4" alignItems="stretch">
|
|
|
|
{listsOfWantedItems.map((closetList) => (
|
|
|
|
<ClosetList
|
|
|
|
key={closetList.id}
|
|
|
|
closetList={closetList}
|
|
|
|
isCurrentUser={isCurrentUser}
|
|
|
|
showHeading={listsOfWantedItems.length > 1}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</VStack>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-18 06:45:33 -08:00
|
|
|
function UserSearchForm() {
|
|
|
|
const [query, setQuery] = React.useState("");
|
2020-11-18 10:32:49 -08:00
|
|
|
|
|
|
|
const { isSupportUser, supportSecret } = useSupport();
|
2020-11-18 06:45:33 -08:00
|
|
|
const history = useHistory();
|
|
|
|
const toast = useToast();
|
|
|
|
|
2020-11-18 10:32:49 -08:00
|
|
|
const [loadUserSearch, { loading: loading1 }] = useLazyQuery(
|
2020-11-18 06:45:33 -08:00
|
|
|
gql`
|
|
|
|
query UserSearchForm($name: String!) {
|
|
|
|
userByName(name: $name) {
|
|
|
|
id
|
|
|
|
# Consider preloading UserItemsPage fields here, too?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
{
|
|
|
|
onCompleted: (data) => {
|
|
|
|
const user = data.userByName;
|
|
|
|
if (!user) {
|
|
|
|
toast({
|
|
|
|
status: "warning",
|
|
|
|
title: "We couldn't find that user!",
|
|
|
|
description: "Check the spelling and try again?",
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
history.push(`/user/${user.id}/items`);
|
|
|
|
},
|
|
|
|
onError: (error) => {
|
|
|
|
console.error(error);
|
|
|
|
toast({
|
|
|
|
status: "error",
|
|
|
|
title: "Error loading user!",
|
|
|
|
description: "Check your connection and try again?",
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2020-11-18 10:32:49 -08:00
|
|
|
const [loadUserByEmail, { loading: loading2 }] = useLazyQuery(
|
|
|
|
gql`
|
|
|
|
query UserSearchFormByEmail($email: String!, $supportSecret: String!) {
|
|
|
|
userByEmail(email: $email, supportSecret: $supportSecret) {
|
|
|
|
id
|
|
|
|
# Consider preloading UserItemsPage fields here, too?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
{
|
|
|
|
onCompleted: (data) => {
|
|
|
|
const user = data.userByEmail;
|
|
|
|
if (!user) {
|
|
|
|
toast({
|
|
|
|
status: "warning",
|
|
|
|
title: "We couldn't find that email address!",
|
|
|
|
description: "Check the spelling and try again?",
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
history.push(`/user/${user.id}/items`);
|
|
|
|
},
|
|
|
|
onError: (error) => {
|
|
|
|
console.error(error);
|
|
|
|
toast({
|
|
|
|
status: "error",
|
|
|
|
title: "Error loading user by email!",
|
|
|
|
description: "Check your connection and try again?",
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2020-11-18 06:45:33 -08:00
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
as="form"
|
|
|
|
onSubmit={(e) => {
|
2020-11-18 10:32:49 -08:00
|
|
|
const isSupportOnlyEmailSearch =
|
|
|
|
isSupportUser && query.match(/^[^\s@]+@[^\s@]+\.[^\s@]+$/);
|
|
|
|
|
|
|
|
if (isSupportOnlyEmailSearch) {
|
|
|
|
toast({
|
|
|
|
status: "info",
|
|
|
|
title: "Searching by email! (💖 Support-only)",
|
|
|
|
description: "The email field is protected from most users.",
|
|
|
|
});
|
|
|
|
loadUserByEmail({ variables: { email: query, supportSecret } });
|
|
|
|
} else {
|
|
|
|
loadUserSearch({ variables: { name: query } });
|
|
|
|
}
|
|
|
|
|
2020-11-18 06:45:33 -08:00
|
|
|
e.preventDefault();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<InputGroup size="sm">
|
|
|
|
<InputLeftElement pointerEvents="none">
|
|
|
|
<SearchIcon color="gray.400" />
|
|
|
|
</InputLeftElement>
|
|
|
|
<Input
|
|
|
|
value={query}
|
|
|
|
onChange={(e) => setQuery(e.target.value)}
|
2020-11-24 21:21:38 -08:00
|
|
|
placeholder="Find another user…"
|
2020-11-18 06:45:33 -08:00
|
|
|
borderRadius="full"
|
|
|
|
/>
|
|
|
|
<InputRightElement>
|
|
|
|
<IconButton
|
|
|
|
type="submit"
|
|
|
|
variant="ghost"
|
|
|
|
icon={<ArrowForwardIcon />}
|
|
|
|
aria-label="Search"
|
2020-11-18 10:32:49 -08:00
|
|
|
isLoading={loading1 || loading2}
|
2020-11-18 06:45:33 -08:00
|
|
|
minWidth="1.5rem"
|
|
|
|
minHeight="1.5rem"
|
|
|
|
width="1.5rem"
|
|
|
|
height="1.5rem"
|
|
|
|
borderRadius="full"
|
|
|
|
opacity={query ? 1 : 0}
|
|
|
|
transition="opacity 0.2s"
|
|
|
|
aria-hidden={query ? "false" : "true"}
|
|
|
|
/>
|
|
|
|
</InputRightElement>
|
|
|
|
</InputGroup>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-27 23:09:42 -07:00
|
|
|
function ClosetList({ closetList, isCurrentUser, showHeading }) {
|
|
|
|
const hasYouWantThisBadge = (item) =>
|
|
|
|
!isCurrentUser &&
|
|
|
|
closetList.ownsOrWantsItems === "OWNS" &&
|
|
|
|
item.currentUserWantsThis;
|
|
|
|
const hasYouOwnThisBadge = (item) =>
|
|
|
|
!isCurrentUser &&
|
|
|
|
closetList.ownsOrWantsItems === "WANTS" &&
|
|
|
|
item.currentUserOwnsThis;
|
|
|
|
const hasAnyTradeBadge = (item) =>
|
|
|
|
hasYouOwnThisBadge(item) || hasYouWantThisBadge(item);
|
|
|
|
|
|
|
|
const sortedItems = [...closetList.items].sort((a, b) => {
|
|
|
|
// This is a cute sort hack. We sort first by, bringing "You own/want
|
|
|
|
// this!" to the top, and then sorting by name _within_ those two groups.
|
|
|
|
const aName = `${hasAnyTradeBadge(a) ? "000" : "999"} ${a.name}`;
|
|
|
|
const bName = `${hasAnyTradeBadge(b) ? "000" : "999"} ${b.name}`;
|
|
|
|
return aName.localeCompare(bName);
|
|
|
|
});
|
|
|
|
|
2020-11-23 13:28:43 -08:00
|
|
|
// When this mounts, scroll it into view if it matches the location hash.
|
|
|
|
// This works around the fact that, while the browser tries to do this
|
|
|
|
// natively on page load, the list might not be mounted yet!
|
|
|
|
const anchorId = `list-${closetList.id}`;
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (document.location.hash === "#" + anchorId) {
|
|
|
|
document.getElementById(anchorId).scrollIntoView();
|
|
|
|
}
|
|
|
|
}, [anchorId]);
|
|
|
|
|
2020-10-27 23:09:42 -07:00
|
|
|
return (
|
2020-11-23 13:28:43 -08:00
|
|
|
<Box id={anchorId}>
|
2020-10-27 23:09:42 -07:00
|
|
|
{showHeading && (
|
|
|
|
<Heading3
|
|
|
|
marginBottom="2"
|
|
|
|
fontStyle={closetList.isDefaultList ? "italic" : "normal"}
|
|
|
|
>
|
|
|
|
{closetList.name}
|
|
|
|
</Heading3>
|
|
|
|
)}
|
2020-10-28 00:00:14 -07:00
|
|
|
{closetList.description && (
|
|
|
|
<Box marginBottom="2">
|
|
|
|
<MarkdownAndSafeHTML>{closetList.description}</MarkdownAndSafeHTML>
|
|
|
|
</Box>
|
|
|
|
)}
|
2020-10-27 23:09:42 -07:00
|
|
|
{sortedItems.length > 0 ? (
|
2020-12-07 18:58:10 -08:00
|
|
|
<VirtualizedItemCardList>
|
2020-10-27 23:09:42 -07:00
|
|
|
{sortedItems.map((item) => (
|
2020-10-23 23:29:50 -07:00
|
|
|
<ItemCard
|
|
|
|
key={item.id}
|
|
|
|
item={item}
|
|
|
|
badges={
|
|
|
|
<ItemBadgeList>
|
2020-11-08 15:13:30 -08:00
|
|
|
<ItemKindBadge isNc={item.isNc} isPb={item.isPb} />
|
2020-10-27 23:09:42 -07:00
|
|
|
{hasYouOwnThisBadge(item) && <YouOwnThisBadge />}
|
|
|
|
{hasYouWantThisBadge(item) && <YouWantThisBadge />}
|
2020-11-03 20:11:37 -08:00
|
|
|
{getZoneBadges(item.allOccupiedZones, {
|
|
|
|
variant: "occupies",
|
|
|
|
})}
|
2020-10-23 23:29:50 -07:00
|
|
|
</ItemBadgeList>
|
|
|
|
}
|
|
|
|
/>
|
2020-10-27 23:09:42 -07:00
|
|
|
))}
|
2020-12-07 18:58:10 -08:00
|
|
|
</VirtualizedItemCardList>
|
2020-10-27 23:09:42 -07:00
|
|
|
) : (
|
|
|
|
<Box fontStyle="italic">This list is empty!</Box>
|
|
|
|
)}
|
2020-09-04 05:59:35 -07:00
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-12-07 18:58:10 -08:00
|
|
|
function VirtualizedItemCardList({ children }) {
|
|
|
|
const columnCount = useBreakpointValue({ base: 1, md: 2, lg: 3 });
|
|
|
|
const rowCount = Math.ceil(children.length / columnCount);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AutoSizer disableHeight>
|
|
|
|
{({ width }) => (
|
|
|
|
<WindowScroller>
|
|
|
|
{({
|
|
|
|
height,
|
|
|
|
isScrolling,
|
|
|
|
onChildScroll,
|
|
|
|
scrollTop,
|
|
|
|
registerChild,
|
|
|
|
}) => (
|
2020-12-07 19:18:34 -08:00
|
|
|
<Box
|
|
|
|
// HACK: A mysterious invocation to force internal re-measuring!
|
|
|
|
// Without this, most lists are very broken until the first
|
|
|
|
// window resize event.
|
|
|
|
// https://github.com/bvaughn/react-virtualized/issues/1324
|
|
|
|
ref={(el) => registerChild(el)}
|
|
|
|
>
|
2020-12-07 18:58:10 -08:00
|
|
|
<Grid
|
|
|
|
cellRenderer={({ key, rowIndex, columnIndex, style }) => (
|
|
|
|
<Box
|
|
|
|
key={key}
|
|
|
|
style={style}
|
|
|
|
paddingLeft={columnIndex > 0 ? "6" : "0"}
|
|
|
|
>
|
|
|
|
{children[rowIndex * columnCount + columnIndex]}
|
|
|
|
</Box>
|
|
|
|
)}
|
|
|
|
columnCount={columnCount}
|
|
|
|
columnWidth={width / columnCount}
|
|
|
|
rowCount={rowCount}
|
|
|
|
rowHeight={100}
|
|
|
|
width={width}
|
|
|
|
height={height}
|
|
|
|
autoHeight
|
|
|
|
isScrolling={isScrolling}
|
|
|
|
onScroll={onChildScroll}
|
|
|
|
scrollTop={scrollTop}
|
|
|
|
/>
|
|
|
|
</Box>
|
|
|
|
)}
|
|
|
|
</WindowScroller>
|
|
|
|
)}
|
|
|
|
</AutoSizer>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-28 00:00:14 -07:00
|
|
|
const unsafeMarkdownRules = {
|
|
|
|
autolink: SimpleMarkdown.defaultRules.autolink,
|
|
|
|
br: SimpleMarkdown.defaultRules.br,
|
|
|
|
em: SimpleMarkdown.defaultRules.em,
|
|
|
|
escape: SimpleMarkdown.defaultRules.escape,
|
|
|
|
link: SimpleMarkdown.defaultRules.link,
|
|
|
|
list: SimpleMarkdown.defaultRules.list,
|
|
|
|
newline: SimpleMarkdown.defaultRules.newline,
|
|
|
|
paragraph: SimpleMarkdown.defaultRules.paragraph,
|
|
|
|
strong: SimpleMarkdown.defaultRules.strong,
|
|
|
|
u: SimpleMarkdown.defaultRules.u,
|
|
|
|
|
|
|
|
// DANGER: We override Markdown's `text` rule to _not_ escape HTML. This is
|
|
|
|
// intentional, to allow users to embed some limited HTML. DOMPurify is
|
|
|
|
// responsible for sanitizing the HTML afterward. Do not use these rules
|
|
|
|
// without sanitizing!!
|
|
|
|
text: {
|
|
|
|
...SimpleMarkdown.defaultRules.text,
|
|
|
|
html: (node) => node.content,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const markdownParser = SimpleMarkdown.parserFor(unsafeMarkdownRules);
|
|
|
|
const unsafeMarkdownOutput = SimpleMarkdown.htmlFor(
|
|
|
|
SimpleMarkdown.ruleOutput(unsafeMarkdownRules, "html")
|
|
|
|
);
|
|
|
|
|
|
|
|
function MarkdownAndSafeHTML({ children }) {
|
|
|
|
const htmlAndMarkdown = children;
|
|
|
|
|
|
|
|
const unsafeHtml = unsafeMarkdownOutput(markdownParser(htmlAndMarkdown));
|
|
|
|
|
|
|
|
const sanitizedHtml = DOMPurify.sanitize(unsafeHtml, {
|
|
|
|
ALLOWED_TAGS: [
|
|
|
|
"b",
|
|
|
|
"i",
|
|
|
|
"u",
|
|
|
|
"strong",
|
|
|
|
"em",
|
|
|
|
"a",
|
|
|
|
"p",
|
|
|
|
"div",
|
|
|
|
"br",
|
|
|
|
"ol",
|
|
|
|
"ul",
|
|
|
|
"li",
|
|
|
|
],
|
|
|
|
ALLOWED_ATTR: ["href", "class"],
|
|
|
|
// URL must either start with an approved host (external link), or with a
|
|
|
|
// slash or hash (internal link).
|
2020-11-09 06:11:07 -08:00
|
|
|
ALLOWED_URI_REGEXP: /^https?:\/\/(impress\.openneo\.net|impress-2020\.openneo\.net|www\.neopets\.com|neopets\.com|items\.jellyneo\.net)\/|^[/#]/,
|
2020-10-28 00:00:14 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
dangerouslySetInnerHTML={{ __html: sanitizedHtml }}
|
|
|
|
className={css`
|
|
|
|
.paragraph,
|
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
margin-left: 2em;
|
|
|
|
}
|
|
|
|
`}
|
|
|
|
></Box>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-18 07:42:40 -08:00
|
|
|
function UserSupportMenu({ children, user }) {
|
|
|
|
const { supportSecret } = useSupport();
|
|
|
|
const toast = useToast();
|
|
|
|
|
|
|
|
const [sendEditUsernameMutation] = useMutation(
|
|
|
|
gql`
|
|
|
|
mutation UserSupportMenuRename(
|
|
|
|
$userId: ID!
|
|
|
|
$newUsername: String!
|
|
|
|
$supportSecret: String!
|
|
|
|
) {
|
|
|
|
setUsername(
|
|
|
|
userId: $userId
|
|
|
|
newUsername: $newUsername
|
|
|
|
supportSecret: $supportSecret
|
|
|
|
) {
|
|
|
|
id
|
|
|
|
username
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
{
|
|
|
|
onCompleted: (data) => {
|
|
|
|
const updatedUser = data.setUsername;
|
|
|
|
toast({
|
|
|
|
status: "success",
|
|
|
|
title: `Successfully renamed user ${updatedUser.id} to ${updatedUser.username}!`,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
const editUsername = React.useCallback(() => {
|
|
|
|
const newUsername = prompt(
|
|
|
|
"What should this user's username be?",
|
|
|
|
user.username
|
|
|
|
);
|
|
|
|
if (!newUsername || newUsername === user.username) {
|
|
|
|
toast({
|
|
|
|
status: "info",
|
|
|
|
title: "Got it, no change!",
|
|
|
|
description: `User ${user.id}'s username will continue to be ${user.username}.`,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sendEditUsernameMutation({
|
|
|
|
variables: { userId: user.id, newUsername, supportSecret },
|
|
|
|
}).catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
toast({
|
|
|
|
status: "error",
|
|
|
|
title: "Error renaming user.",
|
|
|
|
description: "See error details in the console!",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}, [sendEditUsernameMutation, user.id, user.username, supportSecret, toast]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Menu>
|
|
|
|
{children}
|
|
|
|
<Portal>
|
|
|
|
<MenuList>
|
|
|
|
<MenuItem onClick={editUsername}>Edit username</MenuItem>
|
|
|
|
</MenuList>
|
|
|
|
</Portal>
|
|
|
|
</Menu>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-24 00:08:22 -07:00
|
|
|
function NeopetsStarIcon(props) {
|
2020-10-24 00:14:42 -07:00
|
|
|
// Converted from the Neopets favicon with https://www.vectorizer.io/.
|
2020-10-24 00:08:22 -07:00
|
|
|
return (
|
|
|
|
<Box {...props}>
|
|
|
|
<svg
|
|
|
|
version="1.0"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
width="1.2em"
|
|
|
|
height="1.2em"
|
|
|
|
viewBox="0 0 160 160"
|
|
|
|
preserveAspectRatio="xMidYMid meet"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
fill="currentColor"
|
|
|
|
fill-rule="evenodd"
|
|
|
|
d="M85 129 L60 108 40 119 C11 135,7 132,24 108 L39 86 23 68 L6 50 32 50 L58 50 73 29 L88 8 94 29 L101 50 128 50 L155 50 131 68 L107 86 113 118 C121 155,118 156,85 129 "
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-11 23:20:06 -07:00
|
|
|
export default UserItemsPage;
|