mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Made emote tooltips use author's displayName consistently (#2267)
This commit is contained in:
parent
dcebcd4456
commit
155b40985b
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
- Major: Added "Channel Filters". See https://wiki.chatterino.com/Filters/ for how they work or how to configure them. (#1748, #2083, #2090, #2200)
|
- Major: Added "Channel Filters". See https://wiki.chatterino.com/Filters/ for how they work or how to configure them. (#1748, #2083, #2090, #2200)
|
||||||
- Major: Added Streamer Mode configuration (under `Settings -> General`), where you can select which features of Chatterino should behave differently when you are in Streamer Mode. (#2001)
|
- Major: Added Streamer Mode configuration (under `Settings -> General`), where you can select which features of Chatterino should behave differently when you are in Streamer Mode. (#2001)
|
||||||
|
- Minor: Made BetterTTV emote tooltips use authors' display name. (#2267)
|
||||||
- Minor: Added Ctrl + 1/2/3/... and Ctrl+9 shortcuts to Emote Popup (activated with Ctrl+E). They work exactly the same as shortcuts in main window. (#2263)
|
- Minor: Added Ctrl + 1/2/3/... and Ctrl+9 shortcuts to Emote Popup (activated with Ctrl+E). They work exactly the same as shortcuts in main window. (#2263)
|
||||||
- Minor: Added reconnect link to the "You are banned" message. (#2266)
|
- Minor: Added reconnect link to the "You are banned" message. (#2266)
|
||||||
- Minor: Improved search popup window titles. (#2268)
|
- Minor: Improved search popup window titles. (#2268)
|
||||||
|
|
|
@ -56,7 +56,7 @@ namespace {
|
||||||
ImageSet{Image::fromUrl(getEmoteLinkV3(id, "1x"), 1),
|
ImageSet{Image::fromUrl(getEmoteLinkV3(id, "1x"), 1),
|
||||||
Image::fromUrl(getEmoteLinkV3(id, "2x"), 0.5),
|
Image::fromUrl(getEmoteLinkV3(id, "2x"), 0.5),
|
||||||
Image::fromUrl(getEmoteLinkV3(id, "3x"), 0.25)},
|
Image::fromUrl(getEmoteLinkV3(id, "3x"), 0.25)},
|
||||||
Tooltip{name.string + "<br />Global BetterTTV Emote"},
|
Tooltip{name.string + "<br>Global BetterTTV Emote"},
|
||||||
Url{emoteLinkFormat.arg(id.string)},
|
Url{emoteLinkFormat.arg(id.string)},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -66,12 +66,13 @@ namespace {
|
||||||
|
|
||||||
return {Success, std::move(emotes)};
|
return {Success, std::move(emotes)};
|
||||||
}
|
}
|
||||||
std::pair<Outcome, EmoteMap> parseChannelEmotes(const QJsonObject &jsonRoot,
|
std::pair<Outcome, EmoteMap> parseChannelEmotes(
|
||||||
const QString &userName)
|
const QJsonObject &jsonRoot, const QString &channelDisplayName)
|
||||||
{
|
{
|
||||||
auto emotes = EmoteMap();
|
auto emotes = EmoteMap();
|
||||||
|
|
||||||
auto innerParse = [&jsonRoot, &emotes, &userName](const char *key) {
|
auto innerParse = [&jsonRoot, &emotes,
|
||||||
|
&channelDisplayName](const char *key) {
|
||||||
auto jsonEmotes = jsonRoot.value(key).toArray();
|
auto jsonEmotes = jsonRoot.value(key).toArray();
|
||||||
for (auto jsonEmote_ : jsonEmotes)
|
for (auto jsonEmote_ : jsonEmotes)
|
||||||
{
|
{
|
||||||
|
@ -81,9 +82,8 @@ namespace {
|
||||||
auto name = EmoteName{jsonEmote.value("code").toString()};
|
auto name = EmoteName{jsonEmote.value("code").toString()};
|
||||||
auto author = EmoteAuthor{jsonEmote.value("user")
|
auto author = EmoteAuthor{jsonEmote.value("user")
|
||||||
.toObject()
|
.toObject()
|
||||||
.value("name")
|
.value("displayName")
|
||||||
.toString()};
|
.toString()};
|
||||||
// emoteObject.value("imageType").toString();
|
|
||||||
|
|
||||||
auto emote = Emote({
|
auto emote = Emote({
|
||||||
name,
|
name,
|
||||||
|
@ -92,10 +92,13 @@ namespace {
|
||||||
Image::fromUrl(getEmoteLinkV3(id, "2x"), 0.5),
|
Image::fromUrl(getEmoteLinkV3(id, "2x"), 0.5),
|
||||||
Image::fromUrl(getEmoteLinkV3(id, "3x"), 0.25),
|
Image::fromUrl(getEmoteLinkV3(id, "3x"), 0.25),
|
||||||
},
|
},
|
||||||
Tooltip{name.string + "<br>Channel BetterTTV Emote" +
|
Tooltip{
|
||||||
((author.string.isEmpty())
|
QString("%1<br>%2 BetterTTV Emote<br>By: %3")
|
||||||
? "<br>By: " + userName.toUtf8()
|
.arg(name.string)
|
||||||
: "<br>By: " + author.string)},
|
// when author is empty, it is a channel emote created by the broadcaster
|
||||||
|
.arg(author.string.isEmpty() ? "Channel" : "Shared")
|
||||||
|
.arg(author.string.isEmpty() ? channelDisplayName
|
||||||
|
: author.string)},
|
||||||
Url{emoteLinkFormat.arg(id.string)},
|
Url{emoteLinkFormat.arg(id.string)},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -149,15 +152,18 @@ void BttvEmotes::loadEmotes()
|
||||||
}
|
}
|
||||||
|
|
||||||
void BttvEmotes::loadChannel(std::weak_ptr<Channel> channel,
|
void BttvEmotes::loadChannel(std::weak_ptr<Channel> channel,
|
||||||
const QString &channelId, const QString &userName,
|
const QString &channelId,
|
||||||
|
const QString &channelDisplayName,
|
||||||
std::function<void(EmoteMap &&)> callback,
|
std::function<void(EmoteMap &&)> callback,
|
||||||
bool manualRefresh)
|
bool manualRefresh)
|
||||||
{
|
{
|
||||||
NetworkRequest(QString(bttvChannelEmoteApiUrl) + channelId)
|
NetworkRequest(QString(bttvChannelEmoteApiUrl) + channelId)
|
||||||
.timeout(3000)
|
.timeout(3000)
|
||||||
.onSuccess([callback = std::move(callback), channel, &userName,
|
.onSuccess([callback = std::move(callback), channel,
|
||||||
|
&channelDisplayName,
|
||||||
manualRefresh](auto result) -> Outcome {
|
manualRefresh](auto result) -> Outcome {
|
||||||
auto pair = parseChannelEmotes(result.parseJson(), userName);
|
auto pair =
|
||||||
|
parseChannelEmotes(result.parseJson(), channelDisplayName);
|
||||||
if (pair.first)
|
if (pair.first)
|
||||||
callback(std::move(pair.second));
|
callback(std::move(pair.second));
|
||||||
if (auto shared = channel.lock(); manualRefresh)
|
if (auto shared = channel.lock(); manualRefresh)
|
||||||
|
|
|
@ -26,7 +26,8 @@ public:
|
||||||
boost::optional<EmotePtr> emote(const EmoteName &name) const;
|
boost::optional<EmotePtr> emote(const EmoteName &name) const;
|
||||||
void loadEmotes();
|
void loadEmotes();
|
||||||
static void loadChannel(std::weak_ptr<Channel> channel,
|
static void loadChannel(std::weak_ptr<Channel> channel,
|
||||||
const QString &channelId, const QString &userName,
|
const QString &channelId,
|
||||||
|
const QString &channelDisplayName,
|
||||||
std::function<void(EmoteMap &&)> callback,
|
std::function<void(EmoteMap &&)> callback,
|
||||||
bool manualRefresh);
|
bool manualRefresh);
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ namespace {
|
||||||
|
|
||||||
auto emote = Emote();
|
auto emote = Emote();
|
||||||
fillInEmoteData(urls, name,
|
fillInEmoteData(urls, name,
|
||||||
name.string + "<br/>Global FFZ Emote", emote);
|
name.string + "<br>Global FFZ Emote", emote);
|
||||||
emote.homePage =
|
emote.homePage =
|
||||||
Url{QString("https://www.frankerfacez.com/emoticon/%1-%2")
|
Url{QString("https://www.frankerfacez.com/emoticon/%1-%2")
|
||||||
.arg(id.string)
|
.arg(id.string)
|
||||||
|
@ -137,8 +137,9 @@ namespace {
|
||||||
|
|
||||||
Emote emote;
|
Emote emote;
|
||||||
fillInEmoteData(urls, name,
|
fillInEmoteData(urls, name,
|
||||||
name.string + "<br/>Channel FFZ Emote" +
|
QString("%1<br>Channel FFZ Emote<br>By: %2")
|
||||||
"<br />By: " + author.string,
|
.arg(name.string)
|
||||||
|
.arg(author.string),
|
||||||
emote);
|
emote);
|
||||||
emote.homePage =
|
emote.homePage =
|
||||||
Url{QString("https://www.frankerfacez.com/emoticon/%1-%2")
|
Url{QString("https://www.frankerfacez.com/emoticon/%1-%2")
|
||||||
|
|
|
@ -241,7 +241,7 @@ void TwitchChannel::setLocalizedName(const QString &name)
|
||||||
void TwitchChannel::refreshBTTVChannelEmotes(bool manualRefresh)
|
void TwitchChannel::refreshBTTVChannelEmotes(bool manualRefresh)
|
||||||
{
|
{
|
||||||
BttvEmotes::loadChannel(
|
BttvEmotes::loadChannel(
|
||||||
weakOf<Channel>(this), this->roomId(), this->getName(),
|
weakOf<Channel>(this), this->roomId(), this->getLocalizedName(),
|
||||||
[this, weak = weakOf<Channel>(this)](auto &&emoteMap) {
|
[this, weak = weakOf<Channel>(this)](auto &&emoteMap) {
|
||||||
if (auto shared = weak.lock())
|
if (auto shared = weak.lock())
|
||||||
this->bttvEmotes_.set(
|
this->bttvEmotes_.set(
|
||||||
|
|
Loading…
Reference in a new issue