2023-04-07 12:48:14 +03:00
|
|
|
import Component from '@glimmer/component';
|
2023-04-11 17:37:42 +03:00
|
|
|
import DeletePostsModal from './modals/delete-posts';
|
2023-04-12 12:58:46 +03:00
|
|
|
import EditPostsAccessModal from './modals/edit-posts-access';
|
2023-04-12 16:28:09 +03:00
|
|
|
import UnpublishPostsModal from './modals/unpublish-posts';
|
|
|
|
import nql from '@tryghost/nql';
|
2023-04-07 12:48:14 +03:00
|
|
|
import {action} from '@ember/object';
|
|
|
|
import {inject as service} from '@ember/service';
|
2023-04-11 17:37:42 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2023-04-07 12:48:14 +03:00
|
|
|
|
|
|
|
export default class PostsContextMenu extends Component {
|
|
|
|
@service ajax;
|
|
|
|
@service ghostPaths;
|
2023-04-11 17:32:11 +03:00
|
|
|
@service session;
|
2023-04-11 17:37:42 +03:00
|
|
|
@service infinity;
|
|
|
|
@service modals;
|
2023-04-12 12:58:46 +03:00
|
|
|
@service store;
|
2023-04-07 12:48:14 +03:00
|
|
|
|
|
|
|
get menu() {
|
|
|
|
return this.args.menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
get selectionList() {
|
|
|
|
return this.menu.selectionList;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
2023-04-11 17:37:42 +03:00
|
|
|
async deletePosts() {
|
2023-04-07 12:48:14 +03:00
|
|
|
this.menu.close();
|
2023-04-11 17:37:42 +03:00
|
|
|
await this.modals.open(DeletePostsModal, {
|
|
|
|
isSingle: this.selectionList.isSingle,
|
|
|
|
count: this.selectionList.count,
|
|
|
|
confirm: this.deletePostsTask
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-12 16:28:09 +03:00
|
|
|
@action
|
|
|
|
async unpublishPosts() {
|
|
|
|
this.menu.close();
|
|
|
|
await this.modals.open(UnpublishPostsModal, {
|
|
|
|
isSingle: this.selectionList.isSingle,
|
|
|
|
count: this.selectionList.count,
|
|
|
|
confirm: this.unpublishPostsTask
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-12 12:58:46 +03:00
|
|
|
@action
|
|
|
|
async editPostsAccess() {
|
|
|
|
this.menu.close();
|
|
|
|
await this.modals.open(EditPostsAccessModal, {
|
|
|
|
isSingle: this.selectionList.isSingle,
|
|
|
|
count: this.selectionList.count,
|
|
|
|
confirm: this.editPostsAccessTask
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-11 17:37:42 +03:00
|
|
|
@task
|
|
|
|
*deletePostsTask(close) {
|
|
|
|
const deletedModels = this.selectionList.availableModels;
|
|
|
|
yield this.performBulkDestroy();
|
|
|
|
const remainingModels = this.selectionList.infinityModel.content.filter((model) => {
|
|
|
|
return !deletedModels.includes(model);
|
|
|
|
});
|
|
|
|
// Deleteobjects method from infintiymodel is broken for all models except the first page, so we cannot use this
|
|
|
|
this.infinity.replace(this.selectionList.infinityModel, remainingModels);
|
|
|
|
this.selectionList.clearSelection();
|
|
|
|
close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-12 16:28:09 +03:00
|
|
|
@task
|
|
|
|
*unpublishPostsTask(close) {
|
|
|
|
const updatedModels = this.selectionList.availableModels;
|
|
|
|
yield this.performBulkEdit('unpublish');
|
|
|
|
|
|
|
|
// Update the models on the client side
|
|
|
|
for (const post of updatedModels) {
|
|
|
|
if (post.status === 'published' || post.status === 'sent') {
|
|
|
|
// We need to do it this way to prevent marking the model as dirty
|
|
|
|
this.store.push({
|
|
|
|
data: {
|
|
|
|
id: post.id,
|
|
|
|
type: 'post',
|
|
|
|
attributes: {
|
|
|
|
status: 'draft'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove posts that no longer match the filter
|
|
|
|
this.updateFilteredPosts();
|
|
|
|
|
|
|
|
close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateFilteredPosts() {
|
|
|
|
const updatedModels = this.selectionList.availableModels;
|
|
|
|
const filter = this.selectionList.allFilter;
|
|
|
|
const filterNql = nql(filter);
|
|
|
|
|
|
|
|
const remainingModels = this.selectionList.infinityModel.content.filter((model) => {
|
|
|
|
if (!updatedModels.find(u => u.id === model.id)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return filterNql.queryJSON(model);
|
|
|
|
});
|
|
|
|
// Deleteobjects method from infintiymodel is broken for all models except the first page, so we cannot use this
|
|
|
|
this.infinity.replace(this.selectionList.infinityModel, remainingModels);
|
|
|
|
}
|
|
|
|
|
2023-04-12 12:58:46 +03:00
|
|
|
@task
|
|
|
|
*editPostsAccessTask(close, {visibility, tiers}) {
|
|
|
|
const updatedModels = this.selectionList.availableModels;
|
|
|
|
yield this.performBulkEdit('access', {visibility, tiers});
|
|
|
|
|
|
|
|
// Update the models on the client side
|
|
|
|
for (const post of updatedModels) {
|
|
|
|
// We need to do it this way to prevent marking the model as dirty
|
|
|
|
this.store.push({
|
|
|
|
data: {
|
|
|
|
id: post.id,
|
|
|
|
type: 'post',
|
|
|
|
attributes: {
|
|
|
|
visibility
|
|
|
|
},
|
|
|
|
relationships: {
|
|
|
|
links: {
|
|
|
|
data: tiers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-12 16:28:09 +03:00
|
|
|
// Remove posts that no longer match the filter
|
|
|
|
this.updateFilteredPosts();
|
|
|
|
|
2023-04-12 12:58:46 +03:00
|
|
|
close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-11 17:37:42 +03:00
|
|
|
async performBulkDestroy() {
|
|
|
|
const filter = this.selectionList.filter;
|
|
|
|
let bulkUpdateUrl = this.ghostPaths.url.api(`posts`) + `?filter=${encodeURIComponent(filter)}`;
|
|
|
|
return await this.ajax.delete(bulkUpdateUrl);
|
2023-04-07 12:48:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async performBulkEdit(_action, meta = {}) {
|
|
|
|
const filter = this.selectionList.filter;
|
|
|
|
let bulkUpdateUrl = this.ghostPaths.url.api(`posts/bulk`) + `?filter=${encodeURIComponent(filter)}`;
|
|
|
|
return await this.ajax.put(bulkUpdateUrl, {
|
|
|
|
data: {
|
|
|
|
bulk: {
|
|
|
|
action: _action,
|
|
|
|
meta
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
get shouldFeatureSelection() {
|
|
|
|
const firstPost = this.selectionList.availableModels[0];
|
|
|
|
if (!firstPost) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return !firstPost.featured;
|
|
|
|
}
|
|
|
|
|
2023-04-11 09:25:49 +03:00
|
|
|
get canFeatureSelection() {
|
|
|
|
if (!this.selectionList.isSingle) {
|
|
|
|
return true;
|
|
|
|
}
|
2023-04-12 16:28:09 +03:00
|
|
|
return this.selectionList.availableModels[0]?.get('status') !== 'sent';
|
|
|
|
}
|
|
|
|
|
|
|
|
get canUnpublishSelection() {
|
|
|
|
for (const m of this.selectionList.availableModels) {
|
|
|
|
if (['published', 'sent'].includes(m.status)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2023-04-11 09:25:49 +03:00
|
|
|
}
|
|
|
|
|
2023-04-07 12:48:14 +03:00
|
|
|
@action
|
|
|
|
async featurePosts() {
|
|
|
|
const updatedModels = this.selectionList.availableModels;
|
|
|
|
await this.performBulkEdit('feature');
|
|
|
|
|
|
|
|
// Update the models on the client side
|
|
|
|
for (const post of updatedModels) {
|
2023-04-12 12:58:46 +03:00
|
|
|
// We need to do it this way to prevent marking the model as dirty
|
|
|
|
this.store.push({
|
|
|
|
data: {
|
|
|
|
id: post.id,
|
|
|
|
type: 'post',
|
|
|
|
attributes: {
|
|
|
|
featured: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-04-07 12:48:14 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 16:28:09 +03:00
|
|
|
// Remove posts that no longer match the filter
|
|
|
|
this.updateFilteredPosts();
|
|
|
|
|
2023-04-07 12:48:14 +03:00
|
|
|
// Close the menu
|
|
|
|
this.menu.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
async unfeaturePosts() {
|
|
|
|
const updatedModels = this.selectionList.availableModels;
|
|
|
|
await this.performBulkEdit('unfeature');
|
|
|
|
|
|
|
|
// Update the models on the client side
|
|
|
|
for (const post of updatedModels) {
|
2023-04-12 12:58:46 +03:00
|
|
|
// We need to do it this way to prevent marking the model as dirty
|
|
|
|
this.store.push({
|
|
|
|
data: {
|
|
|
|
id: post.id,
|
|
|
|
type: 'post',
|
|
|
|
attributes: {
|
|
|
|
featured: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-04-07 12:48:14 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 16:28:09 +03:00
|
|
|
// Remove posts that no longer match the filter
|
|
|
|
this.updateFilteredPosts();
|
|
|
|
|
2023-04-07 12:48:14 +03:00
|
|
|
// Close the menu
|
|
|
|
this.menu.close();
|
|
|
|
}
|
|
|
|
}
|