feat: display related item metadata on value as html #572
This commit is contained in:
parent
33fdb5998e
commit
9bcf653d4d
|
@ -205,8 +205,7 @@ class Relationship extends Metadata_Type {
|
||||||
// item not found
|
// item not found
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return "<div class='tainacan-compound-group'> {$return} </div>";
|
||||||
return $return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function get_item_html($item) {
|
private function get_item_html($item) {
|
||||||
|
@ -214,41 +213,64 @@ class Relationship extends Metadata_Type {
|
||||||
$id = $item->get_id();
|
$id = $item->get_id();
|
||||||
|
|
||||||
$search_meta_id = $this->get_option('search');
|
$search_meta_id = $this->get_option('search');
|
||||||
|
$display_metas = $this->get_option('display_related_item_metadata ');
|
||||||
|
|
||||||
if ( $id && $search_meta_id ) {
|
if(!empty($display_metas)) {
|
||||||
$link = get_permalink( (int) $id );
|
$args = !empty($display_metas) ? ['post__in' => $display_metas] : [];
|
||||||
|
$item_metadata = $item->get_metadata($args);
|
||||||
$search_meta_id = $this->get_option('search');
|
$metadata_value = [];
|
||||||
|
foreach ( $item_metadata as $meta_id => $meta ) {
|
||||||
$metadatum = \Tainacan\Repositories\Metadata::get_instance()->fetch((int) $search_meta_id);
|
if ( $meta instanceof \Tainacan\Entities\Item_Metadata_Entity && $meta->get_value_as_html() != '' ) {
|
||||||
|
$as_link = $search_meta_id == $meta_id ? $this->get_item_link($item, $search_meta_id) : false;
|
||||||
$label = '';
|
$html = $this->get_meta_html($meta);
|
||||||
|
$metadata_value[] = $html;
|
||||||
if ($metadatum instanceof \Tainacan\Entities\Metadatum) {
|
|
||||||
$item_meta = new \Tainacan\Entities\Item_Metadata_Entity($item, $metadatum);
|
|
||||||
$label = $item_meta->get_value_as_string();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( empty($label) ) {
|
|
||||||
$label = $item->get_title();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_string($link)) {
|
|
||||||
if ( is_user_logged_in() ||
|
|
||||||
\is_post_status_viewable( $item->get_status() ) &&
|
|
||||||
\is_post_status_viewable($item->get_collection()->get_status()) ) {
|
|
||||||
$return = "<a data-linkto='item' data-id='$id' href='$link'>";
|
|
||||||
$return.= $label;
|
|
||||||
$return .= "</a>";
|
|
||||||
} else {
|
|
||||||
$return.= $label;
|
|
||||||
}
|
}
|
||||||
|
$return = implode("\n", $metadata_value);
|
||||||
|
}
|
||||||
|
$return = "<div class='tainacan-compound-metadatum'> {$return} </div>";
|
||||||
|
} else {
|
||||||
|
if ( $id && $search_meta_id ) {
|
||||||
|
$search_meta_id = $this->get_option('search');
|
||||||
|
$as_link = $this->get_item_link($item, $search_meta_id);
|
||||||
|
$return = "<div>$as_link</div> \n $return";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function get_item_link($item, $search_meta_id) {
|
||||||
|
$id = $item->get_id();
|
||||||
|
$link = get_permalink( (int) $id );
|
||||||
|
$metadatum = \Tainacan\Repositories\Metadata::get_instance()->fetch((int) $search_meta_id);
|
||||||
|
$value = '';
|
||||||
|
if ($metadatum instanceof \Tainacan\Entities\Metadatum) {
|
||||||
|
$item_meta = new \Tainacan\Entities\Item_Metadata_Entity($item, $metadatum);
|
||||||
|
$value = $item_meta->get_value_as_string();
|
||||||
|
}
|
||||||
|
if ( empty($value) ) {
|
||||||
|
$value = $item->get_title();
|
||||||
|
}
|
||||||
|
if (is_string($link)) {
|
||||||
|
if ( is_user_logged_in() ||
|
||||||
|
\is_post_status_viewable( $item->get_status() ) &&
|
||||||
|
\is_post_status_viewable($item->get_collection()->get_status()) ) {
|
||||||
|
$return = "<a data-linkto='item' data-id='$id' href='$link'> $value </a>";
|
||||||
|
} else {
|
||||||
|
$return = "<div>$value:</div>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function get_meta_html(\Tainacan\Entities\Item_Metadata_Entity $meta, $value_link = false) {
|
||||||
|
$html = '';
|
||||||
|
if ($meta instanceof \Tainacan\Entities\Item_Metadata_Entity && !empty($meta->get_value_as_html())) {
|
||||||
|
$html = '<div class="tainacan-metadatum"><label class="label">' . $meta->get_metadatum()->get_name() . '</label> <p>' . $value_link === false ? $meta->get_value_as_html() : $value_link . "</p></div>";
|
||||||
|
}
|
||||||
|
|
||||||
|
return $html;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get related Collection object
|
* Get related Collection object
|
||||||
* @return \Tainacan\Entities\Collection|false The Collection object or false
|
* @return \Tainacan\Entities\Collection|false The Collection object or false
|
||||||
|
|
Loading…
Reference in New Issue