rebase from live enviornment

This commit is contained in:
Rachit Bhargava
2024-01-09 22:14:20 -05:00
parent ff0b49a046
commit 3a22fcaa4a
15968 changed files with 2344674 additions and 45234 deletions

View File

@@ -0,0 +1,113 @@
/**
* External dependencies
*/
import {
getSetting,
STORE_PAGES,
LocaleSpecificAddressField,
} from '@woocommerce/settings';
export type WordCountType =
| 'words'
| 'characters_excluding_spaces'
| 'characters_including_spaces';
interface WcBlocksConfig {
buildPhase: number;
pluginUrl: string;
productCount: number;
defaultAvatar: string;
restApiRoutes: Record< string, string[] >;
wordCountType: WordCountType;
}
export const blocksConfig = getSetting( 'wcBlocksConfig', {
buildPhase: 1,
pluginUrl: '',
productCount: 0,
defaultAvatar: '',
restApiRoutes: {},
wordCountType: 'words',
} ) as WcBlocksConfig;
export const WC_BLOCKS_IMAGE_URL = blocksConfig.pluginUrl + 'images/';
export const WC_BLOCKS_BUILD_URL = blocksConfig.pluginUrl + 'build/';
export const WC_BLOCKS_PHASE = blocksConfig.buildPhase;
export const SHOP_URL = STORE_PAGES.shop?.permalink;
export const CHECKOUT_PAGE_ID = STORE_PAGES.checkout?.id;
export const CHECKOUT_URL = STORE_PAGES.checkout?.permalink;
export const PRIVACY_URL = STORE_PAGES.privacy?.permalink;
export const PRIVACY_PAGE_NAME = STORE_PAGES.privacy?.title;
export const TERMS_URL = STORE_PAGES.terms?.permalink;
export const TERMS_PAGE_NAME = STORE_PAGES.terms?.title;
export const CART_PAGE_ID = STORE_PAGES.cart?.id;
export const CART_URL = STORE_PAGES.cart?.permalink;
export const LOGIN_URL = STORE_PAGES.myaccount?.permalink
? STORE_PAGES.myaccount.permalink
: getSetting( 'wpLoginUrl', '/wp-login.php' );
export const LOCAL_PICKUP_ENABLED = getSetting< boolean >(
'localPickupEnabled',
false
);
type CountryData = {
allowBilling: boolean;
allowShipping: boolean;
states: Record< string, string >;
locale: Record< string, LocaleSpecificAddressField >;
};
// Contains country names.
const countries = getSetting< Record< string, string > >( 'countries', {} );
// Contains country settings.
const countryData = getSetting< Record< string, CountryData > >(
'countryData',
{}
);
export const ALLOWED_COUNTRIES = Object.fromEntries(
Object.keys( countryData )
.filter( ( countryCode ) => {
return countryData[ countryCode ].allowBilling === true;
} )
.map( ( countryCode ) => {
return [ countryCode, countries[ countryCode ] || '' ];
} )
);
export const ALLOWED_STATES = Object.fromEntries(
Object.keys( countryData )
.filter( ( countryCode ) => {
return countryData[ countryCode ].allowBilling === true;
} )
.map( ( countryCode ) => {
return [ countryCode, countryData[ countryCode ].states || [] ];
} )
);
export const SHIPPING_COUNTRIES = Object.fromEntries(
Object.keys( countryData )
.filter( ( countryCode ) => {
return countryData[ countryCode ].allowShipping === true;
} )
.map( ( countryCode ) => {
return [ countryCode, countries[ countryCode ] || '' ];
} )
);
export const SHIPPING_STATES = Object.fromEntries(
Object.keys( countryData )
.filter( ( countryCode ) => {
return countryData[ countryCode ].allowShipping === true;
} )
.map( ( countryCode ) => {
return [ countryCode, countryData[ countryCode ].states || [] ];
} )
);
export const COUNTRY_LOCALE = Object.fromEntries(
Object.keys( countryData ).map( ( countryCode ) => {
return [ countryCode, countryData[ countryCode ].locale || [] ];
} )
);

View File

@@ -0,0 +1,52 @@
/**
* External dependencies
*/
import { registerBlockType } from '@wordpress/blocks';
import type { Block, BlockConfiguration } from '@wordpress/blocks';
/**
* Internal dependencies
*/
import { WC_BLOCKS_PHASE } from './constants';
/**
* Registers a new experimental block provided a unique name and an object defining its
* behavior. Once registered, the block is made available as an option to any
* editor interface where blocks are implemented.
*/
export const registerExperimentalBlockType = (
blockNameOrMetadata: string | BlockConfiguration,
settings: Record< string, unknown >
): Block | undefined => {
if ( WC_BLOCKS_PHASE > 2 ) {
return registerBlockType( blockNameOrMetadata, settings );
}
};
/**
* Registers a new feature plugin block provided a unique name and an object
* defining its behavior. Once registered, the block is made available as an
* option to any editor interface where blocks are implemented.
*/
export const registerFeaturePluginBlockType = (
blockNameOrMetadata: string | BlockConfiguration,
settings: Record< string, unknown >
): Block | undefined => {
if ( WC_BLOCKS_PHASE > 1 ) {
return registerBlockType( blockNameOrMetadata, settings );
}
};
/**
* Checks if we're executing the code in an experimental build mode.
*
* @return {boolean} True if this is an experimental build, false otherwise.
*/
export const isExperimentalBuild = (): boolean => WC_BLOCKS_PHASE > 2;
/**
* Checks if we're executing the code in an feature plugin or experimental build mode.
*
* @return {boolean} True if this is an experimental or feature plugin build, false otherwise.
*/
export const isFeaturePluginBuild = (): boolean => WC_BLOCKS_PHASE > 1;

View File

@@ -0,0 +1,5 @@
/**
* Internal dependencies
*/
export * from './constants';
export * from './feature-flags';