-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: build a Vue3 test search component
- Loading branch information
1 parent
042bc99
commit 9ff88d5
Showing
7 changed files
with
104 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
packages/_vue3-migration-test/src/components/test-search.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<template> | ||
<SnippetConfigExtraParams /> | ||
<SearchInput /> | ||
<ClearSearchInput /> | ||
<SearchButton /> | ||
<!-- No Results Message --> | ||
<div | ||
v-if="_$x.noResults && !_$x.fromNoResultsWithFilters" | ||
class="x-p-28 x-flex x-flex-col x-gap-8 x-items-center x-bg-lead-25 x-my-8" | ||
data-test="no-results-message" | ||
> | ||
<p> | ||
There are no results for | ||
<span class="x-font-bold">{{ _$x.query.search }}</span> | ||
</p> | ||
</div> | ||
<ResultsList> | ||
<BaseVariableColumnGrid | ||
style="--x-size-min-width-grid-item: 150px" | ||
class="x-gap-12" | ||
:columns="4" | ||
> | ||
<template #result="{ item: result }"> | ||
<BaseResultImage | ||
:result="result" | ||
class="x-result__picture x-picture-zoom" | ||
:loadAnimation="CrossFade" | ||
> | ||
<template #placeholder> | ||
<div style="padding-top: 100%; background-color: lightgray"></div> | ||
</template> | ||
<template #fallback> | ||
<div style="padding-top: 100%; background-color: lightsalmon"></div> | ||
</template> | ||
</BaseResultImage> | ||
<BaseResultLink :result="result"> | ||
<h1 class="x-text1 x-text1-lg">{{ result.name }}</h1> | ||
</BaseResultLink> | ||
</template> | ||
</BaseVariableColumnGrid> | ||
</ResultsList> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import SnippetConfigExtraParams from '../../../x-components/src/x-modules/extra-params/components/snippet-config-extra-params.vue'; | ||
import SearchInput from '../../../x-components/src/x-modules/search-box/components/search-input.vue'; | ||
import ResultsList from '../../../x-components/src/x-modules/search/components/results-list.vue'; | ||
import BaseResultImage from '../../../x-components/src/components/result/base-result-image.vue'; | ||
import BaseResultLink from '../../../x-components/src/components/result/base-result-link.vue'; | ||
import BaseVariableColumnGrid from '../../../x-components/src/components/base-variable-column-grid.vue'; | ||
import ClearSearchInput from '../../../x-components/src/x-modules/search-box/components/clear-search-input.vue'; | ||
import SearchButton from '../../../x-components/src/x-modules/search-box/components/search-button.vue'; | ||
import CrossFade from '../../../x-components/src/components/animations/cross-fade.vue'; | ||
import { use$x } from '../../../x-components/src/composables/use-$x'; | ||
// TODO `$x` name cannot be used while XPlugin defines its own `this.$x` in the mixin | ||
const _$x = use$x(); | ||
</script> | ||
|
||
<style></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 6 additions & 10 deletions
16
packages/_vue3-migration-test/src/x-modules/search/x-module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
import { getResultsStub } from '../../../../x-components/src/__stubs__/results-stubs.factory'; | ||
import { getBannersStub } from '../../../../x-components/src/__stubs__/banners-stubs.factory'; | ||
import { getPromotedsStub } from '../../../../x-components/src/__stubs__/promoteds-stubs.factory'; | ||
import { PrivateXModuleOptions } from '../../../../x-components/src/plugins'; | ||
import { SearchXModule } from '../../../../x-components/src/x-modules/search'; | ||
import { getPartialResultsStub } from '../../../../x-components/src/__stubs__/partials-results-stubs.factory'; | ||
|
||
export const searchXModule = { | ||
storeModule: { | ||
state: { | ||
results: getResultsStub(10), | ||
promoteds: getPromotedsStub(), | ||
banners: getBannersStub(), | ||
status: 'success', | ||
spellcheckedQuery: 'spellcheckedQuery', | ||
partialResults: getPartialResultsStub() | ||
results: [], | ||
promoteds: [], | ||
banners: [], | ||
status: 'initial', | ||
spellcheckedQuery: '', | ||
partialResults: [] | ||
} | ||
} | ||
} as PrivateXModuleOptions<SearchXModule>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters