fix rendering bugs (#1671)
* fix rendering bugs * release notes --------- Co-authored-by: Grahame Grieve <grahameg@gmail.ccom>
This commit is contained in:
parent
66b8e57564
commit
6a66f37898
|
@ -4,4 +4,4 @@
|
||||||
|
|
||||||
## Other code changes
|
## Other code changes
|
||||||
|
|
||||||
* no changes
|
* Rendering fixes
|
||||||
|
|
|
@ -685,10 +685,10 @@ public class PatientRenderer extends ResourceRenderer {
|
||||||
private boolean hasRenderablePhoto(ResourceWrapper r) throws UnsupportedEncodingException, FHIRException, IOException {
|
private boolean hasRenderablePhoto(ResourceWrapper r) throws UnsupportedEncodingException, FHIRException, IOException {
|
||||||
if (r.has("photo")) {
|
if (r.has("photo")) {
|
||||||
List<ResourceWrapper> a = r.children("photo");
|
List<ResourceWrapper> a = r.children("photo");
|
||||||
for (ResourceWrapper v : a) {
|
for (ResourceWrapper att : a) {
|
||||||
Attachment att = (Attachment) v.getBase();
|
if (att.has("contentType") && att.primitiveValue("contentType").startsWith("image/") &&
|
||||||
if (att.hasContentType() && att.getContentType().startsWith("image/") &&
|
att.has("data") && (!context.isInlineGraphics() || (att.primitiveValue("data").length() > 0 &&
|
||||||
att.getData() != null && (!context.isInlineGraphics() || (att.getData().length > 0 && att.getData().length < MAX_IMAGE_LENGTH))) {
|
att.primitiveValue("data").length() < MAX_IMAGE_LENGTH))) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -169,8 +169,8 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
|
||||||
} else if (ew.fhirType().equals("ElementDefinition")) {
|
} else if (ew.fhirType().equals("ElementDefinition")) {
|
||||||
x.tx("todo-bundle");
|
x.tx("todo-bundle");
|
||||||
} else if (!renderDataType(status, parent, x, ew)) {
|
} else if (!renderDataType(status, parent, x, ew)) {
|
||||||
if (Utilities.existsInList(ew.fhirType(), "Attachment", "Narrative", "Meta", "ProductShelfLife", "RelatedArtifact")) {
|
if (!Utilities.existsInList(ew.fhirType(), "Narrative", "Meta", "ProductShelfLife", "RelatedArtifact")) {
|
||||||
throw new NotImplementedException("type "+ew.fhirType()+" not handled. This may be due to unresolved inter-version compatibility issues");
|
throw new NotImplementedException("type "+ew.fhirType()+" not handled by the rendering framework");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -341,6 +341,9 @@ public abstract class ResourceRenderer extends DataRenderer {
|
||||||
if (rr == null) {
|
if (rr == null) {
|
||||||
String disp = display != null && display.hasPrimitiveValue() ? displayDataType(display) : actual.primitiveValue();
|
String disp = display != null && display.hasPrimitiveValue() ? displayDataType(display) : actual.primitiveValue();
|
||||||
x.ah(context.prefixLocalHref(actual.primitiveValue())).tx(disp);
|
x.ah(context.prefixLocalHref(actual.primitiveValue())).tx(disp);
|
||||||
|
} else if (rr.getResource() == null) {
|
||||||
|
String disp = display != null && display.hasPrimitiveValue() ? displayDataType(display) : "??";
|
||||||
|
x.ah(context.prefixLocalHref(rr.getWebPath())).tx(disp);
|
||||||
} else {
|
} else {
|
||||||
String disp = display != null && display.hasPrimitiveValue() ? displayDataType(display) : RendererFactory.factory(rr.getResource(), context.forContained()).buildSummary(rr.getResource());
|
String disp = display != null && display.hasPrimitiveValue() ? displayDataType(display) : RendererFactory.factory(rr.getResource(), context.forContained()).buildSummary(rr.getResource());
|
||||||
x.ah(context.prefixLocalHref(rr.getWebPath())).tx(disp);
|
x.ah(context.prefixLocalHref(rr.getWebPath())).tx(disp);
|
||||||
|
|
|
@ -195,7 +195,7 @@ public class ResourceWrapperNative extends ResourceWrapper {
|
||||||
|
|
||||||
public Resource getResourceNative() {
|
public Resource getResourceNative() {
|
||||||
ResourceWrapper focus = getResourceWrapper();
|
ResourceWrapper focus = getResourceWrapper();
|
||||||
return (Resource) ((ResourceWrapperNative) focus).element;
|
return focus == null ? null : (Resource) ((ResourceWrapperNative) focus).element;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean hasFormatComment() {
|
public boolean hasFormatComment() {
|
||||||
|
|
Loading…
Reference in New Issue