File tree 5 files changed +89
-8
lines changed
5 files changed +89
-8
lines changed Original file line number Diff line number Diff line change @@ -305,6 +305,15 @@ export default {
305
305
student .point ,
306
306
this .teachers .map ((obj ) => obj .id )
307
307
)
308
+ if (student .rank == null ) {
309
+ student .rank = 0
310
+ }
311
+ if (student .group == null ) {
312
+ student .group = 0
313
+ }
314
+ if (student .password == null ) {
315
+ student .password = ' '
316
+ }
308
317
createUser (student).then ((result ) => {
309
318
if (result .statusCode === 400 ) {
310
319
alert (' 以下の学生の登録に失敗しました。\n email: ' + result .email + ' \n name:' + result .name )
Original file line number Diff line number Diff line change 29
29
<v-list-item-title >ようこそ、{{ userName }}さん</v-list-item-title >
30
30
<v-list-item-subtitle class =" grey--text" >{{ userEmail }}</v-list-item-subtitle >
31
31
</div >
32
+
33
+ <LogOutDialog :open =" signOutConfirm" @close =" close" />
32
34
</v-app-bar >
33
35
</template >
34
36
35
37
<script >
36
38
import { mapMutations , mapGetters } from ' vuex'
39
+ import LogOutDialog from ' ./LogOutDialog'
37
40
38
41
export default {
39
42
name: ' Header' ,
43
+ components: {
44
+ LogOutDialog,
45
+ },
40
46
data () {
41
- return {}
47
+ return {
48
+ signOutConfirm: false ,
49
+ }
42
50
},
43
51
computed: {
44
52
... mapGetters ({
@@ -61,16 +69,19 @@ export default {
61
69
},
62
70
},
63
71
methods: {
72
+ ... mapMutations ({
73
+ toggle: ' drawer/toggle' ,
74
+ }),
64
75
redirectPage (path ) {
65
76
if (path === ' /signout' ) {
66
- this .$store . dispatch ( ' auth/signOut ' )
77
+ this .signOutConfirm = true
67
78
} else {
68
79
this .$router .push ({ path })
69
80
}
70
81
},
71
- ... mapMutations ( {
72
- toggle : ' drawer/toggle ' ,
73
- }) ,
82
+ close ( e ) {
83
+ this . signOutConfirm = e
84
+ },
74
85
},
75
86
}
76
87
</script >
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <v-dialog :value =" open" width =" 600px" @input =" close" >
3
+ <v-card >
4
+ <v-card-title >
5
+ {{ cardTitle }}
6
+ </v-card-title >
7
+
8
+ <v-card-text >
9
+ <p >{{ cardText }}</p >
10
+ </v-card-text >
11
+
12
+ <v-card-actions >
13
+ <v-spacer ></v-spacer >
14
+ <v-btn text @click =" close" > 閉じる </v-btn >
15
+ <v-btn color =" accent" text @click =" signOut" > ログアウト </v-btn >
16
+ </v-card-actions >
17
+ </v-card >
18
+ </v-dialog >
19
+ </template >
20
+
21
+ <script >
22
+ export default {
23
+ name: ' LogOutDialog' ,
24
+ props: {
25
+ open: {
26
+ type: Boolean ,
27
+ default: false ,
28
+ required: true ,
29
+ },
30
+ },
31
+ data () {
32
+ return {
33
+ cardTitle: ' ログアウトの確認' ,
34
+ cardText: ' 本当にログアウトしますか?' ,
35
+ }
36
+ },
37
+ methods: {
38
+ close () {
39
+ this .$emit (' close' , false )
40
+ },
41
+ signOut () {
42
+ this .$store .dispatch (' auth/signOut' )
43
+ this .close ()
44
+ },
45
+ },
46
+ }
47
+ </script >
48
+
49
+ <style ></style >
Original file line number Diff line number Diff line change 46
46
</v-list-item >
47
47
</v-list-item-group >
48
48
</v-list >
49
+
50
+ <LogOutDialog :open =" signOutConfirm" @close =" signOutConfirmClose" />
49
51
</v-navigation-drawer >
50
52
</template >
51
53
52
54
<script >
53
55
import { mapGetters } from ' vuex'
56
+ import LogOutDialog from ' ./LogOutDialog'
54
57
55
58
export default {
56
59
name: ' NavDrawer' ,
60
+ components: {
61
+ LogOutDialog,
62
+ },
57
63
data () {
58
- return {}
64
+ return {
65
+ signOutConfirm: false ,
66
+ }
59
67
},
60
68
computed: {
61
69
... mapGetters ({
@@ -85,7 +93,7 @@ export default {
85
93
methods: {
86
94
redirectPage (path ) {
87
95
if (path === ' /signout' ) {
88
- this .$store . dispatch ( ' auth/signOut ' )
96
+ this .signOutConfirm = true
89
97
} else {
90
98
this .$router .push ({ path })
91
99
}
@@ -94,6 +102,9 @@ export default {
94
102
close () {
95
103
this .$store .commit (' drawer/close' )
96
104
},
105
+ signOutConfirmClose (e ) {
106
+ this .signOutConfirm = e
107
+ },
97
108
},
98
109
}
99
110
</script >
Original file line number Diff line number Diff line change 1
1
import Header from './Header'
2
2
import NavDrawer from './NavDrawer'
3
+ import LogOutDialog from './LogOutDialog'
3
4
4
- export { Header , NavDrawer }
5
+ export { Header , NavDrawer , LogOutDialog }
You can’t perform that action at this time.
0 commit comments