2023-02-25 10:04:30 +08:00
|
|
|
import {
|
|
|
|
FocusableItem,
|
|
|
|
Menu,
|
|
|
|
MenuDivider,
|
|
|
|
MenuGroup,
|
|
|
|
MenuItem,
|
|
|
|
} from '@szhsin/react-menu';
|
|
|
|
import { useEffect, useRef, useState } from 'preact/hooks';
|
|
|
|
import { useNavigate, useParams } from 'react-router-dom';
|
2023-01-28 18:52:18 +08:00
|
|
|
|
2023-02-25 10:04:30 +08:00
|
|
|
import Icon from '../components/icon';
|
2023-01-28 18:52:18 +08:00
|
|
|
import Timeline from '../components/timeline';
|
2023-02-06 00:17:19 +08:00
|
|
|
import { api } from '../utils/api';
|
2023-02-27 00:55:04 +08:00
|
|
|
import showToast from '../utils/show-toast';
|
2023-02-25 10:04:30 +08:00
|
|
|
import states from '../utils/states';
|
2023-03-18 20:20:48 +08:00
|
|
|
import { saveStatus } from '../utils/states';
|
2023-02-03 21:08:08 +08:00
|
|
|
import useTitle from '../utils/useTitle';
|
2023-01-28 18:52:18 +08:00
|
|
|
|
|
|
|
const LIMIT = 20;
|
|
|
|
|
2023-02-25 10:04:30 +08:00
|
|
|
// Limit is 4 per "mode"
|
|
|
|
// https://github.com/mastodon/mastodon/issues/15194
|
|
|
|
// Hard-coded https://github.com/mastodon/mastodon/blob/19614ba2477f3d12468f5ec251ce1cc5f8c6210c/app/models/tag_feed.rb#L4
|
|
|
|
const TAGS_LIMIT_PER_MODE = 4;
|
|
|
|
const TOTAL_TAGS_LIMIT = TAGS_LIMIT_PER_MODE + 1;
|
|
|
|
|
2023-02-18 20:48:24 +08:00
|
|
|
function Hashtags(props) {
|
2023-02-25 10:04:30 +08:00
|
|
|
const navigate = useNavigate();
|
2023-02-06 16:35:03 +08:00
|
|
|
let { hashtag, ...params } = useParams();
|
2023-02-18 20:48:24 +08:00
|
|
|
if (props.hashtag) hashtag = props.hashtag;
|
2023-02-25 10:04:30 +08:00
|
|
|
let hashtags = hashtag.trim().split(/[\s+]+/);
|
|
|
|
hashtags.sort();
|
|
|
|
hashtag = hashtags[0];
|
|
|
|
|
2023-02-25 12:40:59 +08:00
|
|
|
const { masto, instance } = api({ instance: params.instance });
|
|
|
|
const { authenticated } = api();
|
2023-02-25 10:04:30 +08:00
|
|
|
const hashtagTitle = hashtags.map((t) => `#${t}`).join(' ');
|
|
|
|
const title = instance ? `${hashtagTitle} on ${instance}` : hashtagTitle;
|
2023-02-11 16:27:40 +08:00
|
|
|
useTitle(title, `/:instance?/t/:hashtag`);
|
2023-02-11 16:28:03 +08:00
|
|
|
const latestItem = useRef();
|
|
|
|
|
2023-01-28 18:52:18 +08:00
|
|
|
const hashtagsIterator = useRef();
|
|
|
|
async function fetchHashtags(firstLoad) {
|
|
|
|
if (firstLoad || !hashtagsIterator.current) {
|
|
|
|
hashtagsIterator.current = masto.v1.timelines.listHashtag(hashtag, {
|
|
|
|
limit: LIMIT,
|
2023-02-25 10:04:30 +08:00
|
|
|
any: hashtags.slice(1),
|
2023-01-28 18:52:18 +08:00
|
|
|
});
|
|
|
|
}
|
2023-02-11 16:28:03 +08:00
|
|
|
const results = await hashtagsIterator.current.next();
|
|
|
|
const { value } = results;
|
|
|
|
if (value?.length) {
|
|
|
|
if (firstLoad) {
|
|
|
|
latestItem.current = value[0].id;
|
|
|
|
}
|
2023-03-18 20:20:48 +08:00
|
|
|
|
|
|
|
value.forEach((item) => {
|
|
|
|
saveStatus(item, instance);
|
|
|
|
});
|
2023-02-11 16:28:03 +08:00
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function checkForUpdates() {
|
|
|
|
try {
|
|
|
|
const results = await masto.v1.timelines
|
|
|
|
.listHashtag(hashtag, {
|
|
|
|
limit: 1,
|
2023-02-25 10:04:30 +08:00
|
|
|
any: hashtags.slice(1),
|
2023-02-11 16:28:03 +08:00
|
|
|
since_id: latestItem.current,
|
|
|
|
})
|
|
|
|
.next();
|
|
|
|
const { value } = results;
|
|
|
|
if (value?.length) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
2023-01-28 18:52:18 +08:00
|
|
|
}
|
|
|
|
|
2023-02-25 10:04:30 +08:00
|
|
|
const [followUIState, setFollowUIState] = useState('default');
|
|
|
|
const [info, setInfo] = useState();
|
|
|
|
// Get hashtag info
|
|
|
|
useEffect(() => {
|
|
|
|
(async () => {
|
|
|
|
try {
|
|
|
|
const info = await masto.v1.tags.fetch(hashtag);
|
|
|
|
console.log(info);
|
|
|
|
setInfo(info);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
}, [hashtag]);
|
|
|
|
|
|
|
|
const reachLimit = hashtags.length >= TOTAL_TAGS_LIMIT;
|
|
|
|
|
2023-01-28 18:52:18 +08:00
|
|
|
return (
|
|
|
|
<Timeline
|
2023-02-25 10:04:30 +08:00
|
|
|
key={hashtagTitle}
|
2023-02-06 16:35:03 +08:00
|
|
|
title={title}
|
2023-02-06 00:17:19 +08:00
|
|
|
titleComponent={
|
|
|
|
!!instance && (
|
|
|
|
<h1 class="header-account">
|
2023-02-25 10:04:30 +08:00
|
|
|
<b>{hashtagTitle}</b>
|
2023-02-06 00:17:19 +08:00
|
|
|
<div>{instance}</div>
|
|
|
|
</h1>
|
|
|
|
)
|
|
|
|
}
|
2023-02-27 23:59:41 +08:00
|
|
|
id="hashtag"
|
2023-02-06 16:35:03 +08:00
|
|
|
instance={instance}
|
2023-01-28 18:52:18 +08:00
|
|
|
emptyText="No one has posted anything with this tag yet."
|
|
|
|
errorText="Unable to load posts with this tag"
|
|
|
|
fetchItems={fetchHashtags}
|
2023-02-11 16:28:03 +08:00
|
|
|
checkForUpdates={checkForUpdates}
|
2023-03-18 20:20:48 +08:00
|
|
|
useItemID
|
2023-02-25 10:04:30 +08:00
|
|
|
headerEnd={
|
|
|
|
<Menu
|
|
|
|
portal={{
|
|
|
|
target: document.body,
|
|
|
|
}}
|
|
|
|
setDownOverflow
|
|
|
|
overflow="auto"
|
|
|
|
viewScroll="close"
|
|
|
|
position="anchor"
|
|
|
|
boundingBoxPadding="8 8 8 8"
|
|
|
|
menuButton={
|
|
|
|
<button type="button" class="plain">
|
|
|
|
<Icon icon="more" size="l" />
|
|
|
|
</button>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{!!info && hashtags.length === 1 && (
|
|
|
|
<>
|
|
|
|
<MenuItem
|
|
|
|
disabled={followUIState === 'loading' || !authenticated}
|
|
|
|
onClick={() => {
|
|
|
|
setFollowUIState('loading');
|
|
|
|
if (info.following) {
|
|
|
|
const yes = confirm(`Unfollow #${hashtag}?`);
|
|
|
|
if (!yes) {
|
|
|
|
setFollowUIState('default');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
masto.v1.tags
|
|
|
|
.unfollow(hashtag)
|
|
|
|
.then(() => {
|
|
|
|
setInfo({ ...info, following: false });
|
2023-02-27 00:55:04 +08:00
|
|
|
showToast(`Unfollowed #${hashtag}`);
|
2023-02-25 10:04:30 +08:00
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
alert(e);
|
|
|
|
console.error(e);
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
setFollowUIState('default');
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
masto.v1.tags
|
|
|
|
.follow(hashtag)
|
|
|
|
.then(() => {
|
|
|
|
setInfo({ ...info, following: true });
|
2023-02-27 00:55:04 +08:00
|
|
|
showToast(`Followed #${hashtag}`);
|
2023-02-25 10:04:30 +08:00
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
alert(e);
|
|
|
|
console.error(e);
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
setFollowUIState('default');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{info.following ? (
|
|
|
|
<>
|
|
|
|
<Icon icon="check-circle" /> <span>Following…</span>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<Icon icon="plus" /> <span>Follow</span>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</MenuItem>
|
|
|
|
<MenuDivider />
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
<FocusableItem className="menu-field" disabled={reachLimit}>
|
|
|
|
{({ ref }) => (
|
|
|
|
<form
|
|
|
|
onSubmit={(e) => {
|
|
|
|
e.preventDefault();
|
2023-03-01 23:39:31 +08:00
|
|
|
const newHashtag = e.target[0].value?.trim?.();
|
2023-02-25 10:04:30 +08:00
|
|
|
// Use includes but need to be case insensitive
|
|
|
|
if (
|
|
|
|
newHashtag &&
|
|
|
|
!hashtags.some(
|
|
|
|
(t) => t.toLowerCase() === newHashtag.toLowerCase(),
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
hashtags.push(newHashtag);
|
|
|
|
hashtags.sort();
|
|
|
|
navigate(
|
|
|
|
instance
|
|
|
|
? `/${instance}/t/${hashtags.join('+')}`
|
|
|
|
: `/t/${hashtags.join('+')}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Icon icon="hashtag" />
|
|
|
|
<input
|
|
|
|
ref={ref}
|
|
|
|
type="text"
|
|
|
|
placeholder={
|
|
|
|
reachLimit ? `Max ${TOTAL_TAGS_LIMIT} tags` : 'Add hashtag'
|
|
|
|
}
|
|
|
|
required
|
2023-03-01 23:39:31 +08:00
|
|
|
autocorrect="off"
|
|
|
|
autocapitalize="off"
|
|
|
|
spellcheck={false}
|
2023-02-25 10:04:30 +08:00
|
|
|
// no spaces, no hashtags
|
2023-03-01 23:39:31 +08:00
|
|
|
pattern="[^#][^\s#]+[^#]"
|
2023-02-25 10:04:30 +08:00
|
|
|
disabled={reachLimit}
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
)}
|
|
|
|
</FocusableItem>
|
|
|
|
<MenuGroup takeOverflow>
|
|
|
|
{hashtags.map((t, i) => (
|
|
|
|
<MenuItem
|
|
|
|
key={t}
|
|
|
|
onClick={(e) => {
|
|
|
|
hashtags.splice(i, 1);
|
|
|
|
hashtags.sort();
|
|
|
|
navigate(
|
|
|
|
instance
|
|
|
|
? `/${instance}/t/${hashtags.join('+')}`
|
|
|
|
: `/t/${hashtags.join('+')}`,
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
>
|
2023-02-27 00:55:04 +08:00
|
|
|
<Icon icon="x" alt="Remove hashtag" class="danger-icon" />
|
|
|
|
<span>
|
|
|
|
<span class="more-insignificant">#</span>
|
|
|
|
{t}
|
|
|
|
</span>
|
2023-02-25 10:04:30 +08:00
|
|
|
</MenuItem>
|
|
|
|
))}
|
|
|
|
</MenuGroup>
|
|
|
|
<MenuDivider />
|
|
|
|
<MenuItem
|
|
|
|
disabled={!authenticated}
|
|
|
|
onClick={() => {
|
|
|
|
const shortcut = {
|
|
|
|
type: 'hashtag',
|
|
|
|
hashtag: hashtags.join(' '),
|
|
|
|
};
|
|
|
|
// Check if already exists
|
|
|
|
const exists = states.shortcuts.some(
|
|
|
|
(s) =>
|
|
|
|
s.type === shortcut.type &&
|
|
|
|
s.hashtag
|
|
|
|
.split(/[\s+]+/)
|
|
|
|
.sort()
|
|
|
|
.join(' ') ===
|
|
|
|
shortcut.hashtag
|
|
|
|
.split(/[\s+]+/)
|
|
|
|
.sort()
|
|
|
|
.join(' '),
|
|
|
|
);
|
|
|
|
if (exists) {
|
|
|
|
alert('This shortcut already exists');
|
|
|
|
} else {
|
|
|
|
states.shortcuts.push(shortcut);
|
2023-02-27 00:55:04 +08:00
|
|
|
showToast(`Hashtag shortcut added`);
|
2023-02-25 10:04:30 +08:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Icon icon="shortcut" /> <span>Add to Shorcuts</span>
|
|
|
|
</MenuItem>
|
|
|
|
</Menu>
|
|
|
|
}
|
2023-01-28 18:52:18 +08:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Hashtags;
|