use of com.gitblit.utils.HtmlBuilder in project gitblit by gitblit.
the class ImageDiffHandler method renderBinaryDiff.
/** {@inheritDoc} */
@Override
public String renderBinaryDiff(DiffEntry diffEntry) {
switch(diffEntry.getChangeType()) {
case MODIFY:
case RENAME:
case COPY:
// TODO: for very small images such as icons, the slider doesn't really help. Two possible
// approaches: either upscale them for display (may show blurry upscaled images), or show
// them side by side (may still be too small to really make out the differences).
String oldUrl = getImageUrl(diffEntry, Side.OLD);
String newUrl = getImageUrl(diffEntry, Side.NEW);
if (oldUrl != null && newUrl != null) {
imgDiffCount++;
String id = "imgdiff" + imgDiffCount;
HtmlBuilder builder = new HtmlBuilder("div");
Element wrapper = builder.root().attr("class", "imgdiff-container").attr("id", "imgdiff-" + id);
Element container = wrapper.appendElement("div").attr("class", "imgdiff-ovr-slider").appendElement("div").attr("class", "imgdiff");
Element old = container.appendElement("div").attr("class", "imgdiff-left");
// style='max-width:640px;' is necessary for ensuring that the browser limits large images
// to some reasonable width, and to override the "img { max-width: 100%; }" from bootstrap.css,
// which would scale the left image to the width of its resizeable container, which isn't what
// we want here. Note that the max-width must be defined directly as inline style on the element,
// otherwise browsers ignore it if the image is larger, and we end up with an image display that
// is too wide.
// XXX: Maybe add a max-height, too, to limit portrait-oriented images to some reasonable height?
// (Like a 300x10000px image...)
old.appendElement("img").attr("class", "imgdiff-old").attr("id", id).attr("style", "max-width:640px;").attr("src", oldUrl);
container.appendElement("img").attr("class", "imgdiff").attr("style", "max-width:640px;").attr("src", newUrl);
wrapper.appendElement("br");
Element controls = wrapper.appendElement("div");
// Opacity slider
controls.appendElement("div").attr("class", "imgdiff-opa-container").appendElement("a").attr("class", "imgdiff-opa-slider").attr("href", "#").attr("title", page.getString("gb.opacityAdjust"));
// Blink comparator: find Pluto!
controls.appendElement("a").attr("class", "imgdiff-link imgdiff-blink").attr("href", "#").attr("title", page.getString("gb.blinkComparator")).appendElement("img").attr("src", getStaticResourceUrl("blink32.png")).attr("width", "20");
// Pixel subtraction, initially not displayed, will be shown by imgdiff.js depending on feature test.
// (Uses CSS mix-blend-mode, which isn't supported on all browsers yet).
controls.appendElement("a").attr("class", "imgdiff-link imgdiff-subtract").attr("href", "#").attr("title", page.getString("gb.imgdiffSubtract")).attr("style", "display:none;").appendElement("img").attr("src", getStaticResourceUrl("sub32.png")).attr("width", "20");
return builder.toString();
}
break;
case ADD:
String url = getImageUrl(diffEntry, Side.NEW);
if (url != null) {
return new HtmlBuilder("img").root().attr("class", "diff-img").attr("src", url).toString();
}
break;
default:
break;
}
return null;
}
Aggregations