Giter Site home page Giter Site logo

Comments (3)

davsclaus avatar davsclaus commented on July 26, 2024 1

Thanks you very much @freva for the suggestion - that would work for me - thanks.

from ascii-table.

davsclaus avatar davsclaus commented on July 26, 2024

The Column E has no header, its used as a master/detail where we need to print a bunch of detail where we need more screen real estate to be able to display the information. That details are often multi lines of details. So a row could be (json output in details):

Column A | Column B | Column C | Column D
{
  "exchangeId": "29483200688F904-0000000000000009",
  "body": {
    "type": "java.lang.String",
    "value": "Hello2 Camel from java"
  }
}

from ascii-table.

freva avatar freva commented on July 26, 2024

My goal with the library is to keep it as simple as possible and supporting colspan is hard, supporting (in a general way) a single data element over multiple data rows is even harder.

But you can achieve the desired result if you generate a table, do some processing and generate another table. Say you have a List<Planet> as in the README with a JSON field, then you can do this:

Character[] style = {null, null, null, null, null, '|', null,
        null, null, null, null, null, '|', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null};

// First create a table without the JSON row and only with the column separators, then split that into lines
String[] colRows = AsciiTable.builder().data(planets, columnData).border(style).asString().split(System.lineSeparator());
// Then create a list of rows, starting with the header and then intertwining the data rows with the header rows
List<String> data = IntStream.range(0, 2 * planets.size() + 1)
        // Substring to skip the padding char, since new padding that will be added by the new table
        .mapToObj(i -> i < 1 || i % 2 == 1 ? colRows[(i + 1) / 2].substring(1, colRows[0].length() - 1): planets.get(i / 2 - 1).json)
        .collect(Collectors.toList());
String table = AsciiTable.builder()
        .data(data, Arrays.asList(new Column().dataAlign(HorizontalAlign.LEFT).with(s -> s)))
        .asString();

Will produce

+-------------------------------+
|   | Name    | Diameter | Mass |
+-------------------------------+
| 1 | Mercury |    0.382 | 0.06 |
+-------------------------------+
| {                             |
|   "name": "Mercury",          |
|   "diameter": 0.382           |
| }                             |
+-------------------------------+
| 2 |   Venus |    0.949 | 0.82 |
+-------------------------------+
| {                             |
|   "name": "Venus",            |
|   "diameter": 0.949           |
| }                             |
+-------------------------------+
| 3 |   Earth |    1.000 | 1.00 |
+-------------------------------+
| {                             |
|   "name": "Earth",            |
|   "diameter": 1.0             |
| }                             |
+-------------------------------+
| 4 |    Mars |    0.532 | 0.11 |
+-------------------------------+
| {                             |
|   "name": "Mars",             |
|   "diameter": 0.532           |
| }                             |
+-------------------------------+

from ascii-table.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.