lbry.tech/content/.vuepress/components/EmailSubscribe.vue
2018-06-06 17:28:52 -05:00

176 lines
3.9 KiB
Vue

<template>
<div id="email-subscribe" class="newsletter-cta">
<h3 class="newsletter-cta__title">Subscribe to our developer newsletter</h3>
<div>
<input type="text" class="newsletter-cta__input" v-model="emailAddress" placeholder="you@domain.tld">
<a class="newsletter-cta__submit" href="#" v-on:click.prevent="subscribe">Subscribe</a>
</div>
<p v-if="message" class="newsletter-cta__message">{{ message }}</p>
</div>
</template>
<script>
export default {
data () {
return {
emailAddress: '',
message: ''
}
},
name: 'EmailSubscribe',
methods: {
subscribe () {
var component = this;
this.message = '';
if(!this.validateEmail(this.emailAddress)) {
this.message = 'Your email is not valid!';
} else {
this.$http.post('//api.lbry.io/list/subscribe', {
email: this.emailAddress,
tag: 'developer'
}, {
emulateJSON: true
}).then(function(response) {
component.email = '';
component.message = 'Thank you for subscribing!';
}, function(response) {
if(response.status == 409) {
component.message = 'You have already subscribed to our mailing list!';
}
});
}
},
validateEmail (email) {
var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(String(email).toLowerCase());
}
}
};
</script>
<style lang="scss">
@import "../scss/init/colors";
@import "../scss/init/extends";
@import "../scss/init/mixins";
.newsletter-cta {
background-color: rgba($black, 0.2);
padding-top: 1rem;
padding-bottom: 1rem;
text-align: center;
> div:first-of-type {
margin-right: auto;
margin-left: auto;
@media (min-width: 551px) {
width: 500px;
}
@media (max-width: 550px) {
width: 90%;
}
}
&::after {
@include clearfix;
}
}
.newsletter-cta__title {
font-size: 0.8rem;
letter-spacing: 0.05rem;
margin-bottom: 0.75rem;
text-transform: uppercase;
}
.newsletter-cta__input,
.newsletter-cta__submit {
@extend .__button-padding-horizontal;
border-style: solid;
border-width: 1px;
@media (max-width: 550px) {
width: 100%;
}
}
.newsletter-cta__input {
background-color: $white;
font-size: 1rem;
height: 38px;
transition: border 0.2s;
@media (min-width: 551px) {
float: left;
width: calc(100% - 112px);
}
@media (max-width: 550px) {
text-align: center;
}
&:not(:focus) {
border-top-color: $black;
border-left-color: $black;
@media (min-width: 551px) {
border-bottom-color: $black;
border-right-color: transparent;
}
@media (max-width: 550px) {
border-bottom-color: transparent;
border-right-color: $black;
}
}
&:focus {
border-top-color: mix($black, $teal, 20%);
border-left-color: mix($black, $teal, 20%);
@media (min-width: 551px) {
border-bottom-color: mix($black, $teal, 20%);
border-right-color: transparent;
}
@media (max-width: 550px) {
border-bottom-color: transparent;
border-right-color: mix($black, $teal, 20%);
}
}
}
.newsletter-cta__submit {
@extend .__button-basic;
@extend .__button-padding-vertical;
color: $white;
@media (min-width: 551px) {
float: right;
left: -1px;
width: 112px;
}
@media (max-width: 550px) {
display: block;
top: -1px;
}
&:not(:hover) {
background-color: $black;
border-color: $black;
}
&:hover {
background-color: $teal;
border-color: mix($black, $teal, 20%);
}
}
.newsletter-cta__message {
@include clearfix;
color: $red;
padding-top: 1rem;
}
</style>