-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from newfold-labs/enhance/sitegen-events
Sitegen: Analytics
- Loading branch information
Showing
24 changed files
with
590 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { __ } from '@wordpress/i18n'; | ||
|
||
import { CHAPTER_SITEGEN_CORE } from '../../../constants'; | ||
import { Chapter } from '../../data/models/Chapter'; | ||
import { stepSiteGenSiteDetails } from '../../steps/SiteGen/SiteDetails/step'; | ||
import { stepSiteGenSiteLogo } from '../../steps/SiteGen/SiteLogo/step'; | ||
import { stepSiteGenSocialMedia } from '../../steps/SiteGen/SocialMedia/step'; | ||
|
||
const steps = [ | ||
stepSiteGenSiteDetails, | ||
stepSiteGenSocialMedia, | ||
stepSiteGenSiteLogo, | ||
]; | ||
|
||
export const siteGenCore = new Chapter( { | ||
id: CHAPTER_SITEGEN_CORE, | ||
name: __( 'Sitegen Core', 'wp-module-onboarding' ), | ||
steps, | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { __ } from '@wordpress/i18n'; | ||
|
||
import { CHAPTER_SITEGEN_DESIGN } from '../../../constants'; | ||
import { Chapter } from '../../data/models/Chapter'; | ||
import { stepSiteGenEditor } from '../../steps/SiteGen/Editor/step'; | ||
import { stepSiteGenPreview } from '../../steps/SiteGen/Preview/step'; | ||
|
||
const steps = [ stepSiteGenPreview, stepSiteGenEditor ]; | ||
|
||
export const siteGenDesign = new Chapter( { | ||
id: CHAPTER_SITEGEN_DESIGN, | ||
name: __( 'Sitegen Design', 'wp-module-onboarding' ), | ||
steps, | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { __ } from '@wordpress/i18n'; | ||
|
||
import { CHAPTER_SITEGEN_FEATURES } from '../../../constants'; | ||
import { Chapter } from '../../data/models/Chapter'; | ||
import { stepSiteGenBuilding } from '../../steps/SiteGen/Building/step'; | ||
import { stepSiteGenExperience } from '../../steps/SiteGen/Experience/step'; | ||
|
||
const steps = [ stepSiteGenExperience, stepSiteGenBuilding ]; | ||
|
||
export const siteGenFeatures = new Chapter( { | ||
id: CHAPTER_SITEGEN_FEATURES, | ||
name: __( 'Sitegen Features', 'wp-module-onboarding' ), | ||
steps, | ||
} ); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.