123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <div id="toasts">
- <span v-for="toast in toasts" v-bind:class="toast.class">{{toast.text}}</span>
- </div>
- <div>
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- replace: false,
- data() {
- return {
- home: {
- visible: true
- },
- station: {
- visible: false
- },
- register: {
- email: "",
- username: "",
- password: ""
- },
- login: {
- email: "",
- password: ""
- },
- likes: [],
- dislikes: [],
- loggedIn: true,
- groups: [
- {
- id: "lu08gw56571r4497wrk9",
- name: "Official Rooms",
- rooms: [
- { id: "73qvw65746acvo8yqfr", thumbnail: "https://lh6.googleusercontent.com/-ghASz3s6yL4/AAAAAAAAAAI/AAAAAAAAALc/tFblPp2myu0/s0-c-k-no-ns/photo.jpg", name: "Country", description: "Johnny Cash - I Walk The Line", users: 10 },
- { id: "enxcysmhn1k7ld56ogvi", thumbnail: "http://66.media.tumblr.com/1734069af425e491fae7deae0a19869f/tumblr_o0i0xmIYrF1v421f2o1_1280.jpg", name: "Pop", description: "Sia - Cheap Thrills", users: 14 },
- { id: "kqa99gbva7lij05dn29", thumbnail: "http://www.youredm.com/wp-content/uploads/2014/09/taking-you-higher.jpg", name: "Chill", description: "MrSuicideSheep - Taking you higher", users: 13 },
- { id: "w19hu791iiub6wmjf9a4i", thumbnail: "http://edmsauce.wpengine.netdna-cdn.com/wp-content/uploads/2012/12/Deadmau5-album-title-goes-here.jpg", name: "EDM", description: "Deadmau5 - There Might Be Coffee", users: 13 }
- ]
- },
- {
- id: "g2b8v03xaedj8ht1emi",
- name: "Trending Rooms",
- rooms: [
- { id: "73qvw65746acvo8yqfr", thumbnail: "https://lh6.googleusercontent.com/-ghASz3s6yL4/AAAAAAAAAAI/AAAAAAAAALc/tFblPp2myu0/s0-c-k-no-ns/photo.jpg", name: "Country", description: "Johnny Cash - I Walk The Line", users: 10 },
- { id: "enxcysmhn1k7ld56ogvi", thumbnail: "http://66.media.tumblr.com/1734069af425e491fae7deae0a19869f/tumblr_o0i0xmIYrF1v421f2o1_1280.jpg", name: "Pop", description: "Sia - Cheap Thrills", users: 14 },
- { id: "kqa99gbva7lij05dn29", thumbnail: "http://www.youredm.com/wp-content/uploads/2014/09/taking-you-higher.jpg", name: "Chill", description: "MrSuicideSheep - Taking you higher", users: 13 },
- { id: "w19hu791iiub6wmjf9a4i", thumbnail: "http://edmsauce.wpengine.netdna-cdn.com/wp-content/uploads/2012/12/Deadmau5-album-title-goes-here.jpg", name: "EDM", description: "Deadmau5 - There Might Be Coffee", users: 13 }
- ]
- }
- ],
- toastCount: 0,
- toasts: []
- }
- },
- methods: {
- logout() {
- $.ajax({
- method: "GET",
- url: "/users/logout",
- dataType: "json",
- complete: function (msg) {
- alert("Logged in!");
- location.reload();
- }
- });
- },
- toast(text, duration) {
- let local = this;
- let id = local.toastCount++;
- this.toasts.push({id: id, text: text, class: "toast toast-add"});
- if (duration > 250) {
- setTimeout(function() {
- local.toasts = local.toasts.map(function(toast) {
- if (toast.id === id) {
- toast.class = "toast";
- }
- return toast;
- });
- }, 250);
- }
- setTimeout(function() {
- local.toasts = local.toasts.map(function(toast) {
- if (toast.id === id) {
- toast.class = "toast toast-remove";
- }
- return toast;
- });
- setTimeout(function() {
- local.toasts = local.toasts.filter(function(toast) {
- return toast.id !== id;
- });
- }, 250);
- }, duration);
- }
- },
- ready: function () {
- let local = this;
- local.socket = io();
- local.socket.on("ready", status => {
- local.loggedIn = status;
- local.socket.emit("/user/ratings", result => {
- if (!result.err) {
- local.likes = result.likes;
- local.dislikes = result.dislikes;
- }
- });
- });
- },
- events: {
- 'register': function() {
- console.log('registered');
- $.ajax({
- method: "POST",
- url: "/users/register",
- data: JSON.stringify({
- email: this.register.email,
- username: this.register.username,
- password: this.register.password,
- recaptcha: grecaptcha.getResponse()
- }),
- contentType: "application/json; charset=utf-8",
- dataType: "json",
- success: function (msg) {
- if (msg) console.log(msg);
- alert("Registered!");
- //do something
- },
- error: function (err) {
- if (err) console.log(err);
- alert("Not registered!");
- //do something else
- }
- });
- },
- 'login': function() {
- console.log('login');
- $.ajax({
- method: "POST",
- url: "/users/login",
- data: JSON.stringify({
- email: this.login.email,
- password: this.login.password
- }),
- contentType: "application/json; charset=utf-8",
- dataType: "json",
- success: function (msg) {
- if (msg) console.log(msg);
- alert("Logged in!");
- //do something
- },
- error: function (err) {
- if (err) console.log(err);
- alert("Not logged in!");
- //do something else
- }
- });
- }
- }
- }
- </script>
- <style lang="sass" scoped>
- #toasts {
- position: fixed;
- z-index: 100000;
- right: 5%;
- top: 10%;
- max-width: 90%;
- .toast {
- width: 100%;
- height: auto;
- padding: 10px 20px;
- border-radius: 3px;
- color: white;
- background-color: #424242;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- margin-bottom: 10px;
- font-size: 1.18em;
- font-weight: 400;
- box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
- transition: all 0.25s ease;
- }
- .toast-remove {
- opacity: 0;
- margin-top: -50px;
- }
- .toast-add {
- opacity: 0;
- margin-top: 50px;
- }
- }
- </style>
|