-
Notifications
You must be signed in to change notification settings - Fork 12
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
base: feature/instantsearch-config-update
Are you sure you want to change the base?
[Instantsearch] Config refactor #769
Conversation
…ntsearch-index-cleanup
…com/rapidez/core into feature/instantsearch-index-cleanup
…ntsearch-index-cleanup
There was a problem hiding this 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?
this.loaded = Object.keys(this.attributes).length > 0 | ||
this.loaded = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where was this for?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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 () { |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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?
if (! in_array($this->visibility, [ | ||
static::VISIBILITY_IN_CATALOG, | ||
static::VISIBILITY_IN_SEARCH, | ||
static::VISIBILITY_BOTH, | ||
])) { |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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. 🤔
src/RapidezServiceProvider.php
Outdated
@@ -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) { |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
…/core into feature/configs-refactor
This PR refactors how the config files are used:
/config/rapidez/stores/[store_code]/[config_file]
.themes
andcheckout_steps
variables no longer have their own store-specificwindow.config
data to a separate web routeuseAttributes
data directly into thewindow.config
dataindexer.php
config has been removed:models.php
product.php
and overwriting theshouldBeSearchable()
function.