mirror of
https://github.com/NoiTheCat/BirthdayBot.git
synced 2024-11-24 01:14:12 +00:00
Update style, add nullable
This commit is contained in:
parent
f8350fed53
commit
488ebfa163
1 changed files with 38 additions and 47 deletions
|
@ -1,18 +1,13 @@
|
|||
using Discord;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Text;
|
||||
|
||||
namespace BirthdayBot.UserInterface
|
||||
{
|
||||
internal class CommandDocumentation
|
||||
{
|
||||
namespace BirthdayBot.UserInterface;
|
||||
|
||||
internal class CommandDocumentation {
|
||||
public string[] Commands { get; }
|
||||
public string Usage { get; }
|
||||
public string Examples { get; }
|
||||
public string? Examples { get; }
|
||||
|
||||
public CommandDocumentation(IEnumerable<string> commands, string usage, string examples)
|
||||
{
|
||||
public CommandDocumentation(IEnumerable<string> commands, string usage, string? examples) {
|
||||
var cmds = new List<string>();
|
||||
foreach (var item in commands) cmds.Add(CommandsCommon.CommandPrefix + item);
|
||||
if (cmds.Count == 0) throw new ArgumentException(null, nameof(commands));
|
||||
|
@ -24,16 +19,14 @@ namespace BirthdayBot.UserInterface
|
|||
/// <summary>
|
||||
/// Returns a string that can be inserted into a help or usage message.
|
||||
/// </summary>
|
||||
public string Export()
|
||||
{
|
||||
public string Export() {
|
||||
var result = new StringBuilder();
|
||||
foreach (var item in Commands) result.Append(", `" + item + "`");
|
||||
result.Remove(0, 2);
|
||||
result.Insert(0, '●');
|
||||
result.AppendLine();
|
||||
result.Append("» " + Usage);
|
||||
if (Examples != null)
|
||||
{
|
||||
if (Examples != null) {
|
||||
result.AppendLine();
|
||||
result.Append("» Examples: " + Examples);
|
||||
}
|
||||
|
@ -43,10 +36,8 @@ namespace BirthdayBot.UserInterface
|
|||
/// <summary>
|
||||
/// Creates an embeddable message containing the command documentation.
|
||||
/// </summary>
|
||||
public Embed UsageEmbed => new EmbedBuilder()
|
||||
{
|
||||
public Embed UsageEmbed => new EmbedBuilder() {
|
||||
Author = new EmbedAuthorBuilder() { Name = "Usage" },
|
||||
Description = Export()
|
||||
}.Build();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue