render comments
This commit is contained in:
parent
58017176fe
commit
bdb5a46621
|
@ -77,6 +77,7 @@ import org.hl7.fhir.r5.utils.EOperationOutcome;
|
||||||
import org.hl7.fhir.r5.utils.ToolingExtensions;
|
import org.hl7.fhir.r5.utils.ToolingExtensions;
|
||||||
import org.hl7.fhir.r5.utils.XVerExtensionManager;
|
import org.hl7.fhir.r5.utils.XVerExtensionManager;
|
||||||
import org.hl7.fhir.r5.utils.XVerExtensionManager.XVerExtensionStatus;
|
import org.hl7.fhir.r5.utils.XVerExtensionManager.XVerExtensionStatus;
|
||||||
|
import org.hl7.fhir.utilities.CommaSeparatedStringBuilder;
|
||||||
import org.hl7.fhir.utilities.Utilities;
|
import org.hl7.fhir.utilities.Utilities;
|
||||||
import org.hl7.fhir.utilities.xhtml.NodeType;
|
import org.hl7.fhir.utilities.xhtml.NodeType;
|
||||||
import org.hl7.fhir.utilities.xhtml.XhtmlComposer;
|
import org.hl7.fhir.utilities.xhtml.XhtmlComposer;
|
||||||
|
@ -306,6 +307,9 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Base e = ew.getBase();
|
Base e = ew.getBase();
|
||||||
|
if (context.isShowComments()) {
|
||||||
|
x = renderCommentsSpan(x, e);
|
||||||
|
}
|
||||||
|
|
||||||
if (e instanceof StringType)
|
if (e instanceof StringType)
|
||||||
x.addText(((StringType) e).getValue());
|
x.addText(((StringType) e).getValue());
|
||||||
|
@ -436,6 +440,14 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private XhtmlNode renderCommentsSpan(XhtmlNode x, Base e) {
|
||||||
|
if (e.hasFormatComment()) {
|
||||||
|
return x.span(null, CommaSeparatedStringBuilder.join(" ", e.getFormatCommentsPost()));
|
||||||
|
} else {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private boolean displayLeaf(ResourceWrapper res, BaseWrapper ew, ElementDefinition defn, XhtmlNode x, String name, boolean showCodeDetails) throws FHIRException, UnsupportedEncodingException, IOException {
|
private boolean displayLeaf(ResourceWrapper res, BaseWrapper ew, ElementDefinition defn, XhtmlNode x, String name, boolean showCodeDetails) throws FHIRException, UnsupportedEncodingException, IOException {
|
||||||
return displayLeaf(res, ew, defn, x, name, showCodeDetails, true);
|
return displayLeaf(res, ew, defn, x, name, showCodeDetails, true);
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,6 +122,7 @@ public class RenderingContext {
|
||||||
|
|
||||||
private QuestionnaireRendererMode questionnaireMode = QuestionnaireRendererMode.FORM;
|
private QuestionnaireRendererMode questionnaireMode = QuestionnaireRendererMode.FORM;
|
||||||
private boolean addGeneratedNarrativeHeader = true;
|
private boolean addGeneratedNarrativeHeader = true;
|
||||||
|
private boolean showComments = false;
|
||||||
|
|
||||||
private FhirPublication targetVersion;
|
private FhirPublication targetVersion;
|
||||||
private Locale locale;
|
private Locale locale;
|
||||||
|
@ -188,6 +189,7 @@ public class RenderingContext {
|
||||||
res.dateYearMonthFormat = dateYearMonthFormat;
|
res.dateYearMonthFormat = dateYearMonthFormat;
|
||||||
res.targetVersion = targetVersion;
|
res.targetVersion = targetVersion;
|
||||||
res.locale = locale;
|
res.locale = locale;
|
||||||
|
res.showComments = showComments;
|
||||||
|
|
||||||
res.terminologyServiceOptions = terminologyServiceOptions.copy();
|
res.terminologyServiceOptions = terminologyServiceOptions.copy();
|
||||||
return res;
|
return res;
|
||||||
|
@ -453,8 +455,9 @@ public class RenderingContext {
|
||||||
return targetVersion;
|
return targetVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTargetVersion(FhirPublication targetVersion) {
|
public RenderingContext setTargetVersion(FhirPublication targetVersion) {
|
||||||
this.targetVersion = targetVersion;
|
this.targetVersion = targetVersion;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isTechnicalMode() {
|
public boolean isTechnicalMode() {
|
||||||
|
@ -473,8 +476,9 @@ public class RenderingContext {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLocale(Locale locale) {
|
public RenderingContext setLocale(Locale locale) {
|
||||||
this.locale = locale;
|
this.locale = locale;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -494,8 +498,9 @@ public class RenderingContext {
|
||||||
return timeZoneId;
|
return timeZoneId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTimeZoneId(ZoneId timeZoneId) {
|
public RenderingContext setTimeZoneId(ZoneId timeZoneId) {
|
||||||
this.timeZoneId = timeZoneId;
|
this.timeZoneId = timeZoneId;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -509,12 +514,14 @@ public class RenderingContext {
|
||||||
return this.dateTimeFormat;
|
return this.dateTimeFormat;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateTimeFormat(DateTimeFormatter dateTimeFormat) {
|
public RenderingContext setDateTimeFormat(DateTimeFormatter dateTimeFormat) {
|
||||||
this.dateTimeFormat = dateTimeFormat;
|
this.dateTimeFormat = dateTimeFormat;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateTimeFormatString(String dateTimeFormat) {
|
public RenderingContext setDateTimeFormatString(String dateTimeFormat) {
|
||||||
this.dateTimeFormat = DateTimeFormatter.ofPattern(dateTimeFormat);
|
this.dateTimeFormat = DateTimeFormatter.ofPattern(dateTimeFormat);
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -527,52 +534,67 @@ public class RenderingContext {
|
||||||
return this.dateFormat;
|
return this.dateFormat;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateFormat(DateTimeFormatter dateFormat) {
|
public RenderingContext setDateFormat(DateTimeFormatter dateFormat) {
|
||||||
this.dateFormat = dateFormat;
|
this.dateFormat = dateFormat;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateFormatString(String dateFormat) {
|
public RenderingContext setDateFormatString(String dateFormat) {
|
||||||
this.dateFormat = DateTimeFormatter.ofPattern(dateFormat);
|
this.dateFormat = DateTimeFormatter.ofPattern(dateFormat);
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DateTimeFormatter getDateYearFormat() {
|
public DateTimeFormatter getDateYearFormat() {
|
||||||
return dateYearFormat;
|
return dateYearFormat;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateYearFormat(DateTimeFormatter dateYearFormat) {
|
public RenderingContext setDateYearFormat(DateTimeFormatter dateYearFormat) {
|
||||||
this.dateYearFormat = dateYearFormat;
|
this.dateYearFormat = dateYearFormat;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateYearFormatString(String dateYearFormat) {
|
public RenderingContext setDateYearFormatString(String dateYearFormat) {
|
||||||
this.dateYearFormat = DateTimeFormatter.ofPattern(dateYearFormat);
|
this.dateYearFormat = DateTimeFormatter.ofPattern(dateYearFormat);
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DateTimeFormatter getDateYearMonthFormat() {
|
public DateTimeFormatter getDateYearMonthFormat() {
|
||||||
return dateYearMonthFormat;
|
return dateYearMonthFormat;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateYearMonthFormat(DateTimeFormatter dateYearMonthFormat) {
|
public RenderingContext setDateYearMonthFormat(DateTimeFormatter dateYearMonthFormat) {
|
||||||
this.dateYearMonthFormat = dateYearMonthFormat;
|
this.dateYearMonthFormat = dateYearMonthFormat;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateYearMonthFormatString(String dateYearMonthFormat) {
|
public RenderingContext setDateYearMonthFormatString(String dateYearMonthFormat) {
|
||||||
this.dateYearMonthFormat = DateTimeFormatter.ofPattern(dateYearMonthFormat);
|
this.dateYearMonthFormat = DateTimeFormatter.ofPattern(dateYearMonthFormat);
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResourceRendererMode getMode() {
|
public ResourceRendererMode getMode() {
|
||||||
return mode;
|
return mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMode(ResourceRendererMode mode) {
|
public RenderingContext setMode(ResourceRendererMode mode) {
|
||||||
this.mode = mode;
|
this.mode = mode;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isContained() {
|
public boolean isContained() {
|
||||||
return contained;
|
return contained;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setContained(boolean contained) {
|
public RenderingContext setContained(boolean contained) {
|
||||||
this.contained = contained;
|
this.contained = contained;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
public boolean isShowComments() {
|
||||||
|
return showComments;
|
||||||
|
}
|
||||||
|
public RenderingContext setShowComments(boolean showComments) {
|
||||||
|
this.showComments = showComments;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue