1
- import 'babel-polyfill' ;
1
+ __webpack_public_path__ = window . __webpack_public_path__ ; // eslint-disable-line
2
2
3
+ import 'babel-polyfill' ;
3
4
import $ from 'jquery' ;
4
- import account from './theme/account' ;
5
- import auth from './theme/auth' ;
6
- import blog from './theme/blog' ;
7
- import brand from './theme/brand' ;
8
- import cart from './theme/cart' ;
9
- import category from './theme/category' ;
10
- import contactUs from './theme/contact-us' ;
11
- import compare from './theme/compare' ;
12
- import errors from './theme/errors' ;
13
- import errors404 from './theme/404-error' ;
14
- import giftCertificate from './theme/gift-certificate' ;
15
5
import Global from './theme/global' ;
16
- import home from './theme/home' ;
17
- import orderComplete from './theme/order-complete' ;
18
- import rss from './theme/rss' ;
19
- import page from './theme/page' ;
20
- import product from './theme/product' ;
21
- import search from './theme/search' ;
22
- import sitemap from './theme/sitemap' ;
23
- import subscribe from './theme/subscribe' ;
24
- import wishlist from './theme/wishlist' ;
25
6
7
+ const getAccount = ( ) => import ( './theme/account' ) ;
8
+ const getLogin = ( ) => import ( './theme/auth' ) ;
26
9
const pageClasses = {
27
- 'pages/account/orders/all' : account ,
28
- 'pages/account/orders/details' : account ,
29
- 'pages/account/addresses' : account ,
30
- 'pages/account/add-address' : account ,
31
- 'pages/account/add-return' : account ,
32
- 'pages/account/add-wishlist' : wishlist ,
33
- 'pages/account/recent-items' : account ,
34
- 'pages/account/download-item' : account ,
35
- 'pages/account/edit' : account ,
36
- 'pages/account/inbox' : account ,
37
- 'pages/account/return-saved' : account ,
38
- 'pages/account/returns' : account ,
39
- 'pages/auth/login' : auth ,
40
- 'pages/auth/account-created' : auth ,
41
- 'pages/auth/create-account' : auth ,
42
- 'pages/auth/new-password' : auth ,
43
- 'pages/auth/forgot-password' : auth ,
44
- 'pages/blog' : blog ,
45
- 'pages/blog-post' : blog ,
46
- 'pages/brand' : brand ,
47
- 'pages/brands' : brand ,
48
- 'pages/cart' : cart ,
49
- 'pages/category' : category ,
50
- 'pages/compare' : compare ,
51
- 'pages/contact-us' : contactUs ,
52
- 'pages/errors' : errors ,
53
- 'pages/errors/404' : errors404 ,
54
- 'pages/gift-certificate/purchase' : giftCertificate ,
55
- 'pages/gift-certificate/balance' : giftCertificate ,
56
- 'pages/gift-certificate/redeem' : giftCertificate ,
57
- 'pages/home' : home ,
58
- 'pages/order-complete' : orderComplete ,
59
- 'pages/page' : page ,
60
- 'pages/product' : product ,
61
- 'pages/amp/product-options' : product ,
62
- 'pages/search' : search ,
63
- 'pages/rss' : rss ,
64
- 'pages/sitemap' : sitemap ,
65
- 'pages/subscribed' : subscribe ,
66
- 'pages/account/wishlist-details' : wishlist ,
67
- 'pages/account/wishlists' : wishlist ,
10
+ 'pages/account/orders/all' : getAccount ,
11
+ 'pages/account/orders/details' : getAccount ,
12
+ 'pages/account/addresses' : getAccount ,
13
+ 'pages/account/add-address' : getAccount ,
14
+ 'pages/account/add-return' : getAccount ,
15
+ 'pages/account/add-wishlist' : ( ) => import ( './theme/ wishlist' ) ,
16
+ 'pages/account/recent-items' : getAccount ,
17
+ 'pages/account/download-item' : getAccount ,
18
+ 'pages/account/edit' : getAccount ,
19
+ 'pages/account/inbox' : getAccount ,
20
+ 'pages/account/return-saved' : getAccount ,
21
+ 'pages/account/returns' : getAccount ,
22
+ 'pages/auth/login' : getLogin ,
23
+ 'pages/auth/account-created' : getLogin ,
24
+ 'pages/auth/create-account' : getLogin ,
25
+ 'pages/auth/new-password' : getLogin ,
26
+ 'pages/auth/forgot-password' : getLogin ,
27
+ 'pages/blog' : ( ) => import ( './theme/ blog' ) ,
28
+ 'pages/blog-post' : ( ) => import ( './theme/ blog' ) ,
29
+ 'pages/brand' : ( ) => import ( './theme/ brand' ) ,
30
+ 'pages/brands' : ( ) => import ( './theme/ brand' ) ,
31
+ 'pages/cart' : ( ) => import ( './theme/ cart' ) ,
32
+ 'pages/category' : ( ) => import ( './theme/ category' ) ,
33
+ 'pages/compare' : ( ) => import ( './theme/ compare' ) ,
34
+ 'pages/contact-us' : ( ) => import ( './theme/contact-us' ) ,
35
+ 'pages/errors' : ( ) => import ( './theme/ errors' ) ,
36
+ 'pages/errors/404' : ( ) => import ( './theme/404-error' ) ,
37
+ 'pages/gift-certificate/purchase' : ( ) => import ( './theme/gift-certificate' ) ,
38
+ 'pages/gift-certificate/balance' : ( ) => import ( './theme/gift-certificate' ) ,
39
+ 'pages/gift-certificate/redeem' : ( ) => import ( './theme/gift-certificate' ) ,
40
+ 'pages/home' : ( ) => import ( './theme/ home' ) ,
41
+ 'pages/order-complete' : ( ) => import ( './theme/order-complete' ) ,
42
+ 'pages/page' : ( ) => import ( './theme/ page' ) ,
43
+ 'pages/product' : ( ) => import ( './theme/ product' ) ,
44
+ 'pages/amp/product-options' : ( ) => import ( './theme/ product' ) ,
45
+ 'pages/search' : ( ) => import ( './theme/ search' ) ,
46
+ 'pages/rss' : ( ) => import ( './theme/ rss' ) ,
47
+ 'pages/sitemap' : ( ) => import ( './theme/ sitemap' ) ,
48
+ 'pages/subscribed' : ( ) => import ( './theme/ subscribe' ) ,
49
+ 'pages/account/wishlist-details' : ( ) => import ( './theme/ wishlist' ) ,
50
+ 'pages/account/wishlists' : ( ) => import ( './theme/ wishlist' ) ,
68
51
} ;
69
52
70
53
/**
@@ -80,11 +63,16 @@ window.stencilBootstrap = function stencilBootstrap(templateFile, contextJSON =
80
63
81
64
return {
82
65
load ( ) {
83
- $ ( ( ) => {
84
- let pageClass ;
66
+ $ ( async ( ) => {
85
67
let globalClass ;
68
+ let pageClass ;
69
+ let PageClass ;
70
+
86
71
// Finds the appropriate class from the pageType.
87
- const PageClass = pageClasses [ templateFile ] ;
72
+ const pageClassImporter = pageClasses [ templateFile ] ;
73
+ if ( typeof pageClassImporter === 'function' ) {
74
+ PageClass = ( await pageClassImporter ( ) ) . default ;
75
+ }
88
76
89
77
if ( loadGlobal ) {
90
78
globalClass = new Global ( ) ;
0 commit comments