Skip to content

Commit 918ba1a

Browse files
authored
Merge pull request #143 from RyoichiNakai/develop
本番反映 リリース
2 parents 73a1d7e + d5d3a07 commit 918ba1a

File tree

5 files changed

+89
-8
lines changed

5 files changed

+89
-8
lines changed

components/admin/dialogs/AccountPlus.vue

+9
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,15 @@ export default {
305305
student.point,
306306
this.teachers.map((obj) => obj.id)
307307
)
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+
}
308317
createUser(student).then((result) => {
309318
if (result.statusCode === 400) {
310319
alert('以下の学生の登録に失敗しました。\nemail: ' + result.email + '\nname:' + result.name)

components/layouts/Header.vue

+16-5
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,24 @@
2929
<v-list-item-title>ようこそ、{{ userName }}さん</v-list-item-title>
3030
<v-list-item-subtitle class="grey--text">{{ userEmail }}</v-list-item-subtitle>
3131
</div>
32+
33+
<LogOutDialog :open="signOutConfirm" @close="close" />
3234
</v-app-bar>
3335
</template>
3436

3537
<script>
3638
import { mapMutations, mapGetters } from 'vuex'
39+
import LogOutDialog from './LogOutDialog'
3740
3841
export default {
3942
name: 'Header',
43+
components: {
44+
LogOutDialog,
45+
},
4046
data() {
41-
return {}
47+
return {
48+
signOutConfirm: false,
49+
}
4250
},
4351
computed: {
4452
...mapGetters({
@@ -61,16 +69,19 @@ export default {
6169
},
6270
},
6371
methods: {
72+
...mapMutations({
73+
toggle: 'drawer/toggle',
74+
}),
6475
redirectPage(path) {
6576
if (path === '/signout') {
66-
this.$store.dispatch('auth/signOut')
77+
this.signOutConfirm = true
6778
} else {
6879
this.$router.push({ path })
6980
}
7081
},
71-
...mapMutations({
72-
toggle: 'drawer/toggle',
73-
}),
82+
close(e) {
83+
this.signOutConfirm = e
84+
},
7485
},
7586
}
7687
</script>

components/layouts/LogOutDialog.vue

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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>

components/layouts/NavDrawer.vue

+13-2
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,24 @@
4646
</v-list-item>
4747
</v-list-item-group>
4848
</v-list>
49+
50+
<LogOutDialog :open="signOutConfirm" @close="signOutConfirmClose" />
4951
</v-navigation-drawer>
5052
</template>
5153

5254
<script>
5355
import { mapGetters } from 'vuex'
56+
import LogOutDialog from './LogOutDialog'
5457
5558
export default {
5659
name: 'NavDrawer',
60+
components: {
61+
LogOutDialog,
62+
},
5763
data() {
58-
return {}
64+
return {
65+
signOutConfirm: false,
66+
}
5967
},
6068
computed: {
6169
...mapGetters({
@@ -85,7 +93,7 @@ export default {
8593
methods: {
8694
redirectPage(path) {
8795
if (path === '/signout') {
88-
this.$store.dispatch('auth/signOut')
96+
this.signOutConfirm = true
8997
} else {
9098
this.$router.push({ path })
9199
}
@@ -94,6 +102,9 @@ export default {
94102
close() {
95103
this.$store.commit('drawer/close')
96104
},
105+
signOutConfirmClose(e) {
106+
this.signOutConfirm = e
107+
},
97108
},
98109
}
99110
</script>

components/layouts/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Header from './Header'
22
import NavDrawer from './NavDrawer'
3+
import LogOutDialog from './LogOutDialog'
34

4-
export { Header, NavDrawer }
5+
export { Header, NavDrawer, LogOutDialog }

0 commit comments

Comments
 (0)