mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Factor out the logic to delete an ImagePack
This commit is contained in:
parent
021eed8388
commit
e8b9d92e8e
2 changed files with 19 additions and 12 deletions
|
@ -285,18 +285,7 @@ SingleImagePackModel::save()
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if (old_statekey_ != statekey_) {
|
if (old_statekey_ != statekey_) {
|
||||||
http::client()->send_state_event(
|
this->remove();
|
||||||
roomid_,
|
|
||||||
to_string(mtx::events::EventType::ImagePackInRoom),
|
|
||||||
old_statekey_,
|
|
||||||
nlohmann::json::object(),
|
|
||||||
[](const mtx::responses::EventId &, mtx::http::RequestErr e) {
|
|
||||||
if (e)
|
|
||||||
ChatPage::instance()->showNotification(
|
|
||||||
tr("Failed to delete old image pack: %1")
|
|
||||||
.arg(QString::fromStdString(e->matrix_error.error)));
|
|
||||||
});
|
|
||||||
old_statekey_ = statekey_;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
http::client()->send_state_event(
|
http::client()->send_state_event(
|
||||||
|
@ -314,6 +303,23 @@ SingleImagePackModel::save()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SingleImagePackModel::remove()
|
||||||
|
{
|
||||||
|
http::client()->send_state_event(
|
||||||
|
roomid_,
|
||||||
|
to_string(mtx::events::EventType::ImagePackInRoom),
|
||||||
|
old_statekey_,
|
||||||
|
nlohmann::json::object(),
|
||||||
|
[](const mtx::responses::EventId &, mtx::http::RequestErr e) {
|
||||||
|
if (e)
|
||||||
|
ChatPage::instance()->showNotification(
|
||||||
|
tr("Failed to delete old image pack: %1")
|
||||||
|
.arg(QString::fromStdString(e->matrix_error.error)));
|
||||||
|
});
|
||||||
|
old_statekey_ = statekey_;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SingleImagePackModel::addStickers(QList<QUrl> files)
|
SingleImagePackModel::addStickers(QList<QUrl> files)
|
||||||
{
|
{
|
||||||
|
|
|
@ -70,6 +70,7 @@ public:
|
||||||
void setIsEmotePack(bool val);
|
void setIsEmotePack(bool val);
|
||||||
|
|
||||||
Q_INVOKABLE void save();
|
Q_INVOKABLE void save();
|
||||||
|
Q_INVOKABLE void remove();
|
||||||
Q_INVOKABLE void addStickers(QList<QUrl> files);
|
Q_INVOKABLE void addStickers(QList<QUrl> files);
|
||||||
Q_INVOKABLE void remove(int index);
|
Q_INVOKABLE void remove(int index);
|
||||||
Q_INVOKABLE void setAvatar(QUrl file);
|
Q_INVOKABLE void setAvatar(QUrl file);
|
||||||
|
|
Loading…
Reference in a new issue