First round of improvements to channel management:

- use modals
- less proeminent button
- field styling/labels
This commit is contained in:
Eliot Berriot 2020-02-23 15:31:03 +01:00
commit e59cc33378
103 changed files with 3201 additions and 447 deletions

View file

@ -0,0 +1,48 @@
<template>
<modal class="small" :show.sync="show">
<div class="header">
<translate key="1" v-if="channel.content_category === 'podcasts'" translate-context="Popup/Channels/Title/Verb">New serie</translate>
<translate key="2" v-else translate-context="Popup/Channels/Title">New album</translate>
</div>
<div class="scrolling content">
<channel-album-form
ref="albumForm"
@loading="isLoading = $event"
@submittable="submittable = $event"
@created="$emit('created', $event)"
:channel="channel"></channel-album-form>
</div>
<div class="actions">
<button class="ui basic cancel button"><translate translate-context="*/*/Button.Label/Verb">Cancel</translate></button>
<button :class="['ui', 'primary', {loading: isLoading}, 'button']" :disabled="!submittable" @click.stop.prevent="$refs.albumForm.submit()">
<translate translate-context="*/*/Button.Label">Create</translate>
</button>
</div>
</modal>
</template>
<script>
import Modal from '@/components/semantic/Modal'
import ChannelAlbumForm from '@/components/channels/AlbumForm'
export default {
props: ['channel'],
components: {
Modal,
ChannelAlbumForm
},
data () {
return {
isLoading: false,
submittable: false,
show: false,
}
},
watch: {
show () {
this.isLoading = false
this.submittable = false
}
}
}
</script>