mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
110 lines
2.9 KiB
JavaScript
110 lines
2.9 KiB
JavaScript
import Component from '@ember/component';
|
|
import classic from 'ember-classic-decorator';
|
|
import copyTextToClipboard from 'ghost-admin/utils/copy-text-to-clipboard';
|
|
import {action, computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {tagName} from '@ember-decorators/component';
|
|
import {task, timeout} from 'ember-concurrency';
|
|
|
|
@classic
|
|
@tagName('')
|
|
export default class GhPortalLinks extends Component {
|
|
@service config;
|
|
@service store;
|
|
@service settings;
|
|
|
|
isLink = true;
|
|
prices = null;
|
|
copiedPrice = null;
|
|
copiedSignupInterval = null;
|
|
selectedTier = null;
|
|
tiers = null;
|
|
|
|
@computed('isLink')
|
|
get toggleValue() {
|
|
return this.isLink ? 'Data attributes' : 'Links';
|
|
}
|
|
|
|
@computed('isLink')
|
|
get sectionHeaderLabel() {
|
|
return this.isLink ? 'Link' : 'Data attribute';
|
|
}
|
|
|
|
@computed('selectedTier')
|
|
get selectedTierIdPath() {
|
|
const selectedTier = this.selectedTier;
|
|
if (selectedTier) {
|
|
return `/${selectedTier.name}`;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
@computed('tiers.[]')
|
|
get tierOptions() {
|
|
if (this.tiers) {
|
|
return this.tiers.map((tier) => {
|
|
return {
|
|
label: tier.name,
|
|
name: tier.id
|
|
};
|
|
});
|
|
}
|
|
return [];
|
|
}
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
this.siteUrl = this.config.get('blogUrl');
|
|
}
|
|
|
|
@action
|
|
toggleShowLinks() {
|
|
this.toggleProperty('isLink');
|
|
}
|
|
|
|
@action
|
|
setSelectedTier(tier) {
|
|
this.set('selectedTier', tier);
|
|
}
|
|
|
|
@task(function* () {
|
|
const tiers = yield this.store.query('tier', {filter: 'type:paid', include: 'monthly_price,yearly_price'}) || [];
|
|
this.set('tiers', tiers);
|
|
if (tiers.length > 0) {
|
|
this.set('selectedTier', {
|
|
name: tiers.firstObject.id,
|
|
label: tiers.firstObject.name
|
|
});
|
|
}
|
|
})
|
|
fetchTiers;
|
|
|
|
@task(function* (id) {
|
|
this.set('copiedPrice', id);
|
|
let data = '';
|
|
if (this.isLink) {
|
|
data = id ? `#/portal/${id}` : `#/portal/`;
|
|
data = this.siteUrl + `/` + data;
|
|
} else {
|
|
data = id ? `data-portal="${id}"` : `data-portal`;
|
|
}
|
|
copyTextToClipboard(data);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
})
|
|
copyStaticLink;
|
|
|
|
@task(function* (interval) {
|
|
this.set('copiedSignupInterval', interval);
|
|
let data = '';
|
|
if (this.isLink) {
|
|
data = `#/portal/signup${this.selectedTierIdPath}/${interval}`;
|
|
data = this.siteUrl + `/` + data;
|
|
} else {
|
|
data = `data-portal="signup${this.selectedTierIdPath}/${interval}"`;
|
|
}
|
|
copyTextToClipboard(data);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
})
|
|
copyTierSignupLink;
|
|
}
|