-
Notifications
You must be signed in to change notification settings - Fork 847
/
Copy pathCreateTeamForm.vue
81 lines (70 loc) · 2.46 KB
/
CreateTeamForm.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<template>
<jet-form-section @submitted="createTeam">
<template #title>
Team Details
</template>
<template #description>
Create a new team to collaborate with others on projects.
</template>
<template #form>
<div class="col-span-6">
<jet-label value="Team Owner" />
<div class="flex items-center mt-2">
<img class="w-12 h-12 rounded-full" :src="$page.user.profile_photo_url" :alt="$page.user.name">
<div class="ml-4 leading-tight">
<div>{{ $page.user.name }}</div>
<div class="text-gray-700 text-sm">{{ $page.user.email }}</div>
</div>
</div>
</div>
<div class="col-span-6 sm:col-span-4">
<jet-label for="name" value="Team Name" />
<jet-input id="name" type="text" class="mt-1 block w-full" v-model="form.name" autofocus />
<jet-input-error :message="form.error('name')" class="mt-2" />
</div>
</template>
<template #actions>
<jet-action-message :on="form.recentlySuccessful" class="mr-3">
Saved.
</jet-action-message>
<jet-button :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Save
</jet-button>
</template>
</jet-form-section>
</template>
<script>
import JetActionMessage from './../../Jetstream/ActionMessage'
import JetButton from './../../Jetstream/Button'
import JetFormSection from './../../Jetstream/FormSection'
import JetInput from './../../Jetstream/Input'
import JetInputError from './../../Jetstream/InputError'
import JetLabel from './../../Jetstream/Label'
export default {
components: {
JetActionMessage,
JetButton,
JetFormSection,
JetInput,
JetInputError,
JetLabel,
},
data() {
return {
form: this.$inertia.form({
name: '',
}, {
bag: 'createTeam',
resetOnSuccess: false,
})
}
},
methods: {
createTeam() {
this.form.post('/teams', {
preserveScroll: true
});
},
},
}
</script>