forked from mirror/pixelfed
Update AccountImport, add select first 100 posts button
This commit is contained in:
parent
2d959fb354
commit
625a76a51d
1 changed files with 16 additions and 0 deletions
|
@ -105,6 +105,9 @@
|
||||||
<p class="small text-muted mb-0">Tap on posts to include them in your import.</p>
|
<p class="small text-muted mb-0">Tap on posts to include them in your import.</p>
|
||||||
</div>
|
</div>
|
||||||
<p v-else class="lead mb-0"><span class="font-weight-bold">{{ selectedPostsCounter }}</span> posts selected for import</p>
|
<p v-else class="lead mb-0"><span class="font-weight-bold">{{ selectedPostsCounter }}</span> posts selected for import</p>
|
||||||
|
|
||||||
|
<button v-if="selectedMedia.length" class="btn btn-outline-danger font-weight-bold rounded-pill btn-sm my-1" @click="handleClearAll()">Clear all selected</button>
|
||||||
|
<button v-else class="btn btn-outline-primary font-weight-bold rounded-pill" @click="handleSelectAll()">Select first 100 posts</button>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section class="row mb-n5 media-selector" style="max-height: 600px;overflow-y: auto;">
|
<section class="row mb-n5 media-selector" style="max-height: 600px;overflow-y: auto;">
|
||||||
|
@ -590,6 +593,19 @@
|
||||||
window.location.href = '/site/contact'
|
window.location.href = '/site/contact'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSelectAll() {
|
||||||
|
let medias = this.postMeta.slice(0, 100);
|
||||||
|
for (var i = medias.length - 1; i >= 0; i--) {
|
||||||
|
let m = medias[i];
|
||||||
|
this.toggleSelectedPost(m);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClearAll() {
|
||||||
|
this.selectedMedia = []
|
||||||
|
this.selectedPostsCounter = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue