Лента за търсене { let serviceURL = new URL(Liferay.ThemeDisplay.getPathContext() + „/o/portal-search-rest/v1.0/suggestions“, Liferay.ThemeDisplay.getPortalURL()); const scopeIfDefined = „this-site“; const scopeIfLetUserChoose = $(„#_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_selectScope“).val(); serviceURL.searchParams.append(„currentURL“, window.location.href); serviceURL.searchParams.append(„destinationFriendlyURL“, „/searchall“); serviceURL.searchParams.append(„groupId“, themeDisplay.getScopeGroupId()); serviceURL.searchParams.append(„keywordsParameterName“, „q“); serviceURL.searchParams.append(„plid“, themeDisplay.getPlid()); serviceURL.searchParams.append(„scope“, „false“ == ‘true’ ? scopeIfLetUserChoose : scopeIfDefined); serviceURL.searchParams.append(„search“, request.term); return serviceURL; }; const _renderSuggestions = (suggestions) => { return suggestions.map((suggestion) => { var suggestionSearchURL…