All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sumologic.shellbase.table.HTMLTable.scala Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package com.sumologic.shellbase.table

class HTMLTable[T](HeadingOpt: Option[String] = None) extends PrintableTable[T] {

  override def renderLines(rows: Seq[T]): Seq[String] = {
    import HTMLTable._

    require(columns.nonEmpty, "No columns specified!")
    require(rows.nonEmpty, "No data!")
    val renderedRows: Seq[Array[String]] = rows.map(renderRow)

    val tablePrefix = if (bare)
      ""
    else
      "
" val headLineFormatString = linePrefix + columns.map { col => s"" }.mkString("") + lineSuffix val dataFormatString = linePrefix + columns.map { col => val align = if (col.rightAligned) "align=\"right\"" else "" s"" }.mkString("") + lineSuffix val headline = headLineFormatString.format(columns.map(_.heading).toArray: _*) val dataLines = renderedRows.map(r => dataFormatString.format(r: _*)) List(htmlPrefix) ++ List(tableHeading(HeadingOpt), tablePrefix) ++ List(headline) ++ dataLines ++ List(tableSuffix) ++ List(htmlSuffix) } private def renderRow(row: T): Array[String] = { columns.map(c => Option(c.value(row)).getOrElse(emptyCell)).toArray } } object HTMLTable { private val htmlPrefix = "" private val htmlSuffix = "" private val tableSuffix = "
%s%s
" private val linePrefix = "" private val lineSuffix = "" private def tableHeading(description: Option[String]) = description match { case Some(string) => s"

$string

" case None => "

" } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy