feat: ✨ copy feeds from user menu
This commit is contained in:
parent
d4aeacfae6
commit
5dff9df704
@ -2104,3 +2104,7 @@ _skinTones:
|
||||
medium: "Medium"
|
||||
mediumDark: "Medium Dark"
|
||||
dark: "Dark"
|
||||
_feeds:
|
||||
rss: "RSS"
|
||||
atom: "Atom"
|
||||
jsonFeed: "JSON Feed"
|
||||
|
@ -245,6 +245,34 @@ export function getUserMenu(user, router: Router = mainRouter) {
|
||||
router.push(`/user-info/${user.id}`);
|
||||
},
|
||||
},
|
||||
{
|
||||
icon: "ph-newspaper ph-bold ph-lg",
|
||||
text: i18n.ts.copyFeed,
|
||||
type: "parent",
|
||||
children: [
|
||||
{
|
||||
icon: "ph-rss ph-bold ph-lg",
|
||||
text: i18n.ts._feeds.rss,
|
||||
action: () => {
|
||||
copyToClipboard(`https://${host}/@${user.username}.rss`);
|
||||
},
|
||||
},
|
||||
{
|
||||
icon: "ph-atom ph-bold ph-lg",
|
||||
text: i18n.ts._feeds.atom,
|
||||
action: () => {
|
||||
copyToClipboard(`https://${host}/@${user.username}.atom`);
|
||||
},
|
||||
},
|
||||
{
|
||||
icon: "ph-brackets-curly ph-bold ph-lg",
|
||||
text: i18n.ts._feeds.jsonFeed,
|
||||
action: () => {
|
||||
copyToClipboard(`https://${host}/@${user.username}.json`);
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: "ph-envelope-simple-open ph-bold ph-lg",
|
||||
text: i18n.ts.sendMessage,
|
||||
|
Loading…
Reference in New Issue
Block a user