Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Instantsearch] Config refactor #769

Open
wants to merge 29 commits into
base: feature/instantsearch-config-update
Choose a base branch
from

Conversation

Jade-GG
Copy link
Collaborator

@Jade-GG Jade-GG commented Mar 10, 2025

This PR refactors how the config files are used:

  • Store-specific values now go under /config/rapidez/stores/[store_code]/[config_file].
    • This means that the themes and checkout_steps variables no longer have their own store-specific
  • Move window.config data to a separate web route
  • Move useAttributes data directly into the window.config data
  • All searchkit configuration now gets mapped and merged directly in php so that we don't have to do any mapping on the frontend
    • Side effect of this is that sorting label translations are now managed in your json translations
  • indexer.php config has been removed:
    • Adding custom models should be done by adding them to models.php
    • Changing the indexed visibility can be done by extending product.php and overwriting the shouldBeSearchable() function.

Copy link
Member

@royduin royduin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are the pros and cons of this approach?

Comment on lines -71 to +69
this.loaded = Object.keys(this.attributes).length > 0
this.loaded = true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where was this for?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is probably unnecessary now as we also check for the searchClient (v-if="loaded && searchClient"). I've left it here for now just in case it broke something by removing it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we handle the searchClient check here so we don't have to do that in the template?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need a view for this? Maybe just handle it with in the route file?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe, I wanted to keep things flexible for now so that you can always add anything else you might need here.

@@ -20,4 +21,11 @@
Route::get('checkout/{step?}', config('rapidez.routing.controllers.checkout'))->middleware('auth:magento-cart')->name('checkout');
Route::get('search', config('rapidez.routing.controllers.search'))->name('search');
Route::fallback(config('rapidez.routing.controllers.fallback'));

Route::middleware('cache.headers:public;max_age=3600;s_maxage=3600;stale_while_revalidate=3600;etag')->group(function () {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really want to cache this? We also do have a cachekey config which changes when the cache is cleared; on the frontend that key will be compared and flushes the local storage so outdated data will be refreshed. There are probably more cases where the config is dynamic?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@indykoning what do you think?

Comment on lines +277 to +281
if (! in_array($this->visibility, [
static::VISIBILITY_IN_CATALOG,
static::VISIBILITY_IN_SEARCH,
static::VISIBILITY_BOTH,
])) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With this change it's not configurable anymore?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My take was that if you want to configure this, you can overwrite the function in your own product model. However with the searchable refactor that Indy did I'm not sure if this would still work. 🤔

@@ -285,6 +262,19 @@ protected function registerConfigs(): self
$this->mergeConfigFrom(__DIR__ . '/../config/rapidez/' . $configFile . '.php', 'rapidez.' . $configFile);
}

// Find all store-specific config files and merge them in
// TODO: Add how to use this in the Rapidez documentation
foreach (glob(__DIR__ . '../config/rapidez/stores/*/*.php') as $configFile) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this a heavy task? Does this work with the config caching?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not really, at least not in my experience. You could, of course, theoretically put a million dummy files into the folder and then it'll definitely start getting a bit heavy. But under normal use I don't see this having any meaningful impact.

The caching will end up working the same, as the paths don't change dynamically. Essentially, if the caching works for the code above (which it does) then it also works for this.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Glob can actually be quite a heavy operation since it's an IO operation, as well as a recursive one.
We probably do not want this running on every web request. We might want to check wether the config is cached and if so skip this code.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, we could cache the list of config files we get out of the glob and the few lines after? Keeps the code relatively simple and saves on the performance cost of that part.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Doesn't Laravel provide something for this?
  • Maybe simply override the config part from Laravel and add a store check there?
  • Or reverse it; currently we're checking all files but we do know the stores from the database, maybe use that? Or keep a "custom store config list" somewhere?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This glob won't be executed from the core as from the core you will never have any store configs. That will be within your project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants