Browse Source

Enable changing album options

Pitu 6 years ago
parent
commit
b75023114a
2 changed files with 27 additions and 2 deletions
  1. 4 0
      src/site/styles/style.scss
  2. 23 2
      src/site/views/dashboard/Albums.vue

+ 4 - 0
src/site/styles/style.scss

@@ -175,3 +175,7 @@ section#register a.is-text {
 	font-size: 1.25em;
 	line-height: 2.5em;
 }
+
+.modal-card-head, .modal-card-foot {
+	background: $backgroundLight1;
+}

+ 23 - 2
src/site/views/dashboard/Albums.vue

@@ -226,21 +226,29 @@
 											<b-table-column field="enableDownload"
 												label="Allow download"
 												centered>
-												<b-switch :value="props.row.enableDownload "/>
+												<b-switch v-model="props.row.enableDownload"
+													@input="linkOptionsChanged(props.row)"/>
 											</b-table-column>
 
 											<b-table-column field="enabled"
 												label="Enabled"
 												centered>
-												<b-switch :value="props.row.enabled "/>
+												<b-switch v-model="props.row.enabled"
+													@input="linkOptionsChanged(props.row)"/>
 											</b-table-column>
 
+											<!--
+												Until it's decided if we want to delete links or just hide them from the list
+												this setting will be hidden. Discussion about it is encouraged on Discord.
+											-->
+											<!--
 											<b-table-column field="actions"
 												label="Actions"
 												centered>
 												<button class="button is-danger"
 													@click="deleteLink(props.row.identifier)">Delete link</button>
 											</b-table-column>
+											-->
 										</template>
 										<template slot="empty">
 											<div class="has-text-centered">
@@ -303,6 +311,19 @@ export default {
 		});
 	},
 	methods: {
+		async linkOptionsChanged(link) {
+			try {
+				const response = await this.axios.post(`${this.$config.baseURL}/album/link/edit`,
+					{
+						identifier: link.identifier,
+						enableDownload: link.enableDownload,
+						enabled: link.enabled
+					});
+				this.$toast.open(response.data.message);
+			} catch (error) {
+				this.$onPromiseError(error);
+			}
+		},
 		async createLink(album) {
 			album.isCreatingLink = true;
 			try {