tech.tablesaw.plotly.components.Component Maven / Gradle / Ivy
package tech.tablesaw.plotly.components;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.mitchellbosecke.pebble.PebbleEngine;
import com.mitchellbosecke.pebble.error.PebbleException;
import com.mitchellbosecke.pebble.template.PebbleTemplate;
import java.io.IOException;
import java.io.StringWriter;
import java.io.UncheckedIOException;
import java.io.Writer;
import java.util.Map;
public abstract class Component {
protected static final ObjectMapper mapper = new ObjectMapper();
{
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.setSerializationInclusion(Include.NON_NULL);
mapper.enable(SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS);
}
private final PebbleEngine engine = TemplateUtils.getNewEngine();
protected PebbleEngine getEngine() {
return engine;
}
@Deprecated
public abstract String asJavascript();
@Deprecated
protected abstract Map getContext();
protected Map getJSONContext() {
return null;
}
public String asJSON() {
StringWriter w = new StringWriter();
try {
mapper.writeValue(w, getJSONContext());
} catch (IOException ioe) {
throw new UncheckedIOException(ioe);
}
return w.toString();
}
protected String asJavascript(String filename) {
Writer writer = new StringWriter();
PebbleTemplate compiledTemplate;
try {
compiledTemplate = getEngine().getTemplate(filename);
compiledTemplate.evaluate(writer, getContext());
} catch (PebbleException e) {
throw new IllegalStateException(e);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
return writer.toString();
}
@Override
public String toString() {
return asJavascript();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy