File size: 1,995 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
import config from '@automattic/calypso-config';
import page from '@automattic/calypso-router';
import { BrowserRouter } from 'react-router-dom';
import { decodeURIComponentIfValid } from 'calypso/lib/url';
import NewsletterImporter from 'calypso/my-sites/importer/newsletter/importer';
import SectionImport from 'calypso/my-sites/importer/section-import';
import { getSelectedSiteSlug } from 'calypso/state/ui/selectors';
import 'calypso/blocks/import/style/base.scss';
export function importSite( context, next ) {
const state = context.store.getState();
const engine = context.query?.engine;
const fromSite = decodeURIComponentIfValid(
context.query?.[ 'from-site' ] || context.query?.from
);
const siteSlug = getSelectedSiteSlug( state );
const afterStartImport = () => {
let path = context.pathname;
if ( fromSite ) {
path += '?from-site=' + fromSite;
}
if ( engine === 'substack' && config.isEnabled( 'importers/newsletter' ) ) {
if ( fromSite ) {
page.redirect( `/import/newsletter/substack/${ siteSlug }?from=${ fromSite }` );
return;
}
page.redirect( `/import/newsletter/substack/${ siteSlug }` );
return;
}
page.replace( path );
};
context.primary = (
<SectionImport engine={ engine } fromSite={ fromSite } afterStartImport={ afterStartImport } />
);
next();
}
export function importSubstackSite( context, next ) {
if ( ! config.isEnabled( 'importers/newsletter' ) ) {
page.redirect( '/import' );
return;
}
const state = context.store.getState();
const siteSlug = getSelectedSiteSlug( state );
const supportedImportSubstackSiteSteps = [
'content',
'subscribers',
'paid-subscribers',
'summary',
];
const step = context.params.step;
if ( step && ! supportedImportSubstackSiteSteps.includes( step ) ) {
page.redirect( '/import/' + siteSlug );
return;
}
context.primary = (
<BrowserRouter>
<NewsletterImporter siteSlug={ siteSlug } engine="substack" step={ step } />
</BrowserRouter>
);
next();
}
|