Alerts
This commit is contained in:
parent
6b38183f05
commit
38e0f3ae49
@ -9,9 +9,8 @@
|
|||||||
<i id="sub-identifi" class="fa fa-bell-o bell" aria-hidden="true"></i>
|
<i id="sub-identifi" class="fa fa-bell-o bell" aria-hidden="true"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-cloak>
|
<Notification />
|
||||||
<GamesList />
|
<GamesList />
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -35,6 +34,7 @@ body {
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import GamesList from "./components/GamesList.vue";
|
import GamesList from "./components/GamesList.vue";
|
||||||
|
import Notification from "./components/Notification.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "App",
|
name: "App",
|
||||||
@ -45,7 +45,8 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
GamesList
|
GamesList,
|
||||||
|
Notification
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
41
src/components/Notification.vue
Normal file
41
src/components/Notification.vue
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<template>
|
||||||
|
<div v-if="noAlert">
|
||||||
|
<div class="alert" :class="alert.color" role="alert">
|
||||||
|
{{ alert.text }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from "axios";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
noAlert: true,
|
||||||
|
alert: ""
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getAlert();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getAlert() {
|
||||||
|
this.noAlert = false;
|
||||||
|
axios.get("https://api.gabenparadise.com/api/alert").then(response => {
|
||||||
|
console.log(response);
|
||||||
|
if (response.status === 200) {
|
||||||
|
if (
|
||||||
|
response.data !== undefined ||
|
||||||
|
response.data !== null ||
|
||||||
|
response.data !== ""
|
||||||
|
) {
|
||||||
|
this.alert = response.data;
|
||||||
|
this.noAlert = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user