Skip to content

Commit

Permalink
Production deploy -- 332cbcf
Browse files Browse the repository at this point in the history
  • Loading branch information
bherr2 committed Jan 8, 2024
1 parent d3082ee commit 195a87f
Show file tree
Hide file tree
Showing 74 changed files with 478 additions and 486 deletions.
2 changes: 1 addition & 1 deletion body-ui/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion body-ui/wc.js

Large diffs are not rendered by default.

35 changes: 16 additions & 19 deletions docs/ccf-database/classes/HuBMAPTissueBlock.html
Original file line number Diff line number Diff line change
Expand Up @@ -780,8 +780,8 @@ <h3 id="methods">

<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="287"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:287</a></div>
<div class="io-line">Defined in <a href="" data-line="284"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:284</a></div>
</td>
</tr>

Expand Down Expand Up @@ -859,8 +859,8 @@ <h3 id="methods">

<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="315"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:315</a></div>
<div class="io-line">Defined in <a href="" data-line="312"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:312</a></div>
</td>
</tr>

Expand Down Expand Up @@ -926,8 +926,8 @@ <h3 id="methods">

<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="390"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:390</a></div>
<div class="io-line">Defined in <a href="" data-line="387"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:387</a></div>
</td>
</tr>

Expand Down Expand Up @@ -1084,8 +1084,8 @@ <h3 id="methods">

<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="426"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:426</a></div>
<div class="io-line">Defined in <a href="" data-line="423"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:423</a></div>
</td>
</tr>

Expand Down Expand Up @@ -1121,8 +1121,8 @@ <h3 id="methods">

<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="430"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:430</a></div>
<div class="io-line">Defined in <a href="" data-line="427"
class="link-to-prism">projects/ccf-database/src/lib/xconsortia/xconsortia-data.ts:427</a></div>
</td>
</tr>

Expand Down Expand Up @@ -1390,24 +1390,21 @@ <h3 id="methods">
const groupName &#x3D; GROUP_UUID_MAPPING[dataset.group_uuid as string] || dataset.group_name as string;
const creator &#x3D; dataset.created_by_user_displayname;

