fbcc3c1b70
* fix: start_pattern * fix: translatable strings * fix: add missing semicolon (task) * fix: add missing semicolon (setup_wizard) * fix: text should start on the same line Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> * fix: move out HTML element as variable Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> * fix: pull out message, translate "Undo". Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> * fix: typo Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> * fix: text should start on the same line Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> * Revert "fix: start_pattern" This reverts commit decc62e2ab75f45db1df022fe13780c2d0d2560d. Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com>
77 lines
1.3 KiB
Vue
77 lines
1.3 KiB
Vue
<template>
|
|
<div
|
|
class="marketplace-page"
|
|
:data-page-name="page_name"
|
|
>
|
|
<search-input
|
|
:placeholder="search_placeholder"
|
|
:on_search="set_search_route"
|
|
v-model="search_value"
|
|
/>
|
|
|
|
<h5>{{ page_title }}</h5>
|
|
|
|
<item-cards-container
|
|
:container_name="page_title"
|
|
:items="items"
|
|
:item_id_fieldname="item_id_fieldname"
|
|
:on_click="go_to_item_details_page"
|
|
:empty_state_message="empty_state_message"
|
|
>
|
|
</item-cards-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
page_name: frappe.get_route()[1],
|
|
category: frappe.get_route()[2],
|
|
items: [],
|
|
item_id_fieldname: 'name',
|
|
|
|
// Constants
|
|
empty_state_message: __('No items in this category yet.'),
|
|
|
|
search_value: '',
|
|
|
|
// Constants
|
|
search_placeholder: __('Search for anything ...'),
|
|
|
|
};
|
|
},
|
|
computed: {
|
|
page_title() {
|
|
return __(this.category);
|
|
}
|
|
},
|
|
created() {
|
|
this.search_value = '';
|
|
this.get_items();
|
|
},
|
|
methods: {
|
|
get_items() {
|
|
hub.call('get_items', {
|
|
filters: {
|
|
hub_category: this.category
|
|
}
|
|
})
|
|
.then((items) => {
|
|
this.items = items;
|
|
})
|
|
},
|
|
|
|
go_to_item_details_page(hub_item_name) {
|
|
frappe.set_route(`marketplace/item/${hub_item_name}`);
|
|
},
|
|
|
|
set_search_route() {
|
|
frappe.set_route('marketplace', 'search', this.category, this.search_value);
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|