mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Move command calculation logic into InputBar
This commit is contained in:
parent
b6ef00b5ee
commit
22ac5d861e
5 changed files with 91 additions and 95 deletions
|
@ -159,17 +159,8 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
MessageInputWarning {
|
MessageInputWarning {
|
||||||
text: qsTr("The command /%1 is not recognized and will be sent as part of your message").arg(Nheko.getCommandFromText(input.text))
|
text: qsTr("The command /%1 is not recognized and will be sent as part of your message").arg(room ? room.input.currentCommand : "")
|
||||||
isVisible: {
|
isVisible: room ? room.input.containsInvalidCommand : false
|
||||||
if (!input.text)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
let command = Nheko.getCommandFromText(input.text);
|
|
||||||
if (Nheko.isInvalidCommand(command) && ("/" + command !== input.text))
|
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ReplyPopup {
|
ReplyPopup {
|
||||||
|
|
|
@ -224,8 +224,9 @@ InputBar::insertMimeData(const QMimeData *md)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
InputBar::updateAtRoom(const QString &t)
|
InputBar::updateTextContentProperties(const QString &t)
|
||||||
{
|
{
|
||||||
|
// check for @room
|
||||||
bool roomMention = false;
|
bool roomMention = false;
|
||||||
|
|
||||||
if (t.size() > 4) {
|
if (t.size() > 4) {
|
||||||
|
@ -249,6 +250,54 @@ InputBar::updateAtRoom(const QString &t)
|
||||||
this->containsAtRoom_ = roomMention;
|
this->containsAtRoom_ = roomMention;
|
||||||
emit containsAtRoomChanged();
|
emit containsAtRoomChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check for invalid commands
|
||||||
|
auto commandName = getCommandAndArgs().first;
|
||||||
|
bool hasInvalidCommand{};
|
||||||
|
if (!commandName.isNull() && '/' + commandName != text()) {
|
||||||
|
static const QStringList validCommands{QStringLiteral("me"),
|
||||||
|
QStringLiteral("react"),
|
||||||
|
QStringLiteral("join"),
|
||||||
|
QStringLiteral("knock"),
|
||||||
|
QStringLiteral("part"),
|
||||||
|
QStringLiteral("leave"),
|
||||||
|
QStringLiteral("invite"),
|
||||||
|
QStringLiteral("kick"),
|
||||||
|
QStringLiteral("ban"),
|
||||||
|
QStringLiteral("unban"),
|
||||||
|
QStringLiteral("redact"),
|
||||||
|
QStringLiteral("roomnick"),
|
||||||
|
QStringLiteral("shrug"),
|
||||||
|
QStringLiteral("fliptable"),
|
||||||
|
QStringLiteral("unfliptable"),
|
||||||
|
QStringLiteral("sovietflip"),
|
||||||
|
QStringLiteral("clear-timeline"),
|
||||||
|
QStringLiteral("reset-state"),
|
||||||
|
QStringLiteral("rotate-megolm-session"),
|
||||||
|
QStringLiteral("md"),
|
||||||
|
QStringLiteral("cmark"),
|
||||||
|
QStringLiteral("plain"),
|
||||||
|
QStringLiteral("rainbow"),
|
||||||
|
QStringLiteral("rainbowme"),
|
||||||
|
QStringLiteral("notice"),
|
||||||
|
QStringLiteral("rainbownotice"),
|
||||||
|
QStringLiteral("confetti"),
|
||||||
|
QStringLiteral("rainbowconfetti"),
|
||||||
|
QStringLiteral("goto"),
|
||||||
|
QStringLiteral("converttodm"),
|
||||||
|
QStringLiteral("converttoroom")};
|
||||||
|
hasInvalidCommand = !validCommands.contains(commandName);
|
||||||
|
} else
|
||||||
|
hasInvalidCommand = false;
|
||||||
|
|
||||||
|
if (containsInvalidCommand_ != hasInvalidCommand) {
|
||||||
|
containsInvalidCommand_ = hasInvalidCommand;
|
||||||
|
emit containsInvalidCommandChanged();
|
||||||
|
}
|
||||||
|
if (currentCommand_ != commandName) {
|
||||||
|
currentCommand_ = commandName;
|
||||||
|
emit currentCommandChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -263,7 +312,7 @@ InputBar::setText(const QString &newText)
|
||||||
if (history_.size() == INPUT_HISTORY_SIZE)
|
if (history_.size() == INPUT_HISTORY_SIZE)
|
||||||
history_.pop_back();
|
history_.pop_back();
|
||||||
|
|
||||||
updateAtRoom(QLatin1String(""));
|
updateTextContentProperties(QLatin1String(""));
|
||||||
emit textChanged(newText);
|
emit textChanged(newText);
|
||||||
}
|
}
|
||||||
void
|
void
|
||||||
|
@ -284,7 +333,7 @@ InputBar::updateState(int selectionStart_,
|
||||||
history_.front() = text_;
|
history_.front() = text_;
|
||||||
history_index_ = 0;
|
history_index_ = 0;
|
||||||
|
|
||||||
updateAtRoom(text_);
|
updateTextContentProperties(text_);
|
||||||
// disabled, as it moves the cursor to the end
|
// disabled, as it moves the cursor to the end
|
||||||
// emit textChanged(text_);
|
// emit textChanged(text_);
|
||||||
}
|
}
|
||||||
|
@ -312,7 +361,7 @@ InputBar::previousText()
|
||||||
else if (text().isEmpty())
|
else if (text().isEmpty())
|
||||||
history_index_--;
|
history_index_--;
|
||||||
|
|
||||||
updateAtRoom(text());
|
updateTextContentProperties(text());
|
||||||
return text();
|
return text();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -323,7 +372,7 @@ InputBar::nextText()
|
||||||
if (history_index_ >= INPUT_HISTORY_SIZE)
|
if (history_index_ >= INPUT_HISTORY_SIZE)
|
||||||
history_index_ = 0;
|
history_index_ = 0;
|
||||||
|
|
||||||
updateAtRoom(text());
|
updateTextContentProperties(text());
|
||||||
return text();
|
return text();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -341,20 +390,11 @@ InputBar::send()
|
||||||
|
|
||||||
auto wasEdit = !room->edit().isEmpty();
|
auto wasEdit = !room->edit().isEmpty();
|
||||||
|
|
||||||
if (text().startsWith('/')) {
|
auto [commandName, args] = getCommandAndArgs();
|
||||||
int command_end = text().indexOf(QRegularExpression(QStringLiteral("\\s")));
|
if (commandName.isNull())
|
||||||
if (command_end == -1)
|
|
||||||
command_end = text().size();
|
|
||||||
auto name = text().mid(1, command_end - 1);
|
|
||||||
auto args = text().mid(command_end + 1);
|
|
||||||
if (name.isEmpty() || name == QLatin1String("/")) {
|
|
||||||
message(args);
|
|
||||||
} else {
|
|
||||||
command(name, args);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
message(text());
|
message(text());
|
||||||
}
|
else
|
||||||
|
command(commandName, args);
|
||||||
|
|
||||||
if (!wasEdit) {
|
if (!wasEdit) {
|
||||||
history_.push_front(QLatin1String(""));
|
history_.push_front(QLatin1String(""));
|
||||||
|
@ -716,6 +756,24 @@ InputBar::video(const QString &filename,
|
||||||
room->sendMessageEvent(video, mtx::events::EventType::RoomMessage);
|
room->sendMessageEvent(video, mtx::events::EventType::RoomMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QPair<QString, QString>
|
||||||
|
InputBar::getCommandAndArgs() const
|
||||||
|
{
|
||||||
|
if (!text().startsWith('/'))
|
||||||
|
return {{}, text()};
|
||||||
|
|
||||||
|
int command_end = text().indexOf(QRegularExpression(QStringLiteral("\\s")));
|
||||||
|
if (command_end == -1)
|
||||||
|
command_end = text().size();
|
||||||
|
auto name = text().mid(1, command_end - 1);
|
||||||
|
auto args = text().mid(command_end + 1);
|
||||||
|
if (name.isEmpty() || name == QLatin1String("/")) {
|
||||||
|
return {{}, text()};
|
||||||
|
} else {
|
||||||
|
return {name, args};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
InputBar::sticker(CombinedImagePackModel *model, int row)
|
InputBar::sticker(CombinedImagePackModel *model, int row)
|
||||||
{
|
{
|
||||||
|
|
|
@ -173,6 +173,9 @@ class InputBar final : public QObject
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(bool uploading READ uploading NOTIFY uploadingChanged)
|
Q_PROPERTY(bool uploading READ uploading NOTIFY uploadingChanged)
|
||||||
Q_PROPERTY(bool containsAtRoom READ containsAtRoom NOTIFY containsAtRoomChanged)
|
Q_PROPERTY(bool containsAtRoom READ containsAtRoom NOTIFY containsAtRoomChanged)
|
||||||
|
Q_PROPERTY(
|
||||||
|
bool containsInvalidCommand READ containsInvalidCommand NOTIFY containsInvalidCommandChanged)
|
||||||
|
Q_PROPERTY(QString currentCommand READ currentCommand NOTIFY currentCommandChanged)
|
||||||
Q_PROPERTY(QString text READ text NOTIFY textChanged)
|
Q_PROPERTY(QString text READ text NOTIFY textChanged)
|
||||||
Q_PROPERTY(QVariantList uploads READ uploads NOTIFY uploadsChanged)
|
Q_PROPERTY(QVariantList uploads READ uploads NOTIFY uploadsChanged)
|
||||||
|
|
||||||
|
@ -198,6 +201,8 @@ public slots:
|
||||||
void setText(const QString &newText);
|
void setText(const QString &newText);
|
||||||
|
|
||||||
[[nodiscard]] bool containsAtRoom() const { return containsAtRoom_; }
|
[[nodiscard]] bool containsAtRoom() const { return containsAtRoom_; }
|
||||||
|
bool containsInvalidCommand() const { return containsInvalidCommand_; }
|
||||||
|
QString currentCommand() const { return currentCommand_; }
|
||||||
|
|
||||||
void send();
|
void send();
|
||||||
bool tryPasteAttachment(bool fromMouse);
|
bool tryPasteAttachment(bool fromMouse);
|
||||||
|
@ -225,6 +230,8 @@ signals:
|
||||||
void textChanged(QString newText);
|
void textChanged(QString newText);
|
||||||
void uploadingChanged(bool value);
|
void uploadingChanged(bool value);
|
||||||
void containsAtRoomChanged();
|
void containsAtRoomChanged();
|
||||||
|
void containsInvalidCommandChanged();
|
||||||
|
void currentCommandChanged();
|
||||||
void uploadsChanged();
|
void uploadsChanged();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -267,6 +274,7 @@ private:
|
||||||
const QSize &thumbnailDimensions,
|
const QSize &thumbnailDimensions,
|
||||||
const QString &blurhash);
|
const QString &blurhash);
|
||||||
|
|
||||||
|
QPair<QString, QString> getCommandAndArgs() const;
|
||||||
mtx::common::Relations generateRelations() const;
|
mtx::common::Relations generateRelations() const;
|
||||||
|
|
||||||
void startUploadFromPath(const QString &path);
|
void startUploadFromPath(const QString &path);
|
||||||
|
@ -280,7 +288,7 @@ private:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void updateAtRoom(const QString &t);
|
void updateTextContentProperties(const QString &t);
|
||||||
|
|
||||||
QTimer typingRefresh_;
|
QTimer typingRefresh_;
|
||||||
QTimer typingTimeout_;
|
QTimer typingTimeout_;
|
||||||
|
@ -290,6 +298,8 @@ private:
|
||||||
int selectionStart = 0, selectionEnd = 0, cursorPosition = 0;
|
int selectionStart = 0, selectionEnd = 0, cursorPosition = 0;
|
||||||
bool uploading_ = false;
|
bool uploading_ = false;
|
||||||
bool containsAtRoom_ = false;
|
bool containsAtRoom_ = false;
|
||||||
|
bool containsInvalidCommand_ = false;
|
||||||
|
QString currentCommand_;
|
||||||
|
|
||||||
using UploadHandle = std::unique_ptr<MediaUpload, DeleteLaterDeleter>;
|
using UploadHandle = std::unique_ptr<MediaUpload, DeleteLaterDeleter>;
|
||||||
std::vector<UploadHandle> unconfirmedUploads;
|
std::vector<UploadHandle> unconfirmedUploads;
|
||||||
|
|
|
@ -190,63 +190,3 @@ Nheko::setWindowRole([[maybe_unused]] QWindow *win, [[maybe_unused]] QString new
|
||||||
QXcbWindowFunctions::setWmWindowRole(win, newRole.toUtf8());
|
QXcbWindowFunctions::setWmWindowRole(win, newRole.toUtf8());
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
QString
|
|
||||||
Nheko::getCommandFromText(const QString &text)
|
|
||||||
{
|
|
||||||
if (text.startsWith('/')) {
|
|
||||||
int command_end = text.indexOf(QRegularExpression(QStringLiteral("\\s")));
|
|
||||||
if (command_end == -1)
|
|
||||||
command_end = text.size();
|
|
||||||
auto command = text.mid(1, command_end - 1);
|
|
||||||
if (command.isEmpty() || command == QLatin1String("/"))
|
|
||||||
return {};
|
|
||||||
else {
|
|
||||||
return command;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
Nheko::isInvalidCommand(QString command) const
|
|
||||||
{
|
|
||||||
if (command.size() <= 0)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
static const QStringList validCommands{QStringLiteral("/me"),
|
|
||||||
QStringLiteral("/react"),
|
|
||||||
QStringLiteral("/join"),
|
|
||||||
QStringLiteral("/knock"),
|
|
||||||
QStringLiteral("/part"),
|
|
||||||
QStringLiteral("/leave"),
|
|
||||||
QStringLiteral("/invite"),
|
|
||||||
QStringLiteral("/kick"),
|
|
||||||
QStringLiteral("/ban"),
|
|
||||||
QStringLiteral("/unban"),
|
|
||||||
QStringLiteral("/redact"),
|
|
||||||
QStringLiteral("/roomnick"),
|
|
||||||
QStringLiteral("/shrug"),
|
|
||||||
QStringLiteral("/fliptable"),
|
|
||||||
QStringLiteral("/unfliptable"),
|
|
||||||
QStringLiteral("/sovietflip"),
|
|
||||||
QStringLiteral("/clear-timeline"),
|
|
||||||
QStringLiteral("/reset-state"),
|
|
||||||
QStringLiteral("/rotate-megolm-session"),
|
|
||||||
QStringLiteral("/md"),
|
|
||||||
QStringLiteral("/cmark"),
|
|
||||||
QStringLiteral("/plain"),
|
|
||||||
QStringLiteral("/rainbow"),
|
|
||||||
QStringLiteral("/rainbowme"),
|
|
||||||
QStringLiteral("/notice"),
|
|
||||||
QStringLiteral("/rainbownotice"),
|
|
||||||
QStringLiteral("/confetti"),
|
|
||||||
QStringLiteral("/rainbowconfetti"),
|
|
||||||
QStringLiteral("/goto"),
|
|
||||||
QStringLiteral("/converttodm"),
|
|
||||||
QStringLiteral("/converttoroom")};
|
|
||||||
|
|
||||||
if (!command.startsWith('/'))
|
|
||||||
command.prepend('/');
|
|
||||||
return !validCommands.contains(command);
|
|
||||||
}
|
|
||||||
|
|
|
@ -72,9 +72,6 @@ public:
|
||||||
Q_INVOKABLE void setTransientParent(QWindow *window, QWindow *parentWindow) const;
|
Q_INVOKABLE void setTransientParent(QWindow *window, QWindow *parentWindow) const;
|
||||||
Q_INVOKABLE void setWindowRole(QWindow *win, QString newRole) const;
|
Q_INVOKABLE void setWindowRole(QWindow *win, QString newRole) const;
|
||||||
|
|
||||||
Q_INVOKABLE QString getCommandFromText(const QString &text);
|
|
||||||
Q_INVOKABLE bool isInvalidCommand(QString command) const;
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void updateUserProfile();
|
void updateUserProfile();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue