-
Notifications
You must be signed in to change notification settings - Fork 1
Placeholders
Messages might contain embedded values, like integers in Page 1/2
.
These values are represented by placeholders.
Administrators use placeholders as explained by the using plugin
Page <page>/<pages>
Would be one example of how to use them. Placeholders might be number values that can be formatted. This must be specified by the plugin developers. Examples:
msg=<balance:%.2f> # --> 1.23 or 0.00
For more information see https://docs.oracle.com/javase/tutorial/java/data/numberformat.html
To apply placeholders to your Message instance, look at the following code:
public static final Message MSG = new MessageBuilder("page").withDefault("Page <page>/<pages>").build();
// and wherever you need it:
sendMessage(MSG.formatted(
Formatter.number("page", page),
Formatter.number("pages", pages)
));
Messages are formatted with placeholders by calling the #formatted(TagResolver...resolvers)
method. The method does not modify the original Message instance but creates a formatted Message instance instead.
TagResolvers are the way to resolve Tags within a MiniMessage text, for more information, take a look at the Adventure wiki.
More examples:
MSG.formatted(
// Replace placeholder with formatted component
Placeholder.component("display_name", player.getDisplayname),
// Just render String
Placeholder.parsed("target", target.getName()),
// Render number formatted or as currency
Formatter.number("balance", playerBalance),
// Render <friends:Friend:Friends> depending on the amount of friends.
Formatter.choice("friends", playerFriends.size())
// Render date <date:'yyyy-MM-dd HH:mm:ss'> as 2021-12-09 11:20:10
Formatter.date("first_login", player.getFirstJoin())
);
Have a more detailed look at TagResolvers and the way tags are being rendered if you want to boost performance of your application. For example, if you want to add a specific element as placeholder that takes quite long to prepare or render, you would only want to render it if the placeholder is really used by administrators. You would do this by implementing a custom TagResolver instance instead of using the Placeholder class.
This resolver resolves any message by namespace and key. Namespace is optional. See messages section for a detailled explanation.
Any style that has been registered through style storages
Repeats the slot given amount of times.
Shortens the slot to the given length of characters and appends "...".
<shorten:4>Hello world!</shorten>
will become Hell...
Makes the content lower case.
<lower><msg:prefix></lower>
will render the prefix in lower case without retyping it.
Makes the content upper case.
Mirrors the slot char by char.
<reverse>Hello wor<red>ld!</red></reverse>
becomes the parsed version of <red>!dl</red>row olleH