refactor cta subscription button to component, remove deprecation

This commit is contained in:
Lisa P 2015-11-17 15:42:41 +01:00 committed by Piotr Sarnacki
parent bae81542b9
commit 8c9f92062d
5 changed files with 36 additions and 21 deletions

View File

@ -0,0 +1,8 @@
`import Ember from 'ember'`
`import config from 'travis/config/environment'`
SubscribeButtonComponent = Ember.Component.extend
classNames: ['cta-btn']
`export default SubscribeButtonComponent`

View File

@ -50,9 +50,17 @@ Controller = Ember.Controller.extend
@config.show_repos_hint == 'public'
).property()
billingUrl: (->
billingUrl: ( ->
id = if @get('model.type') == 'user' then 'user' else @get('model.login')
"#{@config.billingEndpoint}/subscriptions/#{id}"
).property('model.name', 'model.login')
subscribeButtonInfo: (->
{
billingUrl: @get('billingUrl')
subscribed: @get('model.subscribed')
education: @get('model.education')
}
).property('model.login', 'model.type')
`export default Controller`

View File

@ -25,7 +25,7 @@
color: $grey-light
text-decoration: underline
@media #{$medium-up}
.profile-header, .sync-button, .ember-view
.profile-header, .sync-button
display: inline-block
vertical-align: middle
.sync-button
@ -138,7 +138,6 @@ p.profile-user-last
li
clear: both
margin-bottom: .8em
// overflow: auto
.profile-hooks
width: grid-calc(10, 24)
display: inline-block

View File

@ -1,25 +1,10 @@
{{#if allHooks.isLoaded}}
<header>
{{#if config.billingEndpoint}}
<div class="cta-btn">
{{#if view.subscribed}}
<a class="btn btn-activated" href={{billingUrl}}>
Subscription active!
</a>
{{else}}
{{#if view.education}}
<a class="btn btn-activated" href={{billingUrl}}>
Educational account!
</a>
{{else}}
<a class="btn btn-activate" href={{billingUrl}}>
Sign up this account!
</a>
{{/if}}
{{#if config.billingEndpoint}}
{{subscribe-button account=subscribeButtonInfo}}
{{/if}}
</div>
{{/if}}
<div class="profile-header">
<h1>{{accountName}}</h1>

View File

@ -0,0 +1,15 @@
{{#if account.subscribed}}
<a class="btn btn-activated" href={{account.billingUrl}}>
Subscription active!
</a>
{{else}}
{{#if account.education}}
<a class="btn btn-activated" href={{account.billingUrl}}>
Educational account!
</a>
{{else}}
<a class="btn btn-activate" href={{account.billingUrl}}>
Sign up this account!
</a>
{{/if}}
{{/if}}