86 lines
2.2 KiB
Plaintext
Raw Normal View History

2017-02-22 10:21:42 +11:00
import { ajax } from 'discourse/lib/ajax';
2017-02-28 12:39:07 +11:00
import { getRegister } from 'discourse-common/lib/get-owner';
2017-02-22 10:21:42 +11:00
export default Ember.Component.extend({
2017-03-10 13:34:24 +11:00
donateAmounts: [
{ value: 1, name: '1.00'},
{ value: 2, name: '2.00'},
{ value: 5, name: '5.00'},
{ value: 10, name: '10.00'},
{ value: 20, name: '20.00'},
{ value: 50, name: '50.00'}
2017-03-10 13:34:24 +11:00
],
2017-05-03 15:13:41 +10:00
result: [],
amount: 1,
2017-02-28 12:39:07 +11:00
stripe: null,
2017-03-06 11:12:22 +11:00
transactionInProgress: null,
settings: null,
2017-02-27 14:22:52 +11:00
2017-02-28 12:39:07 +11:00
init() {
this._super();
this.set('anon', (!Discourse.User.current()));
this.set('settings', getRegister(this).lookup('site-settings:main'));
2017-03-22 15:05:06 +11:00
this.set('create_accounts', this.get('anon') && this.get('settings').discourse_donations_enable_create_accounts);
this.set('stripe', Stripe(this.get('settings').discourse_donations_public_key));
2017-02-28 12:39:07 +11:00
},
2017-02-22 10:21:42 +11:00
card: function() {
let elements = this.get('stripe').elements();
return elements.create('card', {
hidePostalCode: !this.get('settings').discourse_donations_zip_code
});
}.property('stripe'),
didInsertElement() {
this._super();
2017-02-22 10:21:42 +11:00
this.get('card').mount('#card-element');
},
2017-04-03 11:05:22 +10:00
setSuccess() {
this.set('paymentSuccess', true);
2017-04-03 11:05:22 +10:00
},
endTranscation() {
this.set('transactionInProgress', false);
},
2017-05-03 15:13:41 +10:00
concatMessages(messages) {
this.set('result', this.get('result').concat(messages));
},
actions: {
submitStripeCard() {
let self = this;
self.set('transactionInProgress', true);
this.get('stripe').createToken(this.get('card')).then(data => {
2017-05-03 15:13:41 +10:00
self.set('result', []);
if (data.error) {
self.set('result', data.error.message);
self.endTranscation();
}
else {
let params = {
stripeToken: data.token.id,
2017-03-20 12:08:30 +11:00
amount: self.get('amount') * 100,
user_id: self.get('currentUser.id'),
2017-03-21 11:52:48 +11:00
email: self.get('email'),
2017-05-18 12:09:37 +10:00
username: self.get('username'),
create_account: self.get('create_accounts')
2017-02-22 10:21:42 +11:00
};
if(!self.get('paymentSuccess')) {
ajax('/charges', { data: params, method: 'post' }).then(d => {
self.concatMessages(d.messages);
2017-05-10 14:17:28 +10:00
self.endTranscation();
});
}
}
});
}
}
});