File tree 3 files changed +14
-5
lines changed
src/resources/assets/js/SparkKioskNotify
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+
2
+ \. DS_Store
Original file line number Diff line number Diff line change 2
2
3
3
Adds a notification panel to your Laravel Spark Kiosk, allowing you to send notifications to users.
4
4
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
+
5
12
## Vue 1.x
6
13
If you are using Vue 1.x please use the 1.0.5 release. The 2.x release is updated for Vue 2.x
7
14
@@ -35,11 +42,11 @@ In order to install the Spark Kiosk Notifications Package into your Spark applic
35
42
36
43
** 4. Add the javascript components to your bootstrap.js file**
37
44
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.
39
46
40
47
** 5. Compile the Javascript components**
41
48
42
- ` gulp `
49
+ ` npm run dev `
43
50
44
51
** 6. Add the HTML snippets**
45
52
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Vue.component('spark-kiosk-notify', {
19
19
* Get all of the announcements.
20
20
*/
21
21
getNotifications : function ( ) {
22
- this . $http . get ( '/skn/notifications' )
22
+ axios . get ( '/skn/notifications' )
23
23
. then ( response => {
24
24
this . notifications = response . data ;
25
25
} ) ;
@@ -29,7 +29,7 @@ Vue.component('spark-kiosk-notify', {
29
29
* Get all of the users.
30
30
*/
31
31
getUsers : function ( ) {
32
- this . $http . get ( '/skn/users' )
32
+ axios . get ( '/skn/users' )
33
33
. then ( response => {
34
34
this . users = response . data ;
35
35
} ) ;
@@ -39,7 +39,7 @@ Vue.component('spark-kiosk-notify', {
39
39
* Create Notification.
40
40
*/
41
41
createNotification : function ( ) {
42
- this . $http . post ( '/skn/notifications/create' , this . newNotification )
42
+ axios . post ( '/skn/notifications/create' , this . newNotification )
43
43
. then ( response => {
44
44
this . newNotification = { } ;
45
45
this . getNotifications ( ) ;
You can’t perform that action at this time.
0 commit comments