mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
8525fd701a
refs e75720d390
- changed "Save and exit" to just "Exit" because it doesn't save anything
- updated design step of launch wizard to use new preview
- added `replacePreviewContents` action to launch controller to overwrite preview iframe contents directly
- replaced save-on-change behaviour with update-preview-on-change behaviour by POSTing to the front-end with preview header data and blatting the iframe contents with the result
- changed "Next step" button to "Save and continue" with progress spinner whilst saving
122 lines
2.7 KiB
JavaScript
122 lines
2.7 KiB
JavaScript
import Controller from '@ember/controller';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class LaunchController extends Controller {
|
|
@service config;
|
|
@service router;
|
|
@service settings;
|
|
|
|
queryParams = ['step'];
|
|
|
|
@tracked previewGuid = (new Date()).valueOf();
|
|
@tracked previewSrc = '';
|
|
@tracked step = 'customise-design';
|
|
|
|
steps = {
|
|
'customise-design': {
|
|
title: 'Customise your site',
|
|
position: 'Step 1',
|
|
next: 'connect-stripe'
|
|
},
|
|
'connect-stripe': {
|
|
title: 'Connect to Stripe',
|
|
position: 'Step 2',
|
|
next: 'set-pricing',
|
|
back: 'customise-design',
|
|
skip: 'finalise'
|
|
},
|
|
'set-pricing': {
|
|
title: 'Set up subscriptions',
|
|
position: 'Step 3',
|
|
next: 'finalise',
|
|
back: 'connect-stripe'
|
|
},
|
|
finalise: {
|
|
title: 'Launch your site',
|
|
position: 'Final step',
|
|
back: 'set-pricing'
|
|
}
|
|
};
|
|
|
|
skippedSteps = [];
|
|
|
|
get currentStep() {
|
|
return this.steps[this.step];
|
|
}
|
|
|
|
@action
|
|
goToStep(step) {
|
|
if (step) {
|
|
this.step = step;
|
|
}
|
|
}
|
|
|
|
@action
|
|
goNextStep() {
|
|
this.step = this.currentStep.next;
|
|
}
|
|
|
|
@action
|
|
goBackStep() {
|
|
let step = this.currentStep.back;
|
|
|
|
while (this.skippedSteps.includes(step)) {
|
|
this.skippedSteps = this.skippedSteps.filter(s => s !== step);
|
|
step = this.steps[step].back;
|
|
}
|
|
|
|
this.step = step;
|
|
}
|
|
|
|
// TODO: remember when a step is skipped so "back" works as expected
|
|
@action
|
|
skipStep() {
|
|
let step = this.currentStep.next;
|
|
let skipToStep = this.currentStep.skip;
|
|
|
|
while (step !== skipToStep) {
|
|
this.skippedSteps.push(step);
|
|
step = this.steps[step].next;
|
|
}
|
|
|
|
this.step = step;
|
|
}
|
|
|
|
@action
|
|
registerPreviewIframe(element) {
|
|
this.previewIframe = element;
|
|
}
|
|
|
|
@action
|
|
refreshPreview() {
|
|
this.previewGuid = (new Date()).valueOf();
|
|
}
|
|
|
|
@action
|
|
updatePreview(url) {
|
|
this.previewSrc = url;
|
|
}
|
|
|
|
@action
|
|
replacePreviewContents(html) {
|
|
if (this.previewIframe) {
|
|
this.previewIframe.contentWindow.document.open();
|
|
this.previewIframe.contentWindow.document.write(html);
|
|
this.previewIframe.contentWindow.document.close();
|
|
}
|
|
}
|
|
|
|
@action
|
|
close() {
|
|
this.router.transitionTo('dashboard');
|
|
}
|
|
|
|
@action
|
|
reset() {
|
|
this.step = 'customise-design';
|
|
this.skippedSteps = [];
|
|
}
|
|
}
|