2020-03-04 01:17:02 +00:00
< template >
< header class = "header" >
2020-09-22 17:06:37 +00:00
< div class = "row-wrapper" >
2020-03-04 01:17:02 +00:00
< span class = "slide-in" >
< nuxt-link :to = "localePath('index')" >
2021-06-25 23:44:27 +00:00
< h1 class = "heading logo" > Hoppscotch < / h1 >
2020-03-04 01:17:02 +00:00
< / nuxt-link >
2021-01-16 13:10:18 +00:00
< iframe
src = "https://ghbtns.com/github-btn.html?user=hoppscotch&repo=hoppscotch&type=star&count=true"
frameborder = "0"
scrolling = "0"
width = "150"
height = "20"
title = "GitHub"
2021-02-10 14:23:47 +00:00
class = "ml-8 hide-on-small-screen"
2021-01-16 13:10:18 +00:00
loading = "lazy"
> < / iframe >
2020-03-04 01:17:02 +00:00
< / span >
< span >
2020-12-04 04:29:19 +00:00
< a
2021-03-09 15:28:15 +00:00
href = "https://appwrite.io/?utm_source=hoppscotch&utm_medium=banner&utm_campaign=hello"
2020-12-04 04:29:19 +00:00
target = "_blank"
rel = "noopener"
2021-05-15 12:43:31 +00:00
class = "
items - center
px - 4
py - 2
mx - 4
font - mono
text - sm
rounded - md
2021-06-12 16:46:17 +00:00
bg - primaryDark
2021-05-15 12:43:31 +00:00
hide - on - small - screen
"
2020-12-04 04:29:19 +00:00
>
2021-02-12 19:22:44 +00:00
Appwrite - Open - Source Backend as a Service
2021-05-18 06:26:59 +00:00
< img
class = "w-8 ml-2"
src = "~assets/images/appwrite-icon.svg"
alt = "Appwrite"
/ >
2020-12-04 04:29:19 +00:00
< / a >
2020-07-17 05:44:25 +00:00
< button
id = "installPWA"
v - tooltip = "$t('install_pwa')"
2021-06-25 23:44:27 +00:00
class = "icon button"
2021-05-18 06:26:59 +00:00
@ click . prevent = "showInstallPrompt()"
2020-07-17 05:44:25 +00:00
>
< i class = "material-icons" > offline _bolt < / i >
< / button >
2020-03-04 01:17:02 +00:00
< a
2020-08-13 11:20:02 +00:00
href = "https://github.com/hoppscotch/hoppscotch"
2020-03-04 01:17:02 +00:00
target = "_blank"
aria - label = "GitHub"
rel = "noopener"
>
2021-06-25 23:44:27 +00:00
< button v-tooltip = "'GitHub'" class="icon button" aria-label="GitHub" >
2021-05-18 06:26:59 +00:00
< svg
xmlns = "http://www.w3.org/2000/svg"
width = "24"
height = "24"
class = "material-icons"
>
2020-03-04 01:17:02 +00:00
< path
2020-07-01 05:21:22 +00:00
d = "M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"
2020-03-04 01:17:02 +00:00
/ >
< / svg >
< / button >
< / a >
2021-06-14 04:07:30 +00:00
< v-popover v-if = "currentUser === null" >
2021-06-25 23:44:27 +00:00
< button v-tooltip = "$t('login_with')" class="icon button" >
2020-06-19 07:55:41 +00:00
< i class = "material-icons" > login < / i >
2020-03-05 01:18:10 +00:00
< / button >
2021-06-30 08:46:02 +00:00
< template # popover >
2021-06-11 00:01:29 +00:00
< FirebaseLogin @ show -email = " showEmail = true " / >
2020-03-05 01:18:10 +00:00
< / template >
< / v-popover >
< v-popover v-else >
< button
v - tooltip = "
2021-06-14 04:07:30 +00:00
( currentUser . displayName ||
2021-05-18 06:26:59 +00:00
'<label><i>Name not found</i></label>' ) +
2020-04-08 10:19:13 +00:00
'<br>' +
2021-06-14 04:07:30 +00:00
( currentUser . email || '<label><i>Email not found</i></label>' )
2020-03-05 01:18:10 +00:00
"
2021-06-25 23:44:27 +00:00
class = "icon button"
2020-03-05 01:18:10 +00:00
aria - label = "Account"
>
< img
2021-06-14 04:07:30 +00:00
v - if = "currentUser.photoURL"
: src = "currentUser.photoURL"
2021-03-17 18:00:58 +00:00
class = "w-6 h-6 rounded-full material-icons"
2020-03-05 01:18:10 +00:00
alt = "Profile image"
/ >
< i v -else class = "material-icons" > account _circle < / i >
< / button >
2021-06-30 08:46:02 +00:00
< template # popover >
2020-03-05 01:18:10 +00:00
< div >
2021-05-18 06:26:59 +00:00
< nuxt-link v -close -popover :to = "localePath('settings')" >
2021-06-25 23:44:27 +00:00
< button class = "icon button" >
2020-03-05 01:18:10 +00:00
< i class = "material-icons" > settings < / i >
< span >
{ { $t ( "settings" ) } }
< / span >
2020-03-04 01:17:02 +00:00
< / button >
2020-03-05 01:18:10 +00:00
< / nuxt-link >
< / div >
< div >
2021-03-01 03:58:14 +00:00
< FirebaseLogout / >
2020-03-05 01:18:10 +00:00
< / div >
< / template >
< / v-popover >
2020-03-04 01:17:02 +00:00
< v-popover >
2021-06-25 23:44:27 +00:00
< button v-tooltip = "$t('more')" class="icon button" >
2020-06-19 07:55:41 +00:00
< i class = "material-icons" > drag _indicator < / i >
2020-03-04 01:17:02 +00:00
< / button >
2021-06-30 08:46:02 +00:00
< template # popover >
2021-06-25 23:44:27 +00:00
< button
v - close - popover
class = "icon button"
@ click = "showExtensions = true"
>
2020-07-16 03:38:31 +00:00
< i class = "material-icons" > extension < / i >
< span > { { $t ( "extensions" ) } } < / span >
< / button >
2021-06-25 23:44:27 +00:00
< button
v - close - popover
class = "icon button"
@ click = "showShortcuts = true"
>
2020-07-16 03:38:31 +00:00
< i class = "material-icons" > keyboard < / i >
< span > { { $t ( "shortcuts" ) } } < / span >
< / button >
2021-06-25 23:44:27 +00:00
< button
v - close - popover
class = "icon button"
@ click = "showSupport = true"
>
2020-07-16 03:38:31 +00:00
< i class = "material-icons" > favorite < / i >
< span > { { $t ( "support_us" ) } } < / span >
< / button >
< button
2021-05-18 06:26:59 +00:00
v - close - popover
2021-06-25 23:44:27 +00:00
class = "icon button"
2021-04-23 11:38:17 +00:00
onClick = "window.open('https://twitter.com/share?text=👽 Hoppscotch • Open source API development ecosystem - Helps you create requests faster, saving precious time on development.&url=https://hoppscotch.io&hashtags=hoppscotch&via=hoppscotch_io');"
2020-07-16 03:38:31 +00:00
>
< svg xmlns = "http://www.w3.org/2000/svg" width = "24" height = "24" >
< path
d = "M24 4.557a9.83 9.83 0 01-2.828.775 4.932 4.932 0 002.165-2.724 9.864 9.864 0 01-3.127 1.195 4.916 4.916 0 00-3.594-1.555c-3.179 0-5.515 2.966-4.797 6.045A13.978 13.978 0 011.671 3.149a4.93 4.93 0 001.523 6.574 4.903 4.903 0 01-2.229-.616c-.054 2.281 1.581 4.415 3.949 4.89a4.935 4.935 0 01-2.224.084 4.928 4.928 0 004.6 3.419A9.9 9.9 0 010 19.54a13.94 13.94 0 007.548 2.212c9.142 0 14.307-7.721 13.995-14.646A10.025 10.025 0 0024 4.557z"
/ >
< / svg >
2021-01-23 14:13:11 +00:00
< span > Tweet < / span >
2020-07-16 03:38:31 +00:00
< / button >
< button
v - if = "navigatorShare"
v - close - popover
v - tooltip = "$t('more')"
2021-06-25 23:44:27 +00:00
class = "icon button"
2021-05-18 06:26:59 +00:00
@ click = "nativeShare"
2020-07-16 03:38:31 +00:00
>
< i class = "material-icons" > share < / i >
< span > Share < / span >
< / button >
2020-03-04 01:17:02 +00:00
< / template >
< / v-popover >
< / span >
< / div >
2021-05-18 06:26:59 +00:00
< AppExtensions
: show = "showExtensions"
@ hide - modal = "showExtensions = false"
/ >
2021-03-01 03:58:14 +00:00
< AppShortcuts :show = "showShortcuts" @ hide -modal = " showShortcuts = false " / >
< AppSupport :show = "showSupport" @ hide -modal = " showSupport = false " / >
2021-06-11 00:01:29 +00:00
< FirebaseEmail :show = "showEmail" @ hide -modal = " showEmail = false " / >
2020-03-04 01:17:02 +00:00
< / header >
< / template >
< script >
2020-09-26 02:27:45 +00:00
import intializePwa from "~/helpers/pwa"
2021-06-14 04:07:30 +00:00
import { currentUser$ } from "~/helpers/fb/auth"
2021-06-21 04:27:45 +00:00
import { getLocalConfig , setLocalConfig } from "~/newstore/localpersistence"
2021-01-23 06:10:29 +00:00
// import { hasExtensionInstalled } from "~/helpers/strategies/ExtensionStrategy"
2020-03-04 01:17:02 +00:00
export default {
data ( ) {
return {
// Once the PWA code is initialized, this holds a method
// that can be called to show the user the installation
// prompt.
showInstallPrompt : null ,
showExtensions : false ,
showShortcuts : false ,
showSupport : false ,
2021-06-11 00:01:29 +00:00
showEmail : false ,
2020-03-04 01:17:02 +00:00
navigatorShare : navigator . share ,
2021-06-14 04:07:30 +00:00
}
} ,
subscriptions ( ) {
return {
currentUser : currentUser$ ,
2020-03-04 01:17:02 +00:00
}
} ,
2020-12-11 10:29:03 +00:00
async mounted ( ) {
2020-03-04 01:17:02 +00:00
// Initializes the PWA code - checks if the app is installed,
// etc.
2020-12-11 10:29:03 +00:00
this . showInstallPrompt = await intializePwa ( )
2021-06-21 04:27:45 +00:00
const cookiesAllowed = getLocalConfig ( "cookiesAllowed" ) === "yes"
2020-12-11 10:29:03 +00:00
if ( ! cookiesAllowed ) {
this . $toast . show ( this . $t ( "we_use_cookies" ) , {
icon : "info" ,
duration : 5000 ,
theme : "toasted-primary" ,
action : [
{
text : this . $t ( "dismiss" ) ,
2021-05-18 06:26:59 +00:00
onClick : ( _ , toastObject ) => {
2021-06-21 04:27:45 +00:00
setLocalConfig ( "cookiesAllowed" , "yes" )
2020-12-11 10:29:03 +00:00
toastObject . goAway ( 0 )
2020-03-04 01:17:02 +00:00
} ,
2020-12-11 10:29:03 +00:00
} ,
] ,
} )
}
2020-03-04 01:17:02 +00:00
2021-06-20 12:36:20 +00:00
// const showAd = localStorage.getItem("showAd") === "no"
// if (!showAd) {
// setTimeout(() => {
// this.$toast.clear()
// this.$toast.show(
// "<span><a href='https://fundoss.org/collective/hoppscotch' target='_blank' rel='noopener'>Sponsor us to support Hoppscotch open source project 💖</a><br><sub>Whoosh this away to dismiss.</sub></span>",
// {
// icon: "",
// duration: 0,
// theme: "toasted-ad",
// action: [
// {
// text: "Donate",
// icon: "chevron_right",
// onClick: (_, toastObject) => {
// localStorage.setItem("showAd", "no")
// toastObject.goAway(0)
// window.open("https://fundoss.org/collective/hoppscotch")
// },
// },
// ],
// onComplete() {
// localStorage.setItem("showAd", "no")
// },
// }
// )
// }, 6000)
// }
2020-12-11 10:29:03 +00:00
2021-01-16 11:30:03 +00:00
// let showExtensionsToast = localStorage.getItem("showExtensionsToast") === "yes"
// if (!showExtensionsToast) {
// setTimeout(() => {
// if (!hasExtensionInstalled()) {
// this.$toast.show(this.$t("extensions_info2"), {
// icon: "extension",
// duration: 5000,
// theme: "toasted-primary",
// action: [
// {
// text: this.$t("yes"),
2021-05-18 06:26:59 +00:00
// onClick: (_, toastObject) => {
2021-01-16 11:30:03 +00:00
// this.showExtensions = true
// localStorage.setItem("showExtensionsToast", "yes")
// toastObject.goAway(0)
// },
// },
// {
// text: this.$t("no"),
2021-05-18 06:26:59 +00:00
// onClick: (_, toastObject) => {
2021-01-16 11:30:03 +00:00
// this.$store.commit("setMiscState", {
// value: false,
// attribute: "showExtensionsToast",
// })
// localStorage.setItem("showExtensionsToast", "no")
// toastObject.goAway(0)
// },
// },
// ],
// })
// }
// }, 5000)
// }
2020-03-04 01:17:02 +00:00
} ,
methods : {
nativeShare ( ) {
if ( navigator . share ) {
navigator
. share ( {
2020-08-13 11:20:02 +00:00
title : "Hoppscotch" ,
2021-05-15 12:43:31 +00:00
text : "Hoppscotch • Open source API development ecosystem - Helps you create requests faster, saving precious time on development." ,
2020-08-25 07:57:59 +00:00
url : "https://hoppscotch.io" ,
2020-03-04 01:17:02 +00:00
} )
. then ( ( ) => { } )
. catch ( console . error )
} else {
// fallback
}
} ,
} ,
}
< / script >
2021-05-18 06:26:59 +00:00
< style scoped lang = "scss" >
. logo {
@ apply text - xl ;
@ apply transition - colors ;
@ apply ease - in - out ;
@ apply duration - 150 ;
2021-06-26 10:41:19 +00:00
@ apply hover : text - accent ;
2021-05-18 06:26:59 +00:00
}
@ keyframes slideIn {
0 % {
@ apply opacity - 0 ;
@ apply - left - 4 ;
}
100 % {
@ apply opacity - 100 ;
@ apply left - 0 ;
}
}
. slide - in {
@ apply relative ;
animation : slideIn 0.2 s forwards ease - in - out ;
}
< / style >