Bump to 2.0.3, fix trailing commas, move credit descriptions to hover

dependabot/gradle/net.kyori-adventure-api-4.14.0
William 2 years ago
parent 7c7311bc35
commit 211a48867d
No known key found for this signature in database

@ -6,7 +6,7 @@ plugins {
} }
group 'net.william278' group 'net.william278'
version '2.0.2' version '2.0.3'
defaultTasks 'licenseFormat', 'build' defaultTasks 'licenseFormat', 'build'
repositories { repositories {

@ -23,6 +23,7 @@ import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.ComponentBuilder; import net.kyori.adventure.text.ComponentBuilder;
import net.kyori.adventure.text.TextComponent; import net.kyori.adventure.text.TextComponent;
import net.kyori.adventure.text.event.ClickEvent; import net.kyori.adventure.text.event.ClickEvent;
import net.kyori.adventure.text.event.HoverEvent;
import net.kyori.adventure.text.format.NamedTextColor; import net.kyori.adventure.text.format.NamedTextColor;
import net.kyori.adventure.text.format.TextColor; import net.kyori.adventure.text.format.TextColor;
import net.kyori.adventure.text.format.TextDecoration; import net.kyori.adventure.text.format.TextDecoration;
@ -31,6 +32,7 @@ import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
import java.util.*; import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
/** /**
* Utility for displaying a menu of information about a plugin * Utility for displaying a menu of information about a plugin
@ -83,18 +85,28 @@ public class AboutMenu {
for (Map.Entry<String, List<Credit>> entry : attributions.entrySet()) { for (Map.Entry<String, List<Credit>> entry : attributions.entrySet()) {
builder.append(Component.newline()) builder.append(Component.newline())
.append(Component.text("• " + entry.getKey() + ": ").color(NamedTextColor.WHITE)); .append(Component.text("• " + entry.getKey() + ": ").color(NamedTextColor.WHITE));
entry.getValue().stream().map(Credit::toComponent).forEach(name -> builder
.append(name) final AtomicInteger credits = new AtomicInteger();
.append(Component.text(", "))); entry.getValue().stream().map(Credit::toComponent).forEach(name -> {
if (credits.getAndIncrement() > 0) {
builder.append(Component.text(", "));
}
builder.append(name).color(secondaryColor);
});
} }
// Add buttons // Add buttons
if (!buttons.isEmpty()) { if (!buttons.isEmpty()) {
builder.append(Component.newline()).append(Component.newline()) builder.append(Component.newline()).append(Component.newline())
.append(Component.text("Links: ").color(secondaryColor)); .append(Component.text("Links: ").color(secondaryColor));
buttons.stream().map(Link::toComponent).forEach(link -> builder
.append(link) final AtomicInteger links = new AtomicInteger();
.append(Component.text(" "))); buttons.stream().map(Link::toComponent).forEach(link -> {
if (links.getAndIncrement() > 0) {
builder.append(Component.text(" "));
}
builder.append(link);
});
} }
return builder.build(); return builder.build();
@ -344,7 +356,7 @@ public class AboutMenu {
public Component toComponent() { public Component toComponent() {
final ComponentBuilder<TextComponent, TextComponent.Builder> builder = Component.text().content(name); final ComponentBuilder<TextComponent, TextComponent.Builder> builder = Component.text().content(name);
if (description != null) { if (description != null) {
builder.append(Component.text(" (" + description + ")")); builder.hoverEvent(HoverEvent.showText(Component.text(description, color)));
} }
if (url != null) { if (url != null) {
builder.clickEvent(ClickEvent.openUrl(url)); builder.clickEvent(ClickEvent.openUrl(url));

Loading…
Cancel
Save