computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
import siteConfig from '../content/site.json'; |
|
|
|
export const prefixHost = (url: string) => { |
|
// if it starts with forward slash then prefix site URL |
|
// @todo proper handling of full URLs and trailing slashes |
|
return /^\//.test(url) ? `${siteConfig?.url?.web}${url}` : url; |
|
}; |
|
|
|
export const getTwitterUrl = (username: string) => { |
|
return `https://twitter.com/${username}`; |
|
}; |
|
|
|
export const getTwitterShareUrl = ({ text, url }: { text: string, url: string }) => { |
|
return `https://twitter.com/intent/tweet?text=${text}&url=${encodeURI(prefixHost(url))}`; |
|
}; |
|
|
|
export const getFacebookShareUrl = ({ text, url }: { text: string, url: string }) => { |
|
return `https://www.facebook.com/sharer/sharer.php?quote=${text}&u=${encodeURI(prefixHost(url))}`; |
|
}; |
|
|
|
export const getRedditShareUrl = ({ text, url }: { text: string, url: string }) => { |
|
return `https://www.reddit.com/submit?title=${text}&url=${encodeURI(prefixHost(url))}`; |
|
}; |
|
|
|
export const getHnShareUrl = ({ text, url }: { text: string, url: string }) => { |
|
return `https://news.ycombinator.com/submitlink?t=${text}&u=${prefixHost(url)}`; |
|
};
|
|
|