mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 10:46:52 +00:00

* Releases updated version of datahub-web client UI code * Fix typo in yarn lock * Change yarn lock to match yarn registry directories * Previous commit missed some paths * Even more changes to yarnlock missing in previous commit * Include codegen file for typings * Add files to get parity for datahub-web and current OS datahub-midtier * Add in typo fix from previous commit - change to proper license * Implement proper OS fix for person entity picture url * Workarounds for open source DH issues * Fixes institutional memory api and removes unopensourced tabs for datasets * Fixes search dataset deprecation and user search issue as a result of changes * Remove internal only options in the avatar menu
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import Component from '@ember/component';
|
|
import { tagName, layout } from '@ember-decorators/component';
|
|
import { computed } from '@ember/object';
|
|
import { DataModelEntity } from '@datahub/data-models/constants/entity';
|
|
import { IDynamicLinkNode } from '@datahub/utils/types/vendor/dynamic-link';
|
|
// @ts-ignore: Ignore import of compiled template
|
|
import template from '../../templates/components/browser/search-within-hierarchy';
|
|
|
|
/**
|
|
* Indicates the total number of entities within a category and on user interaction
|
|
* performs an advanced search query for entities within the related category
|
|
* @export
|
|
* @class BrowserSearchWithinHierarchy
|
|
* @extends {Component}
|
|
*/
|
|
@layout(template)
|
|
@tagName('')
|
|
export default class BrowserSearchWithinHierarchy extends Component {
|
|
/**
|
|
* The identifier for a DataModelEntity
|
|
*/
|
|
entityType?: DataModelEntity['displayName'];
|
|
|
|
/**
|
|
* Count of entities within the related browse hierarchy
|
|
*/
|
|
count = 0;
|
|
|
|
/**
|
|
* Browse hierarchy currently being viewed, represented by the list of segments
|
|
*/
|
|
segments: Array<string> = [];
|
|
|
|
/**
|
|
* Attribute to reference component element
|
|
*/
|
|
readonly searchHierarchy = '';
|
|
|
|
/**
|
|
* Call To Action for the component element,
|
|
* e.g. `View 20 features`
|
|
* @readonly
|
|
*/
|
|
@computed('count', 'entityType')
|
|
get cta(): string {
|
|
const { count, entityType } = this;
|
|
return count && entityType ? `View ${count} ${entityType}` : '';
|
|
}
|
|
|
|
/**
|
|
* get link query params
|
|
*/
|
|
@computed('entityType', 'segments', 'cta')
|
|
get link(): IDynamicLinkNode<Array<string>, 'browsesearch.entity', { page: number; path: string }> {
|
|
const { entityType = '', segments, cta } = this;
|
|
return {
|
|
text: cta,
|
|
title: cta,
|
|
model: [entityType],
|
|
route: 'browsesearch.entity',
|
|
queryParams: {
|
|
page: 1,
|
|
path: segments.join('/')
|
|
}
|
|
};
|
|
}
|
|
}
|