mirror of
https://gitee.com/dcren/initializr.git
synced 2025-05-17 05:29:38 +08:00
Merge pull request #966 from htztomic
* pr/966: Polish "Make sure project descriptions line-wrap at a decent length" Make sure project descriptions line-wrap at a decent length Closes gh-966
This commit is contained in:
commit
f5427ffff4
@ -44,6 +44,10 @@
|
|||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-compress</artifactId>
|
<artifactId>commons-compress</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-text</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.cache</groupId>
|
<groupId>javax.cache</groupId>
|
||||||
|
@ -18,8 +18,10 @@ package io.spring.initializr.web.support;
|
|||||||
|
|
||||||
import java.beans.PropertyDescriptor;
|
import java.beans.PropertyDescriptor;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
@ -28,6 +30,7 @@ import io.spring.initializr.metadata.Dependency;
|
|||||||
import io.spring.initializr.metadata.InitializrMetadata;
|
import io.spring.initializr.metadata.InitializrMetadata;
|
||||||
import io.spring.initializr.metadata.MetadataElement;
|
import io.spring.initializr.metadata.MetadataElement;
|
||||||
import io.spring.initializr.metadata.Type;
|
import io.spring.initializr.metadata.Type;
|
||||||
|
import org.apache.commons.text.WordUtils;
|
||||||
|
|
||||||
import org.springframework.beans.BeanWrapperImpl;
|
import org.springframework.beans.BeanWrapperImpl;
|
||||||
|
|
||||||
@ -43,10 +46,19 @@ public class CommandLineHelpGenerator {
|
|||||||
+ " \\\\/ ___)| |_)| | | | | || (_| | ) ) ) )\n" + " ' |____| .__|_| |_|_| |_\\__, | / / / /\n"
|
+ " \\\\/ ___)| |_)| | | | | || (_| | ) ) ) )\n" + " ' |____| .__|_| |_|_| |_\\__, | / / / /\n"
|
||||||
+ " =========|_|==============|___/=/_/_/_/";
|
+ " =========|_|==============|___/=/_/_/_/";
|
||||||
|
|
||||||
|
private static final String NEW_LINE = System.getProperty("line.separator");
|
||||||
|
|
||||||
private final TemplateRenderer template;
|
private final TemplateRenderer template;
|
||||||
|
|
||||||
|
private final int maxColumnWidth;
|
||||||
|
|
||||||
public CommandLineHelpGenerator(TemplateRenderer template) {
|
public CommandLineHelpGenerator(TemplateRenderer template) {
|
||||||
|
this(template, 60);
|
||||||
|
}
|
||||||
|
|
||||||
|
public CommandLineHelpGenerator(TemplateRenderer template, int maxColumnWidth) {
|
||||||
this.template = template;
|
this.template = template;
|
||||||
|
this.maxColumnWidth = maxColumnWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -129,7 +141,7 @@ public class CommandLineHelpGenerator {
|
|||||||
data[2] = (String) defaults.get(id);
|
data[2] = (String) defaults.get(id);
|
||||||
parameterTable[i++] = data;
|
parameterTable[i++] = data;
|
||||||
}
|
}
|
||||||
model.put("parameters", TableGenerator.generate(parameterTable));
|
model.put("parameters", TableGenerator.generate(parameterTable, false, this.maxColumnWidth));
|
||||||
|
|
||||||
return model;
|
return model;
|
||||||
}
|
}
|
||||||
@ -153,7 +165,7 @@ public class CommandLineHelpGenerator {
|
|||||||
data[2] = (String) defaults.get(id);
|
data[2] = (String) defaults.get(id);
|
||||||
parameterTable[i++] = data;
|
parameterTable[i++] = data;
|
||||||
}
|
}
|
||||||
model.put("parameters", TableGenerator.generate(parameterTable));
|
model.put("parameters", TableGenerator.generate(parameterTable, false, this.maxColumnWidth));
|
||||||
return model;
|
return model;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -169,7 +181,7 @@ public class CommandLineHelpGenerator {
|
|||||||
data[2] = dep.getVersionRequirement();
|
data[2] = dep.getVersionRequirement();
|
||||||
dependencyTable[i++] = data;
|
dependencyTable[i++] = data;
|
||||||
}
|
}
|
||||||
return TableGenerator.generate(dependencyTable);
|
return TableGenerator.generate(dependencyTable, true, this.maxColumnWidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String generateTypeTable(InitializrMetadata metadata, String linkHeader, boolean addTags) {
|
protected String generateTypeTable(InitializrMetadata metadata, String linkHeader, boolean addTags) {
|
||||||
@ -191,7 +203,7 @@ public class CommandLineHelpGenerator {
|
|||||||
}
|
}
|
||||||
typeTable[i++] = data;
|
typeTable[i++] = data;
|
||||||
}
|
}
|
||||||
return TableGenerator.generate(typeTable);
|
return TableGenerator.generate(typeTable, false, this.maxColumnWidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Map<String, Object> buildParametersDescription(InitializrMetadata metadata) {
|
protected Map<String, Object> buildParametersDescription(InitializrMetadata metadata) {
|
||||||
@ -222,35 +234,48 @@ public class CommandLineHelpGenerator {
|
|||||||
*/
|
*/
|
||||||
private static class TableGenerator {
|
private static class TableGenerator {
|
||||||
|
|
||||||
static final String NEW_LINE = System.getProperty("line.separator");
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate a table description for the specified {@code content}.
|
* Generate a table description for the specified {@code content}.
|
||||||
* <p>
|
* <p>
|
||||||
* The {@code content} is a two-dimensional array holding the rows of the table.
|
* The {@code content} is a two-dimensional array holding the rows of the table.
|
||||||
* The first entry holds the header of the table.
|
* The first entry holds the header of the table.
|
||||||
* @param content the table content
|
* @param content the table content
|
||||||
|
* @param emptyRow add an empty row separator
|
||||||
|
* @param maxWidth the width bound for each column
|
||||||
* @return the generated table
|
* @return the generated table
|
||||||
*/
|
*/
|
||||||
static String generate(String[][] content) {
|
static String generate(String[][] content, boolean emptyRow, int maxWidth) {
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
int[] columnsLength = computeColumnsLength(content);
|
int[] columnsLength = computeColumnsLength(content, maxWidth);
|
||||||
appendTableSeparation(sb, columnsLength);
|
appendTableSeparation(sb, columnsLength);
|
||||||
appendRow(sb, content, columnsLength, 0); // Headers
|
appendRow(sb, content, columnsLength, 0, maxWidth); // Headers
|
||||||
appendTableSeparation(sb, columnsLength);
|
appendTableSeparation(sb, columnsLength);
|
||||||
for (int i = 1; i < content.length; i++) {
|
for (int i = 1; i < content.length; i++) {
|
||||||
appendRow(sb, content, columnsLength, i);
|
appendRow(sb, content, columnsLength, i, maxWidth);
|
||||||
|
if (emptyRow && i < content.length - 1) {
|
||||||
|
appendEmptyRow(sb, columnsLength);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
appendTableSeparation(sb, columnsLength);
|
appendTableSeparation(sb, columnsLength);
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void appendRow(StringBuilder sb, String[][] content, int[] columnsLength, int rowIndex) {
|
private static void appendRow(StringBuilder sb, String[][] content, int[] columnsLength, int rowIndex,
|
||||||
String[] row = content[rowIndex];
|
int maxWidth) {
|
||||||
if (row != null) {
|
String[] line = content[rowIndex];
|
||||||
|
List<String[]> rows = HelpFormatter.format(line, maxWidth);
|
||||||
|
for (String[] row : rows) {
|
||||||
for (int i = 0; i < row.length; i++) {
|
for (int i = 0; i < row.length; i++) {
|
||||||
sb.append("| ").append(fill(row[i], columnsLength[i])).append(" ");
|
sb.append("| ").append(fill(row[i], columnsLength[i])).append(" ");
|
||||||
}
|
}
|
||||||
|
sb.append("|");
|
||||||
|
sb.append(NEW_LINE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void appendEmptyRow(StringBuilder sb, int[] columnsLength) {
|
||||||
|
for (int columnLength : columnsLength) {
|
||||||
|
sb.append("| ").append(fill(null, columnLength)).append(" ");
|
||||||
}
|
}
|
||||||
sb.append("|");
|
sb.append("|");
|
||||||
sb.append(NEW_LINE);
|
sb.append(NEW_LINE);
|
||||||
@ -282,16 +307,16 @@ public class CommandLineHelpGenerator {
|
|||||||
return s.toString();
|
return s.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int[] computeColumnsLength(String[][] content) {
|
private static int[] computeColumnsLength(String[][] content, int maxWidth) {
|
||||||
int count = content[0].length;
|
int count = content[0].length;
|
||||||
int[] result = new int[count];
|
int[] result = new int[count];
|
||||||
for (int i = 0; i < count; i++) {
|
for (int i = 0; i < count; i++) {
|
||||||
result[i] = largest(content, i);
|
result[i] = largest(content, i, maxWidth);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int largest(String[][] content, int column) {
|
private static int largest(String[][] content, int column, int maxWidth) {
|
||||||
int max = 0;
|
int max = 0;
|
||||||
for (String[] rows : content) {
|
for (String[] rows : content) {
|
||||||
if (rows != null) {
|
if (rows != null) {
|
||||||
@ -301,9 +326,65 @@ public class CommandLineHelpGenerator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return Math.min(max, maxWidth);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class HelpFormatter {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Formats a given content to a max width.
|
||||||
|
* @param content the content to format.
|
||||||
|
* @param maxWidth the max width of each column
|
||||||
|
* @return the formatted rows.
|
||||||
|
*/
|
||||||
|
private static List<String[]> format(String[] content, int maxWidth) {
|
||||||
|
List<String[]> columns = lineWrap(content, maxWidth);
|
||||||
|
List<String[]> rows = new ArrayList<>();
|
||||||
|
for (int i = 0; i < largest(columns); ++i) {
|
||||||
|
rows.add(computeRow(columns, i));
|
||||||
|
}
|
||||||
|
return rows;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String[] computeRow(List<String[]> columns, int index) {
|
||||||
|
String[] line = new String[columns.size()];
|
||||||
|
int position = 0;
|
||||||
|
for (String[] column : columns) {
|
||||||
|
line[position] = itemOrNull(column, index);
|
||||||
|
position++;
|
||||||
|
}
|
||||||
|
return line;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<String[]> lineWrap(String[] content, int maxWidth) {
|
||||||
|
List<String[]> lineWrapped = new ArrayList<>();
|
||||||
|
for (String column : content) {
|
||||||
|
if (column == null) {
|
||||||
|
lineWrapped.add(new String[0]);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
lineWrapped.add(WordUtils.wrap(column, maxWidth).split(NEW_LINE));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return lineWrapped;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int largest(List<String[]> columns) {
|
||||||
|
int max = 0;
|
||||||
|
for (String[] column : columns) {
|
||||||
|
if (max < column.length) {
|
||||||
|
max = column.length;
|
||||||
|
}
|
||||||
|
}
|
||||||
return max;
|
return max;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static String itemOrNull(String[] column, int index) {
|
||||||
|
return (index >= column.length) ? null : column[index];
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -18,13 +18,13 @@ package io.spring.initializr.web.support;
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import io.spring.initializr.generator.io.template.MustacheTemplateRenderer;
|
import io.spring.initializr.generator.io.template.MustacheTemplateRenderer;
|
||||||
import io.spring.initializr.generator.spring.test.InitializrMetadataTestBuilder;
|
import io.spring.initializr.generator.spring.test.InitializrMetadataTestBuilder;
|
||||||
import io.spring.initializr.metadata.Dependency;
|
import io.spring.initializr.metadata.Dependency;
|
||||||
import io.spring.initializr.metadata.InitializrMetadata;
|
import io.spring.initializr.metadata.InitializrMetadata;
|
||||||
import io.spring.initializr.metadata.Type;
|
import io.spring.initializr.metadata.Type;
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
@ -36,12 +36,9 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||||||
*/
|
*/
|
||||||
class CommandLineHelpGeneratorTests {
|
class CommandLineHelpGeneratorTests {
|
||||||
|
|
||||||
private CommandLineHelpGenerator generator;
|
private static final MustacheTemplateRenderer template = new MustacheTemplateRenderer("classpath:/templates");
|
||||||
|
|
||||||
@BeforeEach
|
private CommandLineHelpGenerator generator = new CommandLineHelpGenerator(template);
|
||||||
void init() {
|
|
||||||
this.generator = new CommandLineHelpGenerator(new MustacheTemplateRenderer("classpath:/templates"));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void generateGenericCapabilities() throws IOException {
|
void generateGenericCapabilities() throws IOException {
|
||||||
@ -94,6 +91,41 @@ class CommandLineHelpGeneratorTests {
|
|||||||
assertThat(content).contains("curl https://fake-service");
|
assertThat(content).contains("curl https://fake-service");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void generateGeneralCapabilitiesWithDefaultLineWrap() throws IOException {
|
||||||
|
CommandLineHelpGenerator lineWrapTemplateGenerator = new CommandLineHelpGenerator(template);
|
||||||
|
InitializrMetadata metadata = InitializrMetadataTestBuilder.withDefaults()
|
||||||
|
.addDependencyGroup("test", createDependency("id-a", "Short description"), createDependency("id-b",
|
||||||
|
"Version control for your database so you can migrate from any version (incl. an empty database) to the latest version of the schema."))
|
||||||
|
.build();
|
||||||
|
String content = lineWrapTemplateGenerator.generateGenericCapabilities(metadata, "https://fake-service");
|
||||||
|
assertCommandLineCapabilities(content);
|
||||||
|
assertThat(readAllLines(content)).containsSequence(
|
||||||
|
"| id-a | Short description | |",
|
||||||
|
"| | | |",
|
||||||
|
"| id-b | Version control for your database so you can migrate from | |",
|
||||||
|
"| | any version (incl. an empty database) to the latest version | |",
|
||||||
|
"| | of the schema. | |");
|
||||||
|
assertThat(content).contains("https://fake-service");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void generateGeneralCapabilitiesWithCustomLineWrap() throws IOException {
|
||||||
|
CommandLineHelpGenerator lineWrapTemplateGenerator = new CommandLineHelpGenerator(template, 100);
|
||||||
|
InitializrMetadata metadata = InitializrMetadataTestBuilder.withDefaults()
|
||||||
|
.addDependencyGroup("test", createDependency("id-a", "Short description"), createDependency("id-b",
|
||||||
|
"Version control for your database so you can migrate from any version (incl. an empty database) to the latest version of the schema."))
|
||||||
|
.build();
|
||||||
|
String content = lineWrapTemplateGenerator.generateGenericCapabilities(metadata, "https://fake-service");
|
||||||
|
assertCommandLineCapabilities(content);
|
||||||
|
assertThat(readAllLines(content)).containsSequence(
|
||||||
|
"| id-a | Short description | |",
|
||||||
|
"| | | |",
|
||||||
|
"| id-b | Version control for your database so you can migrate from any version (incl. an empty database) to | |",
|
||||||
|
"| | the latest version of the schema. | |");
|
||||||
|
assertThat(content).contains("https://fake-service");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void generateHttpCapabilities() throws IOException {
|
void generateHttpCapabilities() throws IOException {
|
||||||
InitializrMetadata metadata = InitializrMetadataTestBuilder.withDefaults().addDependencyGroup("test",
|
InitializrMetadata metadata = InitializrMetadataTestBuilder.withDefaults().addDependencyGroup("test",
|
||||||
@ -160,4 +192,9 @@ class CommandLineHelpGeneratorTests {
|
|||||||
return dependency;
|
return dependency;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static List<String> readAllLines(String source) {
|
||||||
|
String[] lines = source.split("\\r?\\n");
|
||||||
|
return Arrays.asList(lines);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
6
pom.xml
6
pom.xml
@ -42,6 +42,7 @@
|
|||||||
<main.basedir>${basedir}</main.basedir>
|
<main.basedir>${basedir}</main.basedir>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<commons-compress.version>1.18</commons-compress.version>
|
<commons-compress.version>1.18</commons-compress.version>
|
||||||
|
<commons-text.version>1.7</commons-text.version>
|
||||||
<junit-jupiter.version>5.4.2</junit-jupiter.version>
|
<junit-jupiter.version>5.4.2</junit-jupiter.version>
|
||||||
<maven.version>3.6.1</maven.version>
|
<maven.version>3.6.1</maven.version>
|
||||||
<maven-resolver.version>1.3.3</maven-resolver.version>
|
<maven-resolver.version>1.3.3</maven-resolver.version>
|
||||||
@ -111,6 +112,11 @@
|
|||||||
<artifactId>commons-compress</artifactId>
|
<artifactId>commons-compress</artifactId>
|
||||||
<version>${commons-compress.version}</version>
|
<version>${commons-compress.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-text</artifactId>
|
||||||
|
<version>${commons-text.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven</groupId>
|
<groupId>org.apache.maven</groupId>
|
||||||
<artifactId>maven-resolver-provider</artifactId>
|
<artifactId>maven-resolver-provider</artifactId>
|
||||||
|
Loading…
Reference in New Issue
Block a user