Skip to content

Commit 218bac5

Browse files
committed
update for spark 4.x / axios
1 parent add5e39 commit 218bac5

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
\.DS_Store

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
Adds a notification panel to your Laravel Spark Kiosk, allowing you to send notifications to users.
44

5+
## Spark 4.x
6+
Spark 4.0 replaced vue-resource for axios. The 2.1 release has been updated to use axios.
7+
8+
If you are upgrading to Spark 4.0 you will need to remove the spark-kiosk-notify.js file and republish the resources.
9+
10+
Please note the path was updated as well.
11+
512
## Vue 1.x
613
If you are using Vue 1.x please use the 1.0.5 release. The 2.x release is updated for Vue 2.x
714

@@ -35,11 +42,11 @@ In order to install the Spark Kiosk Notifications Package into your Spark applic
3542

3643
**4. Add the javascript components to your bootstrap.js file**
3744

38-
Add `require('./SparkKioskNotify/spark-kiosk-notify.js');` to your `resources/assets/js/components/bootstrap.js` file.
45+
Add `require('./components/SparkKioskNotify/spark-kiosk-notify');` to your `resources/assets/js/components/app.js` file.
3946

4047
**5. Compile the Javascript components**
4148

42-
`gulp`
49+
`npm run dev`
4350

4451
**6. Add the HTML snippets**
4552

src/resources/assets/js/SparkKioskNotify/spark-kiosk-notify.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Vue.component('spark-kiosk-notify', {
1919
* Get all of the announcements.
2020
*/
2121
getNotifications: function(){
22-
this.$http.get('/skn/notifications')
22+
axios.get('/skn/notifications')
2323
.then(response => {
2424
this.notifications = response.data;
2525
});
@@ -29,7 +29,7 @@ Vue.component('spark-kiosk-notify', {
2929
* Get all of the users.
3030
*/
3131
getUsers: function(){
32-
this.$http.get('/skn/users')
32+
axios.get('/skn/users')
3333
.then(response => {
3434
this.users = response.data;
3535
});
@@ -39,7 +39,7 @@ Vue.component('spark-kiosk-notify', {
3939
* Create Notification.
4040
*/
4141
createNotification: function(){
42-
this.$http.post('/skn/notifications/create', this.newNotification)
42+
axios.post('/skn/notifications/create', this.newNotification)
4343
.then(response => {
4444
this.newNotification = {};
4545
this.getNotifications();

0 commit comments

Comments
 (0)