2018-07-23 13:14:46 +00:00
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
erpnext.hub.HubListing = class HubListing extends frappe.views.BaseList {
|
|
|
|
setup_defaults() {
|
|
|
|
super.setup_defaults();
|
|
|
|
this.page_title = __('');
|
|
|
|
this.method = 'erpnext.hub_node.get_list';
|
|
|
|
|
|
|
|
this.cache = {};
|
|
|
|
|
|
|
|
const route = frappe.get_route();
|
|
|
|
this.page_name = route[1];
|
|
|
|
|
|
|
|
this.menu_items = this.menu_items.concat(this.get_menu_items());
|
|
|
|
|
|
|
|
this.imageFieldName = 'image';
|
|
|
|
|
|
|
|
this.show_filters = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_title() {
|
|
|
|
const title = this.page_title;
|
|
|
|
let iconHtml = `<img class="hub-icon" src="assets/erpnext/images/hub_logo.svg">`;
|
|
|
|
let titleHtml = `<span class="hub-page-title">${title}</span>`;
|
2018-07-23 06:25:07 +00:00
|
|
|
this.page.set_title(titleHtml, '', false, title);
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup_fields() {
|
|
|
|
return this.get_meta()
|
|
|
|
.then(r => {
|
|
|
|
this.meta = r.message.meta || this.meta;
|
|
|
|
frappe.model.sync(this.meta);
|
|
|
|
this.bootstrap_data(r.message);
|
|
|
|
|
|
|
|
this.prepareFormFields();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-23 06:25:07 +00:00
|
|
|
setup_filter_area() { }
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
get_meta() {
|
|
|
|
return new Promise(resolve =>
|
2018-07-23 13:14:46 +00:00
|
|
|
frappe.call('erpnext.hub_node.get_meta', { doctype: this.doctype }, resolve));
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set_breadcrumbs() { }
|
|
|
|
|
|
|
|
prepareFormFields() { }
|
|
|
|
|
|
|
|
bootstrap_data() { }
|
|
|
|
|
|
|
|
get_menu_items() {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
label: __('Hub Settings'),
|
|
|
|
action: () => frappe.set_route('Form', 'Hub Settings'),
|
|
|
|
standard: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: __('Favourites'),
|
|
|
|
action: () => frappe.set_route('Hub', 'Favourites'),
|
|
|
|
standard: true
|
2018-05-30 09:42:20 +00:00
|
|
|
}
|
2018-04-03 05:14:13 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_side_bar() {
|
|
|
|
this.sidebar = new frappe.ui.Sidebar({
|
|
|
|
wrapper: this.page.wrapper.find('.layout-side-section'),
|
|
|
|
css_class: 'hub-sidebar'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_sort_selector() {
|
2018-07-23 06:25:07 +00:00
|
|
|
// this.sort_selector = new frappe.ui.SortSelector({
|
|
|
|
// parent: this.filter_area.$filter_list_wrapper,
|
|
|
|
// doctype: this.doctype,
|
|
|
|
// args: this.order_by,
|
|
|
|
// onchange: () => this.refresh(true)
|
|
|
|
// });
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
2018-05-30 09:42:20 +00:00
|
|
|
setup_view() {
|
2018-07-23 13:14:46 +00:00
|
|
|
if (frappe.route_options) {
|
2018-05-30 09:42:20 +00:00
|
|
|
const filters = [];
|
|
|
|
for (let field in frappe.route_options) {
|
|
|
|
var value = frappe.route_options[field];
|
|
|
|
this.page.fields_dict[field].set_value(value);
|
|
|
|
}
|
|
|
|
}
|
2018-07-23 06:25:07 +00:00
|
|
|
|
|
|
|
const $hub_search = $(`
|
|
|
|
<div class="hub-search-container">
|
|
|
|
<input type="text" class="form-control" placeholder="Search for anything">
|
|
|
|
</div>`
|
|
|
|
);
|
|
|
|
this.$frappe_list.prepend($hub_search);
|
|
|
|
const $search_input = $hub_search.find('input');
|
|
|
|
|
|
|
|
$search_input.on('keydown', frappe.utils.debounce((e) => {
|
|
|
|
if (e.which === frappe.ui.keyCode.ENTER) {
|
|
|
|
this.search_value = $search_input.val();
|
|
|
|
this.refresh();
|
|
|
|
}
|
|
|
|
}, 300));
|
2018-05-30 09:42:20 +00:00
|
|
|
}
|
2018-04-03 05:14:13 +00:00
|
|
|
|
|
|
|
get_args() {
|
|
|
|
return {
|
|
|
|
doctype: this.doctype,
|
|
|
|
start: this.start,
|
|
|
|
limit: this.page_length,
|
|
|
|
order_by: this.order_by,
|
|
|
|
// fields: this.fields,
|
|
|
|
filters: this.get_filters_for_args()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
update_data(r) {
|
|
|
|
const data = r.message;
|
|
|
|
|
|
|
|
if (this.start === 0) {
|
|
|
|
this.data = data;
|
|
|
|
} else {
|
|
|
|
this.data = this.data.concat(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.data_dict = {};
|
|
|
|
}
|
|
|
|
|
2018-05-30 09:42:20 +00:00
|
|
|
freeze(toggle) { }
|
2018-04-03 05:14:13 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
this.data_dict = {};
|
|
|
|
this.render_image_view();
|
|
|
|
|
|
|
|
this.setup_quick_view();
|
|
|
|
this.setup_like();
|
|
|
|
}
|
|
|
|
|
|
|
|
render_offline_card() {
|
|
|
|
let html = `<div class='page-card'>
|
|
|
|
<div class='page-card-head'>
|
|
|
|
<span class='indicator red'>
|
|
|
|
{{ _("Payment Cancelled") }}</span>
|
|
|
|
</div>
|
2018-07-23 13:14:46 +00:00
|
|
|
<p>${ __("Your payment is cancelled.")}</p>
|
2018-04-03 05:14:13 +00:00
|
|
|
<div><a href='' class='btn btn-primary btn-sm'>
|
2018-07-23 13:14:46 +00:00
|
|
|
${ __("Continue")}</a></div>
|
2018-04-03 05:14:13 +00:00
|
|
|
</div>`;
|
|
|
|
|
|
|
|
let page = this.page.wrapper.find('.layout-side-section')
|
|
|
|
page.append(html);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
render_image_view() {
|
|
|
|
var html = this.data.map(this.item_html.bind(this)).join("");
|
|
|
|
|
|
|
|
if (this.start === 0) {
|
2018-04-05 09:14:16 +00:00
|
|
|
// ${this.getHeaderHtml()}
|
2018-04-03 05:14:13 +00:00
|
|
|
this.$result.html(`
|
2018-07-23 06:25:07 +00:00
|
|
|
<div class="row hub-card-container">
|
|
|
|
<div class="col-md-12 margin-bottom">
|
|
|
|
<b>Recently Published</b>
|
|
|
|
</div>
|
2018-04-03 05:14:13 +00:00
|
|
|
${html}
|
|
|
|
</div>
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
2018-07-23 13:14:46 +00:00
|
|
|
if (this.data.length) {
|
2018-04-03 05:14:13 +00:00
|
|
|
this.doc = this.data[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
this.data.map(this.loadImage.bind(this));
|
|
|
|
|
|
|
|
this.data_dict = {};
|
|
|
|
this.data.map(d => {
|
|
|
|
this.data_dict[d.hub_item_code] = d;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-05 09:14:16 +00:00
|
|
|
getHeaderHtml(title, image, content) {
|
2018-04-03 05:14:13 +00:00
|
|
|
// let company_html =
|
|
|
|
return `
|
|
|
|
<header class="list-row-head text-muted small">
|
|
|
|
<div style="display: flex;">
|
|
|
|
<div class="list-header-icon">
|
2018-04-05 09:14:16 +00:00
|
|
|
<img title="${title}" alt="${title}" src="${image}">
|
2018-04-03 05:14:13 +00:00
|
|
|
</div>
|
|
|
|
<div class="list-header-info">
|
2018-04-05 09:14:16 +00:00
|
|
|
<h5>
|
|
|
|
${title}
|
|
|
|
</h5>
|
|
|
|
<span class="margin-vertical-10 level-item">
|
|
|
|
${content}
|
|
|
|
</span>
|
2018-04-03 05:14:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
renderHeader() {
|
2018-07-25 14:32:12 +00:00
|
|
|
return ``;
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_image_html(encoded_name, src, alt_text) {
|
2018-07-23 13:14:46 +00:00
|
|
|
return `<img data-name="${encoded_name}" src="${src}" alt="${alt_text}">`;
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_image_placeholder(title) {
|
2018-07-23 13:14:46 +00:00
|
|
|
return `<span class="placeholder-text">${frappe.get_abbr(title)}</span>`;
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
loadImage(item) {
|
|
|
|
item._name = encodeURI(item.name);
|
|
|
|
const encoded_name = item._name;
|
|
|
|
const title = strip_html(item[this.meta.title_field || 'name']);
|
|
|
|
|
|
|
|
let placeholder = this.get_image_placeholder(title);
|
|
|
|
let $container = this.$result.find(`.image-field[data-name="${encoded_name}"]`);
|
|
|
|
|
2018-07-23 13:14:46 +00:00
|
|
|
if (!item[this.imageFieldName]) {
|
2018-04-03 05:14:13 +00:00
|
|
|
$container.prepend(placeholder);
|
|
|
|
$container.addClass('no-image');
|
|
|
|
}
|
|
|
|
|
|
|
|
frappe.load_image(item[this.imageFieldName],
|
|
|
|
(imageObj) => {
|
|
|
|
$container.prepend(imageObj)
|
|
|
|
},
|
|
|
|
() => {
|
|
|
|
$container.prepend(placeholder);
|
|
|
|
$container.addClass('no-image');
|
|
|
|
},
|
|
|
|
(imageObj) => {
|
|
|
|
imageObj.title = encoded_name;
|
|
|
|
imageObj.alt = title;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_quick_view() {
|
2018-07-23 13:14:46 +00:00
|
|
|
if (this.quick_view) return;
|
2018-04-03 05:14:13 +00:00
|
|
|
|
|
|
|
this.quick_view = new frappe.ui.Dialog({
|
|
|
|
title: 'Quick View',
|
|
|
|
fields: this.formFields
|
|
|
|
});
|
2018-04-05 09:14:16 +00:00
|
|
|
this.quick_view.set_primary_action(__('Request a Quote'), () => {
|
|
|
|
this.show_rfq_modal()
|
|
|
|
.then(values => {
|
|
|
|
item.item_code = values.item_code;
|
|
|
|
delete values.item_code;
|
|
|
|
|
|
|
|
const supplier = values;
|
|
|
|
return [item, supplier];
|
|
|
|
})
|
|
|
|
.then(([item, supplier]) => {
|
|
|
|
return this.make_rfq(item, supplier, this.page.btn_primary);
|
|
|
|
})
|
|
|
|
.then(r => {
|
|
|
|
console.log(r);
|
|
|
|
if (r.message && r.message.rfq) {
|
|
|
|
this.page.btn_primary.addClass('disabled').html(`<span><i class='fa fa-check'></i> ${__('Quote Requested')}</span>`);
|
|
|
|
} else {
|
|
|
|
throw r;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.log(e); //eslint-disable-line
|
|
|
|
});
|
|
|
|
}, 'octicon octicon-plus');
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
this.$result.on('click', '.btn.zoom-view', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
var name = $(e.target).attr('data-name');
|
|
|
|
name = decodeURIComponent(name);
|
|
|
|
|
|
|
|
this.quick_view.set_title(name);
|
|
|
|
let values = this.data_dict[name];
|
|
|
|
this.quick_view.set_values(values);
|
|
|
|
|
|
|
|
let fields = [];
|
|
|
|
|
|
|
|
this.quick_view.show();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_like() {
|
2018-07-23 13:14:46 +00:00
|
|
|
if (this.setup_like_done) return;
|
2018-04-03 05:14:13 +00:00
|
|
|
this.setup_like_done = 1;
|
|
|
|
this.$result.on('click', '.btn.like-button', (e) => {
|
2018-07-23 13:14:46 +00:00
|
|
|
if ($(e.target).hasClass('changing')) return;
|
2018-04-03 05:14:13 +00:00
|
|
|
$(e.target).addClass('changing');
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
var name = $(e.target).attr('data-name');
|
|
|
|
name = decodeURIComponent(name);
|
|
|
|
let values = this.data_dict[name];
|
|
|
|
|
|
|
|
let heart = $(e.target);
|
2018-07-23 13:14:46 +00:00
|
|
|
if (heart.hasClass('like-button')) {
|
2018-04-03 05:14:13 +00:00
|
|
|
heart = $(e.target).find('.octicon');
|
|
|
|
}
|
|
|
|
|
|
|
|
let remove = 1;
|
|
|
|
|
2018-07-23 13:14:46 +00:00
|
|
|
if (heart.hasClass('liked')) {
|
2018-04-03 05:14:13 +00:00
|
|
|
// unlike
|
|
|
|
heart.removeClass('liked');
|
|
|
|
} else {
|
|
|
|
// like
|
|
|
|
remove = 0;
|
|
|
|
heart.addClass('liked');
|
|
|
|
}
|
|
|
|
|
|
|
|
frappe.call({
|
|
|
|
method: 'erpnext.hub_node.update_wishlist_item',
|
|
|
|
args: {
|
|
|
|
item_name: values.hub_item_code,
|
|
|
|
remove: remove
|
|
|
|
},
|
|
|
|
callback: (r) => {
|
|
|
|
let message = __("Added to Favourites");
|
2018-07-23 13:14:46 +00:00
|
|
|
if (remove) {
|
2018-04-03 05:14:13 +00:00
|
|
|
message = __("Removed from Favourites");
|
|
|
|
}
|
|
|
|
frappe.show_alert(message);
|
|
|
|
},
|
|
|
|
freeze: true
|
|
|
|
});
|
|
|
|
|
|
|
|
$(e.target).removeClass('changing');
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
erpnext.hub.ItemListing = class ItemListing extends erpnext.hub.HubListing {
|
|
|
|
constructor(opts) {
|
|
|
|
super(opts);
|
|
|
|
this.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_defaults() {
|
|
|
|
super.setup_defaults();
|
|
|
|
this.doctype = 'Hub Item';
|
2018-06-04 04:56:49 +00:00
|
|
|
this.page_title = __('Marketplace');
|
2018-04-03 05:14:13 +00:00
|
|
|
this.fields = ['name', 'hub_item_code', 'image', 'item_name', 'item_code', 'company_name', 'description', 'country'];
|
|
|
|
this.filters = [];
|
|
|
|
}
|
|
|
|
|
2018-04-05 09:14:16 +00:00
|
|
|
render() {
|
|
|
|
this.data_dict = {};
|
|
|
|
this.render_image_view();
|
|
|
|
|
|
|
|
this.setup_quick_view();
|
|
|
|
this.setup_like();
|
|
|
|
}
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
bootstrap_data(response) {
|
2018-07-23 06:25:07 +00:00
|
|
|
// let companies = response.companies.map(d => d.name);
|
|
|
|
// this.custom_filter_configs = [
|
|
|
|
// {
|
|
|
|
// fieldtype: 'Autocomplete',
|
|
|
|
// label: __('Select Company'),
|
|
|
|
// condition: 'like',
|
|
|
|
// fieldname: 'company_name',
|
|
|
|
// options: companies
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// fieldtype: 'Link',
|
|
|
|
// label: __('Select Country'),
|
|
|
|
// options: 'Country',
|
|
|
|
// condition: 'like',
|
|
|
|
// fieldname: 'country'
|
|
|
|
// }
|
|
|
|
// ];
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
prepareFormFields() {
|
|
|
|
let fieldnames = ['item_name', 'description', 'company_name', 'country'];
|
|
|
|
this.formFields = this.meta.fields
|
|
|
|
.filter(field => fieldnames.includes(field.fieldname))
|
|
|
|
.map(field => {
|
|
|
|
let {
|
|
|
|
label,
|
|
|
|
fieldname,
|
|
|
|
fieldtype,
|
|
|
|
} = field;
|
|
|
|
let read_only = 1;
|
|
|
|
return {
|
|
|
|
label,
|
|
|
|
fieldname,
|
|
|
|
fieldtype,
|
|
|
|
read_only,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
this.formFields.unshift({
|
|
|
|
label: 'image',
|
|
|
|
fieldname: 'image',
|
|
|
|
fieldtype: 'Attach Image'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_side_bar() {
|
|
|
|
super.setup_side_bar();
|
|
|
|
|
2018-07-23 06:25:07 +00:00
|
|
|
this.setup_new_sidebar();
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
let $pitch = $(`<div class="border" style="
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 0px 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
">
|
|
|
|
<h5>Sell on HubMarket</h5>
|
|
|
|
<p>Over 2000 products listed. Register your company to start selling.</p>
|
|
|
|
</div>`);
|
|
|
|
|
|
|
|
this.sidebar.$sidebar.append($pitch);
|
|
|
|
|
|
|
|
this.category_tree = new frappe.ui.Tree({
|
|
|
|
parent: this.sidebar.$sidebar,
|
|
|
|
label: 'All Categories',
|
|
|
|
expandable: true,
|
|
|
|
|
2018-07-23 13:14:46 +00:00
|
|
|
args: { parent: this.current_category },
|
2018-04-03 05:14:13 +00:00
|
|
|
method: 'erpnext.hub_node.get_categories',
|
|
|
|
on_click: (node) => {
|
|
|
|
this.update_category(node.label);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.sidebar.add_item({
|
|
|
|
label: __('Companies'),
|
|
|
|
on_click: () => frappe.set_route('Hub', 'Company')
|
|
|
|
}, undefined, true);
|
|
|
|
|
|
|
|
this.sidebar.add_item({
|
|
|
|
label: this.hub_settings.company,
|
|
|
|
on_click: () => frappe.set_route('Form', 'Company', this.hub_settings.company)
|
|
|
|
}, __("Account"));
|
|
|
|
|
|
|
|
this.sidebar.add_item({
|
|
|
|
label: __("Favourites"),
|
|
|
|
on_click: () => frappe.set_route('Hub', 'Favourites')
|
|
|
|
}, __("Account"));
|
2018-04-05 09:14:16 +00:00
|
|
|
|
|
|
|
this.sidebar.add_item({
|
|
|
|
label: __("Settings"),
|
|
|
|
on_click: () => frappe.set_route('Form', 'Hub Settings')
|
|
|
|
}, __("Account"));
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 06:25:07 +00:00
|
|
|
setup_new_sidebar() {
|
|
|
|
this.sidebar.$sidebar.append(`
|
|
|
|
<ul class="list-unstyled hub-sidebar-group">
|
|
|
|
<li class="hub-sidebar-item bold active">
|
|
|
|
Browse
|
|
|
|
</li>
|
|
|
|
<li class="hub-sidebar-item text-muted">
|
|
|
|
Favorites
|
|
|
|
</li>
|
|
|
|
<li class="hub-sidebar-item text-muted">
|
|
|
|
Become a seller
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
`);
|
|
|
|
|
|
|
|
frappe.call('erpnext.hub_node.get_categories')
|
|
|
|
.then(r => {
|
|
|
|
const categories = r.message.map(d => d.value).sort();
|
|
|
|
const sidebar_items = [
|
2018-07-23 13:14:46 +00:00
|
|
|
`<li class="hub-sidebar-item bold text-muted is-title">
|
|
|
|
${__('Category')}
|
2018-07-23 06:25:07 +00:00
|
|
|
</li>`,
|
|
|
|
`<li class="hub-sidebar-item active">
|
|
|
|
All
|
|
|
|
</li>`,
|
|
|
|
...categories.map(category => `
|
|
|
|
<li class="hub-sidebar-item text-muted">
|
|
|
|
${category}
|
|
|
|
</li>
|
|
|
|
`)
|
|
|
|
];
|
|
|
|
|
|
|
|
this.sidebar.$sidebar.append(`
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
${sidebar_items.join('')}
|
|
|
|
</ul>
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
update_category(label) {
|
2018-07-23 13:14:46 +00:00
|
|
|
this.current_category = (label == 'All Categories') ? undefined : label;
|
2018-04-03 05:14:13 +00:00
|
|
|
this.refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
get_filters_for_args() {
|
2018-07-23 06:25:07 +00:00
|
|
|
const filter = {};
|
|
|
|
|
|
|
|
if (this.search_value) {
|
|
|
|
filter.item_name = ['like', `%${this.search_value}%`];
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
2018-07-23 06:25:07 +00:00
|
|
|
|
|
|
|
filter.image = ['like', 'http%'];
|
|
|
|
return filter;
|
|
|
|
|
|
|
|
// if(!this.filter_area) return;
|
|
|
|
// let filters = {};
|
|
|
|
// this.filter_area.get().forEach(f => {
|
|
|
|
// let field = f[1] !== 'name' ? f[1] : 'item_name';
|
|
|
|
// filters[field] = [f[2], f[3]];
|
|
|
|
// });
|
|
|
|
// if(this.current_category) {
|
|
|
|
// filters['hub_category'] = this.current_category;
|
|
|
|
// }
|
|
|
|
// return filters;
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
update_data(r) {
|
|
|
|
super.update_data(r);
|
|
|
|
|
|
|
|
this.data_dict = {};
|
|
|
|
this.data.map(d => {
|
|
|
|
this.data_dict[d.hub_item_code] = d;
|
|
|
|
});
|
|
|
|
}
|
2018-04-05 09:14:16 +00:00
|
|
|
|
2018-07-23 06:25:07 +00:00
|
|
|
item_html(item, index) {
|
2018-04-05 09:14:16 +00:00
|
|
|
item._name = encodeURI(item.name);
|
|
|
|
const encoded_name = item._name;
|
|
|
|
const title = strip_html(item[this.meta.title_field || 'name']);
|
2018-07-23 06:25:07 +00:00
|
|
|
|
|
|
|
const img_url = item[this.imageFieldName];
|
|
|
|
const no_image = !img_url;
|
|
|
|
const _class = no_image ? 'no-image' : '';
|
2018-04-05 09:14:16 +00:00
|
|
|
const route = `#Hub/Item/${item.hub_item_code}`;
|
|
|
|
const company_name = item['company_name'];
|
|
|
|
|
|
|
|
const reviewLength = (item.reviews || []).length;
|
|
|
|
const ratingAverage = reviewLength
|
|
|
|
? item.reviews
|
|
|
|
.map(r => r.rating)
|
2018-07-23 13:14:46 +00:00
|
|
|
.reduce((a, b) => a + b, 0) / reviewLength
|
2018-04-05 09:14:16 +00:00
|
|
|
: -1;
|
|
|
|
|
|
|
|
let ratingHtml = ``;
|
|
|
|
|
2018-07-23 13:14:46 +00:00
|
|
|
for (var i = 0; i < 5; i++) {
|
2018-04-05 09:14:16 +00:00
|
|
|
let starClass = 'fa-star';
|
2018-07-23 13:14:46 +00:00
|
|
|
if (i >= ratingAverage) starClass = 'fa-star-o';
|
2018-04-05 09:14:16 +00:00
|
|
|
ratingHtml += `<i class='fa fa-fw ${starClass} star-icon' data-index=${i}></i>`;
|
|
|
|
}
|
2018-07-23 06:25:07 +00:00
|
|
|
let dot_spacer = '<span aria-hidden="true"> · </span>';
|
|
|
|
let subtitle = '';
|
|
|
|
subtitle += comment_when(item.creation);
|
|
|
|
subtitle += dot_spacer;
|
|
|
|
|
|
|
|
if (ratingAverage > 0) {
|
|
|
|
subtitle += ratingAverage + `<i class='fa fa-fw fa-star-o'></i>`;
|
|
|
|
subtitle += dot_spacer;
|
|
|
|
}
|
|
|
|
subtitle += company_name;
|
2018-04-05 09:14:16 +00:00
|
|
|
|
|
|
|
let item_html = `
|
2018-07-23 06:25:07 +00:00
|
|
|
<div class="col-sm-3 col-xs-2">
|
|
|
|
<div class="hub-card">
|
|
|
|
<div class="hub-card-header">
|
|
|
|
<div class="list-row-col list-subject ellipsis level">
|
|
|
|
<span class="level-item bold ellipsis" title="McGuffin">
|
|
|
|
<a href="${route}">${title}</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="text-muted small" style="margin: 5px 0px;">
|
|
|
|
${ratingHtml}
|
|
|
|
(${reviewLength})
|
|
|
|
</div>
|
|
|
|
<div class="list-row-col">
|
2018-07-23 13:14:46 +00:00
|
|
|
<a href="${'#Hub/Company/' + company_name + '/Items'}"><p>${company_name}</p></a>
|
2018-07-23 06:25:07 +00:00
|
|
|
</div>
|
2018-04-05 09:14:16 +00:00
|
|
|
</div>
|
2018-07-23 06:25:07 +00:00
|
|
|
<div class="hub-card-body">
|
|
|
|
<a data-name="${encoded_name}"
|
|
|
|
title="${encoded_name}"
|
|
|
|
href="${route}"
|
2018-04-05 09:14:16 +00:00
|
|
|
>
|
2018-07-23 06:25:07 +00:00
|
|
|
<div class="image-field ${_class}"
|
|
|
|
data-name="${encoded_name}"
|
|
|
|
>
|
|
|
|
<button class="btn btn-default zoom-view" data-name="${encoded_name}">
|
|
|
|
<i class="octicon octicon-eye" data-name="${encoded_name}"></i>
|
|
|
|
</button>
|
|
|
|
<button class="btn btn-default like-button" data-name="${encoded_name}">
|
|
|
|
<i class="octicon octicon-heart" data-name="${encoded_name}"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-04-05 09:14:16 +00:00
|
|
|
</div>
|
2018-07-23 06:25:07 +00:00
|
|
|
</div>
|
|
|
|
`;
|
2018-04-05 09:14:16 +00:00
|
|
|
|
2018-07-23 06:25:07 +00:00
|
|
|
item_html = `
|
|
|
|
<div class="col-md-3 col-sm-4 col-xs-6">
|
|
|
|
<div class="hub-card">
|
|
|
|
<div class="hub-card-header">
|
|
|
|
<div class="hub-card-title ellipsis bold">${title}</div>
|
|
|
|
<div class="hub-card-subtitle ellipsis text-muted">${subtitle}</div>
|
|
|
|
</div>
|
|
|
|
<div class="hub-card-body">
|
|
|
|
<img class="hub-card-image ${no_image ? 'no-image' : ''}" src="${img_url}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-05 09:14:16 +00:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
|
|
|
return item_html;
|
|
|
|
}
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
};
|
|
|
|
|
2018-07-23 13:14:46 +00:00
|
|
|
erpnext.hub.Favourites2 = class Favourites extends erpnext.hub.ItemListing {
|
2018-04-03 05:14:13 +00:00
|
|
|
constructor(opts) {
|
|
|
|
super(opts);
|
|
|
|
this.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_defaults() {
|
|
|
|
super.setup_defaults();
|
|
|
|
this.doctype = 'Hub Item';
|
|
|
|
this.page_title = __('Favourites');
|
|
|
|
this.fields = ['name', 'hub_item_code', 'image', 'item_name', 'item_code', 'company_name', 'description', 'country'];
|
|
|
|
this.filters = [];
|
|
|
|
this.method = 'erpnext.hub_node.get_item_favourites';
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_filter_area() { }
|
|
|
|
|
|
|
|
setup_sort_selector() { }
|
|
|
|
|
|
|
|
// setupHe
|
|
|
|
|
|
|
|
getHeaderHtml() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
get_args() {
|
|
|
|
return {
|
|
|
|
start: this.start,
|
|
|
|
limit: this.page_length,
|
|
|
|
order_by: this.order_by,
|
|
|
|
fields: this.fields
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
bootstrap_data(response) { }
|
|
|
|
|
|
|
|
prepareFormFields() { }
|
|
|
|
|
|
|
|
setup_side_bar() {
|
|
|
|
this.sidebar = new frappe.ui.Sidebar({
|
|
|
|
wrapper: this.page.wrapper.find('.layout-side-section'),
|
|
|
|
css_class: 'hub-sidebar'
|
|
|
|
});
|
|
|
|
|
|
|
|
this.sidebar.add_item({
|
|
|
|
label: __('Back to Products'),
|
|
|
|
on_click: () => frappe.set_route('Hub', 'Item')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
update_category(label) {
|
2018-07-23 13:14:46 +00:00
|
|
|
this.current_category = (label == 'All Categories') ? undefined : label;
|
2018-04-03 05:14:13 +00:00
|
|
|
this.refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
get_filters_for_args() {
|
2018-07-23 13:14:46 +00:00
|
|
|
if (!this.filter_area) return;
|
2018-04-03 05:14:13 +00:00
|
|
|
let filters = {};
|
|
|
|
this.filter_area.get().forEach(f => {
|
|
|
|
let field = f[1] !== 'name' ? f[1] : 'item_name';
|
|
|
|
filters[field] = [f[2], f[3]];
|
|
|
|
});
|
2018-07-23 13:14:46 +00:00
|
|
|
if (this.current_category) {
|
2018-04-03 05:14:13 +00:00
|
|
|
filters['hub_category'] = this.current_category;
|
|
|
|
}
|
|
|
|
return filters;
|
|
|
|
}
|
|
|
|
|
|
|
|
update_data(r) {
|
|
|
|
super.update_data(r);
|
|
|
|
|
|
|
|
this.data_dict = {};
|
|
|
|
this.data.map(d => {
|
|
|
|
this.data_dict[d.hub_item_code] = d;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
erpnext.hub.CompanyListing = class CompanyListing extends erpnext.hub.HubListing {
|
|
|
|
constructor(opts) {
|
|
|
|
super(opts);
|
|
|
|
this.show();
|
|
|
|
}
|
|
|
|
|
2018-04-05 09:14:16 +00:00
|
|
|
render() {
|
|
|
|
this.data_dict = {};
|
|
|
|
this.render_image_view();
|
|
|
|
}
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
setup_defaults() {
|
|
|
|
super.setup_defaults();
|
|
|
|
this.doctype = 'Hub Company';
|
|
|
|
this.page_title = __('Companies');
|
|
|
|
this.fields = ['company_logo', 'name', 'site_name', 'seller_city', 'seller_description', 'seller', 'country', 'company_name'];
|
|
|
|
this.filters = [];
|
|
|
|
this.custom_filter_configs = [
|
|
|
|
{
|
|
|
|
fieldtype: 'Link',
|
|
|
|
label: 'Country',
|
|
|
|
options: 'Country',
|
|
|
|
condition: 'like',
|
|
|
|
fieldname: 'country'
|
|
|
|
}
|
|
|
|
];
|
|
|
|
this.imageFieldName = 'company_logo';
|
|
|
|
}
|
|
|
|
|
2018-04-05 09:14:16 +00:00
|
|
|
setup_side_bar() {
|
|
|
|
this.sidebar = new frappe.ui.Sidebar({
|
|
|
|
wrapper: this.page.wrapper.find('.layout-side-section'),
|
|
|
|
css_class: 'hub-sidebar'
|
|
|
|
});
|
|
|
|
|
|
|
|
this.sidebar.add_item({
|
|
|
|
label: __('Back to Products'),
|
|
|
|
on_click: () => frappe.set_route('Hub', 'Item')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
get_filters_for_args() {
|
|
|
|
let filters = {};
|
2018-07-23 13:14:46 +00:00
|
|
|
// this.filter_area.get().forEach(f => {
|
|
|
|
// let field = f[1] !== 'name' ? f[1] : 'company_name';
|
|
|
|
// filters[field] = [f[2], f[3]];
|
|
|
|
// });
|
2018-04-03 05:14:13 +00:00
|
|
|
return filters;
|
|
|
|
}
|
|
|
|
|
2018-04-05 09:14:16 +00:00
|
|
|
item_html(company) {
|
|
|
|
company._name = encodeURI(company.company_name);
|
|
|
|
const encoded_name = company._name;
|
|
|
|
const title = strip_html(company.company_name);
|
|
|
|
const _class = !company[this.imageFieldName] ? 'no-image' : '';
|
|
|
|
const company_name = company['company_name'];
|
|
|
|
const route = `#Hub/Company/${company_name}`;
|
2018-04-03 05:14:13 +00:00
|
|
|
|
|
|
|
let image_html = company.company_logo ?
|
|
|
|
`<img src="${company.company_logo}"><span class="helper"></span>` :
|
|
|
|
`<div class="standard-image">${frappe.get_abbr(company.company_name)}</div>`;
|
|
|
|
|
2018-04-05 09:14:16 +00:00
|
|
|
let item_html = `
|
|
|
|
<div class="image-view-item">
|
|
|
|
<div class="image-view-header">
|
|
|
|
<div class="list-row-col list-subject ellipsis level">
|
|
|
|
<span class="level-item bold ellipsis" title="McGuffin">
|
|
|
|
<a href="${route}">${title}</a>
|
|
|
|
</span>
|
2018-04-03 05:14:13 +00:00
|
|
|
</div>
|
2018-04-05 09:14:16 +00:00
|
|
|
</div>
|
|
|
|
<div class="image-view-body">
|
|
|
|
<a data-name="${encoded_name}"
|
|
|
|
title="${encoded_name}"
|
|
|
|
href="${route}">
|
|
|
|
<div class="image-field ${_class}"
|
|
|
|
data-name="${encoded_name}">
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2018-04-03 05:14:13 +00:00
|
|
|
</div>
|
|
|
|
`;
|
2018-04-05 09:14:16 +00:00
|
|
|
|
|
|
|
return item_html;
|
2018-04-03 05:14:13 +00:00
|
|
|
}
|
2018-04-05 09:14:16 +00:00
|
|
|
|
2018-07-25 05:28:56 +00:00
|
|
|
};
|