123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <template>
- <div
- class="d-flex flex-column justify-between"
- style="height: calc(100vh - 10rem)"
- >
- <div class="col"></div>
- <div class="col">
- <svg
- id="thumbslogo"
- class="mb-4"
- width="150"
- height="150"
- viewBox="0 0 24 24"
- overflow="visible"
- >
- <path
- d="M14.9 3H6c-.9 0-1.6.5-1.9 1.2l-3 7c-.1.3-.1.5-.1.7v2c0 1.1.9 2 2 2h6.3l-.9 4.5c-.1.5 0 1 .4 1.4l1.1 1.1 6.5-6.6c.4-.4.6-.9.6-1.4V5c-.1-1.1-1-2-2.1-2zm7.4 12.8h-2.9c-.4 0-.7-.3-.7-.7V3.9c0-.4.3-.7.7-.7h2.9c.4 0 .7.3.7.7V15c0 .4-.3.8-.7.8z"
- />
- <path
- id="plarrow"
- d="m8 12.5 5.1-2.9L8 6.7v5.8z"
- fill="#fff"
- stroke="none"
- />
- </svg>
- <h1 class="title-text">
- {{ $vuetify.lang.t("$vuetify.home.title") }}
- </h1>
- <p class="mb-4" style="color: #999; margin-top: 0">
- {{ $vuetify.lang.t("$vuetify.home.subtitle") }}
- </p>
- <v-btn
- :to="installLink"
- color="primary px-6"
- style="font-size: 1.5em; padding: 1em; margin-bottom: 0.5em"
- >
- <v-icon large class="mr-6">mdi-tray-arrow-down</v-icon>
- {{ $vuetify.lang.t("$vuetify.install.name") }}
- </v-btn>
- <br />
- <v-btn class="mainAltButton" :href="githubLink" target="_blank">
- <v-icon style="margin-right: 0.5em">mdi-github</v-icon>
- GitHub
- </v-btn>
- <v-btn class="mainAltButton" :href="discordLink" target="_blank">
- <v-icon style="margin-right: 0.5em">mdi-discord</v-icon>
- Discord
- </v-btn>
- </div>
- <!-- <div class="mb-4" style="color: #999">-->
- <!-- Get dislikes manually: <input placeholder=" Video URL">-->
- <!-- <p id="output"></p>-->
- <!-- </div>-->
- <v-spacer />
- <div id="support-ukraine" class="d-flex flex-column items-center py-2">
- <h3 class="mb-2">
- <v-img src="/ukraine-flag-xs.webp" width="42px" height="28px"></v-img>
- <a href="https://helpukrainewin.org/">
- {{ $vuetify.lang.t("$vuetify.home.ukraine") }}
- </a>
- </h3>
- </div>
- <div id="biggest-supporters" class="d-flex flex-column items-center py-8">
- <h3 class="mb-4">
- <v-icon class="mb-2">mdi-heart</v-icon>
- {{ $vuetify.lang.t("$vuetify.home.sponsors") }}
- </h3>
- <v-row class="justify-center mx-auto">
- <p v-for="sponsor in sponsors" :key="sponsor.name" class="sponsor">
- <a
- :style="
- sponsor.link ? { cursor: 'pointer' } : { cursor: 'default' }
- "
- :href="sponsor.link"
- rel="sponsored"
- >
- {{ sponsor.name }}
- </a>
- </p>
- </v-row>
- </div>
- </div>
- </template>
- <script>
- export default {
- transition(to, from) {
- if (!from) return "swoop-in";
- let routes = ["index", "install", "docs", "help", "faq", "donate", "links"];
- if (routes.indexOf(to.name) < 0) return "swoop-out";
- if (routes.indexOf(from.name) < 0) return "swoop-in";
- return routes.indexOf(to.name) > routes.indexOf(from.name)
- ? "swoop-left"
- : "swoop-right";
- },
- data() {
- return {
- installLink: "/install",
- githubLink: "https://github.com/Anarios/return-youtube-dislike",
- discordLink: "https://discord.gg/mYnESY4Md5",
- sponsors: [
- { name: "Piepacker", link: "https://piepacker.com/" },
- {
- name: "Seed4.Me VPN",
- link: "https://www.seed4.me/users/register?gift=ReturnYoutubeDislike",
- },
- {
- name: "PocketTube",
- link: "https://yousub.info/?utm_source=returnyoutubedislike",
- },
- {
- name: "Become our sponsor",
- link: "https://www.patreon.com/join/returnyoutubedislike/checkout?rid=8008601",
- },
- ],
- };
- },
- mounted() {
- const YOUTUBE_REGEX =
- /(?:http:|https:)*?\/\/(?:www\.|)(?:youtube\.com|m\.youtube\.com|youtu\.|youtube-nocookie\.com).*(?:v=|v%3D|v\/|(?:a|p)\/(?:a|u)\/\d.*\/|watch\?|vi(?:=|\/)|\/embed\/|oembed\?|be\/|e\/)([^&?%#/\n]*)/;
- let lastVideoId = "";
- window.oninput = (e) => {
- const videoId =
- (e.target.value.match(YOUTUBE_REGEX) || {})[1] || e.target.value;
- if (videoId !== lastVideoId && videoId.length === 11) {
- fetch(
- "https://returnyoutubedislikeapi.com/votes?videoId=" +
- (lastVideoId = videoId)
- )
- .then((resp) => resp.json())
- .then(
- (data) =>
- (document.getElementById("output").innerText =
- "Likes=" + data.likes + " Dislikes=" + data.dislikes)
- );
- }
- };
- },
- };
- </script>
- <style scoped>
- .sponsor {
- margin: 1rem;
- height: max-content;
- }
- input {
- background-color: #999999;
- }
- @media (max-width: 767px) {
- .sponsor {
- margin: 0.5rem;
- height: max-content;
- }
- }
- #thumbslogo {
- opacity: 0;
- fill: transparent;
- stroke: #f44;
- transition-property: opacity, transform;
- transform: scale(0) rotate(180deg);
- animation: popin 1s 0.3s ease-in-out 1 forwards,
- tap 0.3s 1.7s ease-in-out 1 forwards;
- }
- #plarrow {
- opacity: 0;
- transform: translateX(-0.25rem);
- transition-property: opacity, transform;
- animation: slidin 0.5s 1.7s ease 1 forwards;
- }
- @keyframes slidin {
- 0% {
- opacity: 0;
- transform: translateX(-0.25rem);
- }
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
- }
- @keyframes popin {
- 0% {
- transform: rotate(180deg) scale(0);
- opacity: 0;
- }
- 100% {
- transform: rotate(0deg) scale(1);
- opacity: 1;
- }
- }
- @keyframes fadein {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes tap {
- 0% {
- fill: transparent;
- stroke: #f44;
- transform: scale(1);
- }
- 25% {
- fill: #f44;
- stroke: none;
- transform: scale(0.85);
- }
- 100% {
- fill: #f44;
- stroke: none;
- transform: scale(1);
- }
- }
- /* reduced-motion animations */
- @media (prefers-reduced-motion) {
- #thumbslogo {
- opacity: 1;
- fill: #f44;
- stroke: none;
- transform: none;
- animation: none;
- }
- #thumbsripple {
- opacity: 0;
- transform: none;
- animation: none;
- }
- #plarrow {
- opacity: 0;
- transform: none;
- transition-property: opacity;
- animation: fadein 0.5s 0.5s ease 1 forwards;
- }
- }
- </style>
|