add spinner and use button template
This commit is contained in:
parent
9a0f3741ca
commit
7f8330cb62
|
@ -6,6 +6,7 @@ export default Ember.Component.extend({
|
|||
result: null,
|
||||
amount: null,
|
||||
stripe: null,
|
||||
transactionInProgress: null,
|
||||
|
||||
init() {
|
||||
this._super();
|
||||
|
@ -32,17 +33,18 @@ export default Ember.Component.extend({
|
|||
self.set('result', null);
|
||||
|
||||
if (result.error) {
|
||||
console.log('error yo');
|
||||
console.log(result.error);
|
||||
}
|
||||
else {
|
||||
self.set('transactionInProgress', true);
|
||||
|
||||
var params = {
|
||||
stripeToken: result.token.id,
|
||||
amount: self.get('amount') * 100
|
||||
};
|
||||
|
||||
console.log(params);
|
||||
|
||||
ajax('/charges', { data: params, method: 'post' }).then(data => {
|
||||
self.set('transactionInProgress', false);
|
||||
self.set('result', (data.status == 'succeeded' ? true : null));
|
||||
}).catch((data) => {
|
||||
console.log('catch', data);
|
||||
|
|
|
@ -14,7 +14,14 @@
|
|||
|
||||
<div class="control-group save-button">
|
||||
<div class="controls">
|
||||
<button {{action "submitStripeCard"}} class="btn btn-primary">{{i18n 'discourse_donations.submit'}}</button>
|
||||
{{#d-button action="submitStripeCard" class="btn btn-primary btn-payment"}}
|
||||
{{i18n 'discourse_donations.submit'}}
|
||||
{{/d-button}}
|
||||
|
||||
{{#if transactionInProgress}}
|
||||
{{loading-spinner size="small"}}
|
||||
{{/if}}
|
||||
|
||||
{{#if result}}
|
||||
<span>{{i18n 'discourse_donations.success'}}</span>
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in New Issue