mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 16:23:16 +00:00
Merge pull request #1519 from pixelfed/frontend-ui-refactor
Update CollectionCompose.vue component
This commit is contained in:
commit
7e1f1b20f4
3 changed files with 8 additions and 1 deletions
BIN
public/js/collectioncompose.js
vendored
BIN
public/js/collectioncompose.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -30,7 +30,8 @@
|
||||||
</form>
|
</form>
|
||||||
<hr>
|
<hr>
|
||||||
<p>
|
<p>
|
||||||
<button type="button" class="btn btn-primary font-weight-bold btn-block" @click="publish">Publish</button>
|
<button v-if="posts.length > 0" type="button" class="btn btn-primary font-weight-bold btn-block" @click="publish">Publish</button>
|
||||||
|
<button v-else type="button" class="btn btn-primary font-weight-bold btn-block disabled" disabled>Publish</button>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<button type="button" class="btn btn-outline-primary font-weight-bold btn-block" @click="save">Save</button>
|
<button type="button" class="btn btn-outline-primary font-weight-bold btn-block" @click="save">Save</button>
|
||||||
|
@ -221,6 +222,10 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
publish() {
|
publish() {
|
||||||
|
if(this.posts.length == 0) {
|
||||||
|
swal('Error', 'You cannot publish an empty collection');
|
||||||
|
return;
|
||||||
|
}
|
||||||
axios.post('/api/local/collection/' + this.collectionId + '/publish', {
|
axios.post('/api/local/collection/' + this.collectionId + '/publish', {
|
||||||
title: this.collection.title,
|
title: this.collection.title,
|
||||||
description: this.collection.description,
|
description: this.collection.description,
|
||||||
|
@ -228,6 +233,8 @@ export default {
|
||||||
})
|
})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
window.location.href = res.data;
|
window.location.href = res.data;
|
||||||
|
}).catch(err => {
|
||||||
|
swal('Something went wrong', 'There was a problem with your request, please try again later.', 'error');
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue