Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1151 from OpenBazaar/multiple-tweaks
Browse files Browse the repository at this point in the history
Multiple tweaks
  • Loading branch information
jjeffryes authored Dec 27, 2017
2 parents 7e60df4 + 2557e4c commit 705f794
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 23 deletions.
4 changes: 3 additions & 1 deletion js/languages/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,9 @@
"heading": "Fulfilled",
"shippedByLabel": "Order Shipped via:",
"trackingNumberLabel": "Tracking #:",
"noteFromLabel": "Note from %{store}:",
"yourNoteLabel": "Your note:",
"noteFromVendorLabel": "Note from the vendor:",
"noteFromStoreLabel": "Note from %{store}:",
"copyLink": "Copy",
"digitalReadyForDlHeading": "Digital files are ready for download!",
"digitalReadyForDlText": "The files have been delivered. Download when you're ready.",
Expand Down
2 changes: 1 addition & 1 deletion js/lib/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -2677,7 +2677,7 @@ import { _tagsDelimiter } from '../utils/selectize';
persist: true,
diacritics: true,
create: false,
createOnBlur: false,
createOnBlur: true,
createFilter: null,
highlight: true,
openOnFocus: true,
Expand Down
6 changes: 1 addition & 5 deletions js/templates/modals/orderDetail/profileBox.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
<% if (ob.isFetching) { %>
<div class="center">
<%= ob.spinner({ className: 'spinnerMd' }) %>
</div>
<% } else { %>
<% if (!ob.isFetching) { %>
<%
let featuredProfileAvatarStyle = ob.getAvatarBgImage(ob.avatarHashes,
{
Expand Down
6 changes: 3 additions & 3 deletions js/templates/modals/orderDetail/summaryTab/fulfilled.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h2 class="tx4 margRTn"><%= ob.polyT('orderDetail.summaryTab.fulfilled.heading')
<% } %>
</div>
<% } %>
<div class="rowTn"><%= ob.polyT('orderDetail.summaryTab.fulfilled.noteFromLabel', { store: ob.storeName }) %></div>
<div class="rowTn txB"><%= ob.noteFromLabel %></div>
<div><%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %></div>
</div>
</div>
Expand All @@ -40,15 +40,15 @@ <h2 class="tx4 margRTn"><%= ob.polyT('orderDetail.summaryTab.fulfilled.heading')
<div class="rowTn txB"><%= ob.polyT('orderDetail.summaryTab.fulfilled.passwordLabel') %></div>
<div class="row"><%= digitalDelivery.password || ob.polyT('orderDetail.summaryTab.notApplicable') %></div>
<% } %>
<div class="rowTn"><%= ob.polyT('orderDetail.summaryTab.fulfilled.noteFromLabel', { store: ob.storeName }) %></div>
<div class="rowTn txB"><%= ob.noteFromLabel %></div>
<div><%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %></div>
</div>
</div>
<% } else if (ob.contractType === 'SERVICE') { %>
<div class="flex gutterH clrT">
<div class="statusIconCol clrT"><span class="clrBr ion-ios-body"></span></div>
<div class="flexExpand tx5">
<div class="rowTn"><%= ob.polyT('orderDetail.summaryTab.fulfilled.noteFromLabel', { store: ob.storeName }) %></div>
<div class="rowTn txB"><%= ob.noteFromLabel %></div>
<div><%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %></div>
</div>
</div>
Expand Down
3 changes: 1 addition & 2 deletions js/views/modals/editListing/Variant.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export default class extends BaseView {
valueField: 'value',
options: variantOptions,
items: variantItems,
createOnBlur: true,
create: input => ({
name: input,
value: input,
Expand All @@ -103,7 +102,7 @@ export default class extends BaseView {
option: data => `<div>${data.name}</div>`,
item: data => `<div>${data.name}</div>`,
},
});
}).on('change', () => this.trigger('choiceChange', { view: this }));
});

return this;
Expand Down
33 changes: 25 additions & 8 deletions js/views/modals/orderDetail/OrderDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,31 @@ export default class extends BaseModal {

onFirstOrderSync() {
this.stopListening(this.model, null, this.onOrderRequest);
const featuredProfileState = { isFetching: false };
let featuredProfileFetch;

if (this.type === 'case') {
this.featuredProfileFetch =
this.model.get('buyerOpened') ? this.getBuyerProfile() : this.getVendorProfile();
if (this.model.get('buyerOpened')) {
featuredProfileFetch = this.getBuyerProfile();
this.featuredProfilePeerId = featuredProfileState.peerID = this.buyerId;
} else {
featuredProfileFetch = this.getVendorProfile();
this.featuredProfilePeerId = featuredProfileState.peerID = this.vendorId;
}
} else if (this.type === 'sale') {
this.featuredProfileFetch = this.getBuyerProfile();
featuredProfileFetch = this.getBuyerProfile();
this.featuredProfilePeerId = featuredProfileState.peerID = this.buyerId;
} else {
this.featuredProfileFetch = this.getVendorProfile();
featuredProfileFetch = this.getVendorProfile();
this.featuredProfilePeerId = featuredProfileState.peerID = this.vendorId;
}

this.featuredProfileFetch.done(profile => {
featuredProfileFetch.done(profile => {
this.featuredProfileMd = profile;
this.featuredProfile.setModel(this.featuredProfileMd);
}).always(() => this.featuredProfile.setState({ isFetching: false }));
if (this.featuredProfile) this.featuredProfile.setModel(this.featuredProfileMd);
});

if (this.featuredProfile) this.featuredProfile.setState(featuredProfileState);
}

onClickRetryFetch() {
Expand Down Expand Up @@ -171,6 +182,11 @@ export default class extends BaseModal {
if (!this._participantIds) {
let contract = this.model.get('contract');

if (!contract) {
throw new Error('Unable to determine the participant IDs. The contract is not ' +
'available. The order model has likely not been synced yet.');
}

if (this.type === 'case') {
contract = this.model.get('buyerOpened') ?
this.model.get('buyerContract') :
Expand Down Expand Up @@ -496,7 +512,8 @@ export default class extends BaseModal {
this.featuredProfile = this.createChild(ProfileBox, {
model: this.featuredProfileMd || null,
initialState: {
isFetching: this.featuredProfileFetch && this.featuredProfileFetch.state() === 'pending',
isFetching: !this.featuredProfilePeerId,
peerID: this.featuredProfilePeerId,
},
});
this.$('.js-featuredProfile').html(this.featuredProfile.render().el);
Expand Down
3 changes: 3 additions & 0 deletions js/views/modals/orderDetail/summaryTab/Fulfilled.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import _ from 'underscore';
import moment from 'moment';
import { clipboard } from 'electron';
import '../../../../utils/velocity';
import app from '../../../../app';
import loadTemplate from '../../../../utils/loadTemplate';
import BaseVw from '../../../baseVw';

Expand All @@ -17,6 +18,8 @@ export default class extends BaseVw {
contractType: 'PHYSICAL_GOOD',
isLocalPickup: false,
showPassword: false,
noteFromLabel:
app.polyglot.t('orderDetail.summaryTab.fulfilled.noteFromVendorLabel'),
...options.initialState || {},
};

Expand Down
15 changes: 12 additions & 3 deletions js/views/modals/orderDetail/summaryTab/Summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,9 +558,18 @@ export default class extends BaseVw {
},
});

this.vendor.getProfile()
.done(profile =>
this.fulfilled.setState({ storeName: profile.get('name') }));
if (app.profile.id === this.vendor.id) {
this.fulfilled.setState({ noteFromLabel:
app.polyglot.t('orderDetail.summaryTab.fulfilled.yourNoteLabel') });
} else {
this.vendor.getProfile()
.done(profile => {
this.fulfilled.setState({
noteFromLabel: app.polyglot.t('orderDetail.summaryTab.fulfilled.noteFromStoreLabel',
{ store: profile.get('name') }),
});
});
}

this.$subSections.prepend(this.fulfilled.render().el);

Expand Down

0 comments on commit 705f794

Please sign in to comment.