brotherton-erpnext/erpnext/public/js/hub/pages/messages.js
2018-08-22 16:44:55 +05:30

96 lines
2.2 KiB
JavaScript

import SubPage from './subpage';
import { get_item_card_container_html } from '../components/items_container';
import { get_empty_state } from '../components/empty_state';
erpnext.hub.Messages = class Messages extends SubPage {
make_wrapper() {
super.make_wrapper();
}
refresh() {
const res = Promise.all([
this.get_buying_items(),
this.get_selling_items()
]);
res.then(([buying_items, selling_items]) => {
this.empty();
if (selling_items.length) {
// selling_items.map(item => {
// item.route = `marketplace/sell/${item.hub_item_code}/${}`
// });
this.render(selling_items, __('Selling'));
}
if (buying_items.length) {
buying_items.map(item => {
item.route = `marketplace/buy/${item.hub_item_code}`
})
this.render(buying_items, __('Buying'));
}
if (!buying_items.length && !selling_items.length) {
this.render_empty_state();
}
});
}
render(items = [], title) {
const html = get_item_card_container_html(items, title);
this.$wrapper.append(html);
}
render_empty_state() {
const empty_state = get_empty_state(__('You haven\'t interacted with any seller yet.'));
this.$wrapper.html(empty_state);
}
get_buying_items() {
return hub.call('get_buying_items_for_messages', {}, 'action:send_message');
}
get_selling_items() {
return hub.call('get_selling_items_for_messages');
}
get_interactions() {
return hub.call('get_sellers_with_interactions', { for_seller: hub.settings.company_email });
}
}
function get_message_area_html() {
return `
<div class="message-area border padding flex flex-column">
<div class="message-list">
</div>
<div class="message-input">
</div>
</div>
`;
}
function get_list_item_html(seller) {
const active_class = frappe.get_route()[2] === seller.email ? 'active' : '';
return `
<div class="message-list-item ${active_class}" data-route="marketplace/messages/${seller.email}">
<div class="list-item-left">
<img src="${seller.image || 'https://picsum.photos/200?random'}">
</div>
<div class="list-item-body">
${seller.company}
</div>
</div>
`;
}
function get_message_html(message) {
return `
<div>
<h5>${message.sender}</h5>
<p>${message.content}</p>
</div>
`;
}