9bdb25d184
refs https://github.com/TryGhost/Team/issues/2110 - dynamically defined properties on the config service did not have autotracking set up properly if they were accessed in any way before the property was defined, this caused problems in a number of areas because we have both "unauthed" and "authed" sets of config and when not logged in we had parts of the app checking for authed config properties that don't exist until after sign-in and subsequent config re-fetch - renamed `config` service to `configManager` and updated to only contain methods for fetching config data - added a `config` instance initializer that sets up a `TrackedObject` instance with some custom properties/methods and registers it on `config:main` - uses application instance initializer rather than a standard initializer because standard initializers are only called once when setting up the test suite so we'd end up with config leaking across tests - added an `@inject` decorator that when used takes the property name and injects whatever is registered at `${propertyName}:main`, this allows us to use dependency injection for any object rather than just services or controllers - using `application.inject()` in the initializer was initially used but that only works for objects that extend from `EmberObject`, the injections weren't available in native-class glimmer components so this decorator keeps the injection syntax consistent - swapped all `@service config` uses to `@inject config`
111 lines
2.9 KiB
JavaScript
111 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} from 'ghost-admin/decorators/inject';
|
|
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 store;
|
|
@service settings;
|
|
|
|
@inject config;
|
|
|
|
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 [];
|
|
}
|
|
|
|
get siteUrl() {
|
|
return this.config.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+active:true', 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;
|
|
}
|