first time worked

This commit is contained in:
bob.rao
2023-04-21 12:33:49 +08:00
parent c766e8808c
commit a582bd1120
12 changed files with 209 additions and 859 deletions

127
bulkDeleteConversations.js Normal file
View File

@@ -0,0 +1,127 @@
async function bulkDeleteConversations() {
const conversationCheckboxes = document.querySelectorAll('.conversation-checkbox:checked');
const checkedIndexes = Array.from(conversationCheckboxes).map(checkbox => parseInt(checkbox.dataset.index));
if (checkedIndexes.length === 0) {
console.log("No conversations to delete.");
// Remove all checkboxes
const removeConversationCheckboxes = document.querySelectorAll('.conversation-checkbox');
removeConversationCheckboxes.forEach(checkbox => {
checkbox.remove();
});
return;
}
const waitForElement = (selector, timeout = 5000) => {
return new Promise((resolve, reject) => {
const element = document.querySelector(selector);
if (element) {
resolve(element);
}
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (!mutation.addedNodes) return;
for (const node of mutation.addedNodes) {
if (node.matches && node.matches(selector)) {
observer.disconnect();
resolve(node);
return;
}
}
});
});
setTimeout(() => {
observer.disconnect();
reject(new Error('Element not found.'));
}, timeout);
observer.observe(document.body, {
childList: true,
subtree: true
});
});
};
console.log("开始删除...")
const checkbox = conversationCheckboxes[0];
const currentIndex = parseInt(checkbox.dataset.index);
console.log("currentIndex:", currentIndex);
const conversationElement = checkbox.closest('.flex.py-3.px-3.items-center.gap-3.relative.rounded-md');
conversationElement.click(); // Click the conversation first
await new Promise(resolve => setTimeout(resolve, 500)); // Add a delay of 0.5 second
const deleteButton = document.querySelector('.absolute.flex.right-1.z-10.text-gray-300.visible button:nth-child(2)'); // Updated delete button selector
if (deleteButton) {
console.log("点击删除按钮...")
deleteButton.click(); // Click the delete button
await waitForElement('.absolute.flex.right-1.z-10.text-gray-300.visible');
const buttonsContainer = document.querySelector('.absolute.flex.right-1.z-10.text-gray-300.visible');
const confirmButton = buttonsContainer.querySelector('button:nth-child(1)'); // Get the first button as confirm button
if (confirmButton) {
console.log("点击确认按钮...")
confirmButton.click();
await new Promise(resolve => setTimeout(resolve, 1000)); // Add a delay of 1 second
}
}
console.log("delete done")
// 在这里删除当前选中的对话的索引
console.log("删除当前选中的对话的索引...")
console.log("checkedIndexes before splice", checkedIndexes);
const indexToRemove = checkedIndexes.indexOf(currentIndex);
if (indexToRemove > -1) {
checkedIndexes.splice(indexToRemove, 1);
}
console.log("checkedIndexes after splice", checkedIndexes);
// 更新剩余对话的索引
console.log("更新剩余对话的索引...")
for (let j = 0; j < checkedIndexes.length; j++) {
if (checkedIndexes[j] > currentIndex) {
checkedIndexes[j]--;
}
}
console.log("checkedIndexes after update index", checkedIndexes);
// Wait for 1 second before deleting the next conversation
await new Promise(resolve => setTimeout(resolve, 1000));
// 重新添加复选框并设置它们的状态
console.log("重新添加复选框并设置它们的状态...")
await addCheckboxesWithState(checkedIndexes);
console.log("递归调用 bulkDeleteConversations...")
bulkDeleteConversations();
}
async function addCheckboxesWithState(checkedIndexes) {
// 在这里重新添加复选框
const conversations = document.querySelectorAll('.flex.py-3.px-3.items-center.gap-3.relative.rounded-md.hover\\:bg-\\[\\#2A2B32\\].cursor-pointer.break-all.hover\\:pr-4.group');
conversations.forEach((conversation, index) => {
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.className = 'conversation-checkbox';
checkbox.dataset.index = index;
if (checkedIndexes.includes(index)) {
checkbox.checked = true;
}
conversation.insertAdjacentElement('afterbegin', checkbox);
});
// Update data-index attributes for remaining checkboxes
const remainingCheckboxes = document.querySelectorAll('.conversation-checkbox');
for (let i = 0; i < remainingCheckboxes.length; i++) {
remainingCheckboxes[i].dataset.index = i;
}
}
bulkDeleteConversations();