const types &#x3D; [
...dataset.data_types as string[],
get(dataset, [&#x27;ingest_metadata&#x27;, &#x27;metadata&#x27;, &#x27;assay_type&#x27;], &#x27;&#x27;)
];
const typesSearch &#x3D; types.join(&#x27;|&#x27;).toLowerCase();
const types &#x3D; (dataset.dataset_type ?? &#x27;&#x27;) as string;
const typesSearch &#x3D; types.toLowerCase();

let technology: string;
let thumbnail &#x3D; &#x27;assets/icons/ico-unknown.svg&#x27;;
if (typesSearch.indexOf(&#x27;10x&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;10x&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-bulk-10x.svg&#x27;;
} else if (typesSearch.indexOf(&#x27;af&#x27;) !&#x3D;&#x3D; -1) {
} else if (typesSearch.indexOf(&#x27;af&#x27;) !&#x3D;&#x3D; -1 || typesSearch.indexOf(&#x27;auto-fluorescence&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;AF&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-spatial-af.svg&#x27;;
} else if (typesSearch.indexOf(&#x27;codex&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;CODEX&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-spatial-codex.svg&#x27;;
} else if (typesSearch.indexOf(&#x27;imc&#x27;) !&#x3D;&#x3D; -1) {
} else if (typesSearch.indexOf(&#x27;imc&#x27;) !&#x3D;&#x3D; -1 || typesSearch.indexOf(&#x27;imaging mass cytometry&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;IMC&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-spatial-imc.svg&#x27;;
} else if ((typesSearch.indexOf(&#x27;lc&#x27;) !&#x3D;&#x3D; -1) &amp;&amp; (typesSearch.indexOf(&#x27;af&#x27;) &#x3D;&#x3D;&#x3D; -1)) {
Expand All @@ -1418,15 +1415,15 @@ <h3 id="methods">
} else if (typesSearch.indexOf(&#x27;pas&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;PAS&#x27;;
} else {
technology &#x3D; &#x27;OTHER&#x27;;
technology &#x3D; types.split(/ \[/)[0];
}
thumbnail &#x3D; this.getDatasetThumbnail(dataset, serviceToken) ?? thumbnail;

return {
&#x27;@id&#x27;: this.portal.idPrefix + dataset.uuid,
&#x27;@type&#x27;: &#x27;Dataset&#x27;,
label: &#x60;Registered ${dateEntered}, ${creator}, ${groupName}&#x60;,
description: &#x60;Data/Assay Types: ${types.join(&#x27;, &#x27;)}&#x60;,
description: &#x60;Dataset Type: ${types}&#x60;,
link: &#x60;${this.portal.portal}dataset${this.portal.portalParams}${dataset.uuid}&#x60;,
technology,
thumbnail
Expand Down
15 changes: 6 additions & 9 deletions docs/ccf-database/interfaces/Portal.html
Original file line number Diff line number Diff line change
Expand Up @@ -542,24 +542,21 @@ <h3 id="inputs">Properties</h3>
const groupName &#x3D; GROUP_UUID_MAPPING[dataset.group_uuid as string] || dataset.group_name as string;
const creator &#x3D; dataset.created_by_user_displayname;

const types &#x3D; [
...dataset.data_types as string[],
get(dataset, [&#x27;ingest_metadata&#x27;, &#x27;metadata&#x27;, &#x27;assay_type&#x27;], &#x27;&#x27;)
];
const typesSearch &#x3D; types.join(&#x27;|&#x27;).toLowerCase();
const types &#x3D; (dataset.dataset_type ?? &#x27;&#x27;) as string;
const typesSearch &#x3D; types.toLowerCase();

let technology: string;
let thumbnail &#x3D; &#x27;assets/icons/ico-unknown.svg&#x27;;
if (typesSearch.indexOf(&#x27;10x&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;10x&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-bulk-10x.svg&#x27;;
} else if (typesSearch.indexOf(&#x27;af&#x27;) !&#x3D;&#x3D; -1) {
} else if (typesSearch.indexOf(&#x27;af&#x27;) !&#x3D;&#x3D; -1 || typesSearch.indexOf(&#x27;auto-fluorescence&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;AF&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-spatial-af.svg&#x27;;
} else if (typesSearch.indexOf(&#x27;codex&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;CODEX&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-spatial-codex.svg&#x27;;
} else if (typesSearch.indexOf(&#x27;imc&#x27;) !&#x3D;&#x3D; -1) {
} else if (typesSearch.indexOf(&#x27;imc&#x27;) !&#x3D;&#x3D; -1 || typesSearch.indexOf(&#x27;imaging mass cytometry&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;IMC&#x27;;
thumbnail &#x3D; &#x27;assets/icons/ico-spatial-imc.svg&#x27;;
} else if ((typesSearch.indexOf(&#x27;lc&#x27;) !&#x3D;&#x3D; -1) &amp;&amp; (typesSearch.indexOf(&#x27;af&#x27;) &#x3D;&#x3D;&#x3D; -1)) {
Expand All @@ -570,15 +567,15 @@ <h3 id="inputs">Properties</h3>
} else if (typesSearch.indexOf(&#x27;pas&#x27;) !&#x3D;&#x3D; -1) {
technology &#x3D; &#x27;PAS&#x27;;
} else {
technology &#x3D; &#x27;OTHER&#x27;;
technology &#x3D; types.split(/ \[/)[0];
}
thumbnail &#x3D; this.getDatasetThumbnail(dataset, serviceToken) ?? thumbnail;

return {
&#x27;@id&#x27;: this.portal.idPrefix + dataset.uuid,
&#x27;@type&#x27;: &#x27;Dataset&#x27;,
label: &#x60;Registered ${dateEntered}, ${creator}, ${groupName}&#x60;,
description: &#x60;Data/Assay Types: ${types.join(&#x27;, &#x27;)}&#x60;,
description: &#x60;Dataset Type: ${types}&#x60;,
link: &#x60;${this.portal.portal}dataset${this.portal.portalParams}${dataset.uuid}&#x60;,
technology,
thumbnail
Expand Down
3 changes: 1 addition & 2 deletions docs/ccf-database/interfaces/SearchResultJson.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,7 @@ <h3 id="inputs">Properties</h3>
&#x27;descendants.uuid&#x27;,
&#x27;descendants.hubmap_id&#x27;,
&#x27;descendants.sennet_id&#x27;,
&#x27;descendants.data_types&#x27;,
&#x27;descendants.ingest_metadata.metadata.assay_type&#x27;,
&#x27;descendants.dataset_type&#x27;,
&#x27;descendants.thumbnail_file&#x27;,
&#x27;descendants.metadata.files.rel_path&#x27;,
&#x27;rui_location&#x27;, &#x27;sample_category&#x27;
Expand Down
4 changes: 2 additions & 2 deletions docs/ccf-database/js/search/search_index.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions docs/ccf-database/miscellaneous/variables.html
Original file line number Diff line number Diff line change
Expand Up @@ -1477,8 +1477,7 @@ <h3></h3> <table class="table table-sm table-bordered">
&#x27;descendants.uuid&#x27;,
&#x27;descendants.hubmap_id&#x27;,
&#x27;descendants.sennet_id&#x27;,
&#x27;descendants.data_types&#x27;,
&#x27;descendants.ingest_metadata.metadata.assay_type&#x27;,
&#x27;descendants.dataset_type&#x27;,
&#x27;descendants.thumbnail_file&#x27;,
&#x27;descendants.metadata.files.rel_path&#x27;,
&#x27;rui_location&#x27;, &#x27;sample_category&#x27;
Expand Down
4 changes: 2 additions & 2 deletions docs/ccf-organ-info/js/search/search_index.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/ccf-organ-info/modules/LinkCardsModule.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<title>cluster_LinkCardsModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="160,-70 160,-268 336,-268 336,-70 160,-70"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_LinkCardsModule_declarations</title>
<polygon fill="none" stroke="black" points="170,-78 170,-130 326,-130 326,-78 170,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_LinkCardsModule_exports</title>
<polygon fill="none" stroke="black" points="168,-208 168,-260 328,-260 328,-208 168,-208"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_LinkCardsModule_declarations</title>
<polygon fill="none" stroke="black" points="170,-78 170,-130 326,-130 326,-78 170,-78"/>
</g>
<!-- LinkCardsComponent -->
<g id="node1" class="node">
<title>LinkCardsComponent</title>
Expand Down
8 changes: 4 additions & 4 deletions docs/ccf-organ-info/modules/LinkCardsModule/dependencies.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/ccf-organ-info/modules/SlideToggleModule.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<title>cluster_SlideToggleModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="155,-70 155,-268 341,-268 341,-70 155,-70"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_SlideToggleModule_exports</title>
<polygon fill="none" stroke="black" points="163,-208 163,-260 333,-260 333,-208 163,-208"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_SlideToggleModule_declarations</title>
<polygon fill="none" stroke="black" points="165,-78 165,-130 331,-130 331,-78 165,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_SlideToggleModule_exports</title>
<polygon fill="none" stroke="black" points="163,-208 163,-260 333,-260 333,-208 163,-208"/>
</g>
<!-- SlideToggleComponent -->
<g id="node1" class="node">
<title>SlideToggleComponent</title>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/ccf-rui/js/search/search_index.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/DrawerModule.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<title>cluster_DrawerModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 638,-268 638,-70 8,-70"/>
</g>
<g id="clust8" class="cluster">
<title>cluster_DrawerModule_exports</title>
<polygon fill="none" stroke="black" points="82,-208 82,-260 563,-260 563,-208 82,-208"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_DrawerModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 630,-130 630,-78 16,-78"/>
</g>
<g id="clust8" class="cluster">
<title>cluster_DrawerModule_exports</title>
<polygon fill="none" stroke="black" points="82,-208 82,-260 563,-260 563,-208 82,-208"/>
</g>
<!-- ContainerComponent -->
<g id="node1" class="node">
<title>ContainerComponent</title>
Expand Down
8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/DrawerModule/dependencies.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/ExtractionSetDropdownModule.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<title>cluster_ExtractionSetDropdownModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="122,-70 122,-268 374,-268 374,-70 122,-70"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_ExtractionSetDropdownModule_declarations</title>
<polygon fill="none" stroke="black" points="131,-78 131,-130 365,-130 365,-78 131,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_ExtractionSetDropdownModule_exports</title>
<polygon fill="none" stroke="black" points="130,-208 130,-260 366,-260 366,-208 130,-208"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_ExtractionSetDropdownModule_declarations</title>
<polygon fill="none" stroke="black" points="131,-78 131,-130 365,-130 365,-78 131,-78"/>
</g>
<!-- ExtractionSetDropdownComponent -->
<g id="node1" class="node">
<title>ExtractionSetDropdownComponent</title>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/HeaderModule.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<title>cluster_HeaderModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="169,-70 169,-268 327,-268 327,-70 169,-70"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_HeaderModule_exports</title>
<polygon fill="none" stroke="black" points="177,-208 177,-260 319,-260 319,-208 177,-208"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_HeaderModule_declarations</title>
<polygon fill="none" stroke="black" points="179,-78 179,-130 317,-130 317,-78 179,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_HeaderModule_exports</title>
<polygon fill="none" stroke="black" points="177,-208 177,-260 319,-260 319,-208 177,-208"/>
</g>
<!-- HeaderComponent -->
<g id="node1" class="node">
<title>HeaderComponent</title>
Expand Down
8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/HeaderModule/dependencies.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/JsonFileReaderModule.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<title>cluster_JsonFileReaderModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="146,-70 146,-268 350,-268 350,-70 146,-70"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_JsonFileReaderModule_declarations</title>
<polygon fill="none" stroke="black" points="156,-78 156,-130 340,-130 340,-78 156,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_JsonFileReaderModule_exports</title>
<polygon fill="none" stroke="black" points="154,-208 154,-260 342,-260 342,-208 154,-208"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_JsonFileReaderModule_declarations</title>
<polygon fill="none" stroke="black" points="156,-78 156,-130 340,-130 340,-78 156,-78"/>
</g>
<!-- JsonFileReaderComponent -->
<g id="node1" class="node">
<title>JsonFileReaderComponent</title>
Expand Down
8 changes: 4 additions & 4 deletions docs/ccf-rui/modules/JsonFileReaderModule/dependencies.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 195a87f

Please sign in to comment.