Skip to content
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2dbab6f
POC fullscreen search
jordythevulder Aug 14, 2025
8a75052
Improved fullscreensearch
jordythevulder Sep 23, 2025
7bb54e2
Apply fixes from Duster
jordythevulder Sep 23, 2025
1e5d036
merge
jordythevulder Oct 20, 2025
fb0093d
Increased hit size and styled hits as columns
jordythevulder Oct 21, 2025
3f51990
Merge branch 'feature/fullscreen-search' of github.com:rapidez/core i…
jordythevulder Oct 21, 2025
e6d31f7
Apply fixes from Duster
jordythevulder Oct 21, 2025
a69cec6
[CI] Update Snapshots
jordythevulder Oct 21, 2025
ea972d6
Fix cursor focus, added default category list, added infinite scroll
indykoning Oct 31, 2025
c5b9727
Apply fixes from Duster
indykoning Oct 31, 2025
ab697b6
Merge branch 'master' of github.com:rapidez/core into feature/fullscr…
jordythevulder Nov 3, 2025
afa97a2
Finetuned responsive
jordythevulder Nov 3, 2025
29207fa
[CI] Update Snapshots
jordythevulder Nov 3, 2025
fbb3514
Revert fullscreen search files from 4.x
jordythevulder Nov 18, 2025
4642cb8
Merge branch 'feature/fullscreen-search' of github.com:rapidez/core i…
jordythevulder Nov 18, 2025
8d1b791
Removed files
jordythevulder Nov 18, 2025
c2b278f
Merge branch '4.x' into feature/fullscreen-search
jordythevulder Nov 18, 2025
fa29542
[CI] Update Snapshots
jordythevulder Nov 18, 2025
a138409
Revert files
jordythevulder Nov 18, 2025
08f9198
Merge branch 'feature/fullscreen-search' of github.com:rapidez/core i…
jordythevulder Nov 18, 2025
6436750
[CI] Update Snapshots
jordythevulder Nov 18, 2025
6fb95dc
Changed a-z translations
jordythevulder Nov 18, 2025
d170753
Merge branch 'feature/fullscreen-search' of github.com:rapidez/core i…
jordythevulder Nov 18, 2025
65a7dcb
[CI] Update Snapshots
jordythevulder Nov 18, 2025
03736d0
Merge branch 'master' of github.com:rapidez/core into feature/fullscr…
jordythevulder Dec 2, 2025
d9bad48
Merge branch 'feature/fullscreen-search' of github.com:rapidez/core i…
jordythevulder Dec 2, 2025
7edabcf
[CI] Update Snapshots
jordythevulder Dec 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lang/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"Shipping address": "Verzendadres",
"Shipping method": "Verzendmethode",
"Show cart": "Bekijk winkelwagen",
"Show more": "Toon meer",
"Show results": "Bekijk resultaten",
"Sign up for our newsletter to stay up to date.": "Meld je aan voor onze nieuwsbrief om op de hoogte te blijven.",
"Sorry! No image": "Sorry! Geen afbeelding",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"@types/node": "^24.0.1",
"@vitejs/plugin-vue2": "^2.2.0",
"@vueuse/core": "^11.1.0",
"@vueuse/integrations": "^10.11.0",
"@vueuse/integrations": "^11.1.0",
"@vueuse/components": "^11.1.0",
"autoprefixer": "^10.4.15",
"cross-env": "^7.0.3",
"dotenv": "^17.2.0",
Expand Down
4 changes: 2 additions & 2 deletions resources/js/components/Elements/Toggler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export default {
this.isOpen = this.open
},
methods: {
toggle() {
this.isOpen = !this.isOpen
toggle(shouldOpen) {
this.isOpen = shouldOpen ?? !this.isOpen

if (this.callback) {
this.callback(this.isOpen)
Expand Down
1 change: 1 addition & 0 deletions resources/js/instantsearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { addQuery } from './stores/useSearchHistory'
// Shared between Autocomplete and Listing
Vue.component('ais-instant-search', () => import('vue-instantsearch/vue2/es/src/components/InstantSearch'))
Vue.component('ais-hits', () => import('vue-instantsearch/vue2/es/src/components/Hits.js'))
Vue.component('ais-infinite-hits', () => import('vue-instantsearch/vue2/es/src/components/InfiniteHits.vue.js'))
Vue.component('ais-configure', () => import('vue-instantsearch/vue2/es/src/components/Configure.js'))
Vue.component('ais-autocomplete', () => import('vue-instantsearch/vue2/es/src/components/Autocomplete.vue.js'))
Vue.component('ais-search-box', () => import('vue-instantsearch/vue2/es/src/components/SearchBox.vue.js'))
Expand Down
2 changes: 2 additions & 0 deletions resources/js/vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import Vue from 'vue'
window.Vue = Vue

import { directive as onClickaway } from 'vue-clickaway'
import { vIntersectionObserver } from '@vueuse/components'
Vue.directive('on-click-away', onClickaway)
Vue.directive('intersection-observer', vIntersectionObserver)
Vue.directive('blur', (el) => {
el.removeAttribute('v-blur')
})
Expand Down
3 changes: 2 additions & 1 deletion resources/views/layouts/partials/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<x-heroicon-o-bars-3 class="inline w-7" />
</label>
</div>
<div class="flex items-center h-12 max-md:order-last max-md:w-full md:max-w-lg md:flex-1 max-lg:mt-2">
<div class="max-md:order-last h-12 w-full md:max-w-lg max-lg:mt-2 md:flex-1">
@include('rapidez::layouts.partials.header.autocomplete')
</div>
<div class="ml-auto flex items-center justify-end pl-3">
Expand All @@ -28,4 +28,5 @@
</div>
</nav>
</div>

</header>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Copy link
Member

Choose a reason for hiding this comment

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

What happend with the images?

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.