Interface DataSearchStoreType interface DataSearchStoreType { hasSelectedEntity : boolean ; innerColumnsStore : undefined | DataSearchColumnsStoreType ; isDataLoadedInner : boolean ; isLoadingInner : boolean ; isQueryInvalid : boolean ; metaStore : MetaDataStoreType ; routerStore : RouterStoreType ; savedSearchStore : SavedSearchStore < JsonData > ; searchEntityKey : SearchEntityKey ; searchPanel : Universe . MDM . CE . Data . SearchPanelStoreType ; searchResult : DataSearchResultStoreType ; viewVariant : undefined | string ; get columns () : ISearchColumn [] ; get columnsStore () : undefined | C ; get displayName () : string ; get isDataLoaded () : boolean ; get isLoading () : boolean ; get isSilent () : boolean ; get namespaceId () : keyof INamespace ; get savedSearchId () : string ; get savedSearchNamespaces () : SearchNamespaceId [] ; get searchHits () : SearchHit [] ; get searchNamespaceId () : SearchNamespaceId ; get tableColumns () : (
| TableColumnWithoutData < SearchHit , undefined > | (
TableColumnWithoutData<SearchHit, ISearchColumn> & { data: ISearchColumn; }
)
)
[] ; get totalRecords () : number ; get typeName () : string ; addSearchTerms ( terms : JsonData [] , defaultSearchPayloadKey : keyof ISearchPayload , ) : void ; changeShow ( column : ISearchColumn , checked : boolean ) : void ; changeShowAll ( checked : boolean ) : void ; checkResourceRight ( item : ILastSearchItem < JsonData > ) : boolean ; clearSearch () : void ; clearSearchEntityKey () : void ; createColumnStore ( metaModel : undefined | IMetaModel , ) : undefined | DataSearchColumnsStoreType ; doSearch ( namespaceId ?: SearchNamespaceId , typeName ?: string , displayName ?: string , ) : Promise < void > ; getRowTypeName ( hit : SearchHit ) : string ; getSavedSearchItems ( isSystem ?: boolean , ) : Map < string , ILastSearchItem < JsonData > [] > ; getSystemTerms () : AbstractSearchTerm [] ; initSearchResult ( mainResponseKey : keyof ISearchPayload , searchResultCtor : ClassCtor < DataSearchResultStoreType > , opts ?: SearchStoreOpts , ) : DataSearchResultStoreType ; loadData () : Promise < void > ; loadFromSelectedSearch () : void ; loadFromState () : void ; loadMeta () : Promise < undefined | IMetaModel > ; registerSearchQuery () : void ; searchData () : Promise < void > ; setIsQueryInvalid ( isInvalid : boolean ) : void ; setLoading ( isLoading : boolean ) : void ; setSavedIndexByTerms ( searchTerms : JsonData [] , typeName : string ) : void ; setSortFields () : void ; setUrlQuery () : void ; setViewVariant ( variant : string ) : void ; toggleAdvancedMode ( advanced : boolean ) : void ; validateSearchTerms () : Promise < void > ; } Defined in app-sdk/index.d.ts:8786 Properties Readonlyhas Selected Entity hasSelectedEntity : boolean
Defined in app-sdk/index.d.ts:8787 Protectedinner Columns Store is Data Loaded Inner isDataLoadedInner : boolean
Protectedis Loading Inner isLoadingInner : boolean
is Query Invalid isQueryInvalid : boolean
Defined in app-sdk/index.d.ts:8788 view Variant viewVariant : undefined | string
Accessors columns Store get columnsStore () : undefined | C Protectedsaved Search Namespaces Methods Protectedadd Search Terms addSearchTerms ( terms : JsonData [] , defaultSearchPayloadKey : keyof ISearchPayload , ) : void Parameters terms : JsonData [] defaultSearchPayloadKey : keyof ISearchPayload Returns void change Show All changeShowAll ( checked : boolean ) : void Protected Abstractcheck Resource Right clear Search Entity Key clearSearchEntityKey () : void Protected Abstractcreate Column Store do Search doSearch ( namespaceId ?: SearchNamespaceId , typeName ?: string , displayName ?: string , ) : Promise < void > Parameters OptionalnamespaceId : SearchNamespaceId OptionaltypeName : string OptionaldisplayName : string Returns Promise < void > get Row Type Name Returns string Defined in app-sdk/index.d.ts:8791 get Saved Search Items Parameters OptionalisSystem : boolean get System Terms Defined in app-sdk/index.d.ts:8789 Protectedinit Search Result Protected Abstractload Data loadData () : Promise < void > Protectedload From Selected Search loadFromSelectedSearch () : void Protectedregister Search Query registerSearchQuery () : void search Data searchData () : Promise < void > set Is Query Invalid setIsQueryInvalid ( isInvalid : boolean ) : void Protectedset Loading setLoading ( isLoading : boolean ) : void Protectedset Saved Index By Terms setSavedIndexByTerms ( searchTerms : JsonData [] , typeName : string ) : void set View Variant setViewVariant ( variant : string ) : void toggle Advanced Mode toggleAdvancedMode ( advanced : boolean ) : void Protectedvalidate Search Terms validateSearchTerms () : Promise < void > Returns Promise < void > Promise.resolve() в случае успешной валидации и Promise.reject() с ValidationException в случае неуспешной.
Public