[#33441] fix SmartSearch menu item missing parameters#3285
[#33441] fix SmartSearch menu item missing parameters#3285itbra wants to merge 13 commits intojoomla:stagingfrom
Conversation
SmartSearch evaluates 2 parameters - show_suggested_query and show_explained_query on the results page (/components/com_finder/views/search/tmpl/default_results.php) that haven't been configurable through the menu item configuration since its deployment through jXtended. But it should be configurable whether or not to suggest alternative search terms or explain how to improve the search rather than overriding the view just for this circumstance. So i added these two options to the menu item configuration file (/components/com_finder/views/search/tmpl/default.xml) and added translation to (/administrator/language/en-GB/en-GB.com_finder.sys) thus enabling the evaluation of these parameters to do what a parameter should do: enable/disable.
SmartSearch evaluates 2 parameters - show_suggested_query and show_explained_query on the results page (/components/com_finder/views/search/tmpl/default_results.php) that haven't been configurable through the menu item configuration since its deployment through jXtended. But it should be configurable whether or not to suggest alternative search terms or explain how to improve the search rather than overriding the view just for this circumstance. So i added these two options to the menu item configuration file (/components/com_finder/views/search/tmpl/default.xml) and added translation to (/administrator/language/en-GB/en-GB.com_finder.sys) thus enabling the evaluation of these parameters to do what a parameter should do: enable/disable.
|
Could these two parameters be added to the component options too? |
|
They are. Check the "files changed" tab. The fix covers administrator/language/en-GB/en-GB.com_finder.sys.ini and components/com_finder/views/search/tmpl/default.xml. Or mabe i am getting you wrong and you could specify your comment, please? |
|
I mean when you go Components -> Smart Search -> Options. I think you just need to add the fields into the config.xml file if memory serves. |
|
I think this doesn't relate to the component config, because these options related to the view (menu item config) rather than to the component globally. Because, if for example you have more than one search page it might be wished to show them on one page while not wanting to show them on the other. A global option wouldn't allow this and make them on/off-configurable only which makes no sense to me. The menu item options instead allow for different configuration. |
|
@itbra What we usually do is adding the parameter in both places. In the menu item we then use an additional (default) option So I'd support the request of Chris to add them to the component config plus adding the "Use Global" option to the menu item. |
|
Your arguments make sense. So far i didn't think of setting up a global config to be overridden if required.
Didn't consider this. In this case it absolutely makes sense. I'll add the requested change asap. |
Added *JGLOBAL_USE_GLOBAL* option to *show_suggested_query* and *show_explained_query parameters*
Added *show_suggested_query* and *show_explained_query* parameters to make them configurable and overwritable
|
Done. Please let me know if this suits. |
There was a problem hiding this comment.
Default should be "1" to correspond with current behaviour.
|
Good work. Just needs some tweaks to the English as indicated. |
There was a problem hiding this comment.
Perhaps change the fields to type="list" for consistency with other fields on the screen?
Changed default values of *show_suggested_query* and *show_explained_query* to 1. Changed option titles from JYES and JNO to JSHOW and JHIDE
Changed translations for *COM_FINDER_SHOW_SUGGESTED_QUERY_* and *COM_FINDER_SHOW_EXPLAINED_QUERY_*
Changed field types of *show_suggested_query* and *show_explained_query* from radio to list
There was a problem hiding this comment.
Can you drop the question mark at the end of this sentence. My fault, I wasn't clear enough in my last comment.
|
With the last couple of tweaks I think it's good to go. Many thanks for working on this. |
|
I just checked both existing com.finder ini and sys.ini and found out that most lang strings in the sys.ini should be in fact in the .ini file, (including the new ones in this PR which constants should rather be of the type COM_FINDER_CONFIG_) My intention was to correct this ASAP and adapt this PR to fit. As far as I know, we should only keep in the sys.ini: `; Joomla! Project COM_FINDER="Smart Search" COM_FINDER_MENU_SEARCH_VIEW_DEFAULT_TEXT="The default search layout." |
Removed question marks
|
True. I was also wondering why these appear in the .sys.ini, but didn't wanna touch it since i thought there was good reason for it. Let me know if you want me to move them. |
|
I can make a PR, but it would have to be applied before yours or after yours. For example and evidently change in the xml(s) My test show here that all COM_FINDER_CONFIG_etc strings in the sys.ini should be deleted. Also the Should be moved to the .ini (alpha the strings when doing such) |
|
@infograf768 Sounds good to me. I've noticed some inconsistencies in the UI between the component options and the menu options, but given that we need to get 3.3 out the door, I think it best to get this PR merged and then work on a separate PR to improve the UI. |
Added substring *CONFIG_* to new translation keys.
Added substring *CONFIG_* to new options
Added substring *CONFIG_* to new language keys.
|
Done, hope i didn't oversee anything. Please let me know. |
|
You forgot to add your new ini strings to /administrator/language/en-GB/en-GB.com_finder.ini instead of the sys.ini Also, you need to move from the sys.ini to the ini: COM_FINDER_SEARCH_FILTER_SEARCH_LABEL="Search Filter" And last, to delete from the sys.ini all the existing strings of type COM_FINDER_CONFIG_etc |
|
This is quite confusing. You said, you'll to integrate the move of all strings that do not belong to my PR from .sys.ini to .ini via a new PR, which is why i only edited my language strings. Those you mention above are not part of my PR. Now i don't know what to move where. Just to get things clear: You want me to move all langage strings from .sys.ini to .ini and leave within .sys.ini only this block:
|
|
Leave only in sys.ini these 4 strings indeed, BUT NOT MOVE ALL sys.ini strings to ini.
|
|
Done. |
|
Merged after deleting the redundant CONFIG strings in sys.ini. Thanks |
|
It's also missing the number of results to show, however functionality to set it is not implemented in Smart search component and falls back to global Default List Limit |
|
There is one more parameters missing in both Component conffig and View config: |
|
Please open a new bug report with all needed information. Comments on a closed / merged PR get missed fast. Thanks |
Fixing issue described in bug #33458, related to missing menu item parameters in FinderViewSearch results page (components/com_finder/views/search/tmpl/default_results.php) not allowing to enable/disable the display of the related content.