♻️ Rename actions for better semantics

This commit is contained in:
Philipp Stracker 2024-12-19 13:26:19 +01:00
parent da96c084ab
commit 1e26852aa1
No known key found for this signature in database
3 changed files with 14 additions and 14 deletions

View file

@ -150,7 +150,7 @@ export const persist = function* () {
*
* @return {Action} The action.
*/
export const connectToSandbox = function* () {
export const sandboxOnboardingUrl = function* () {
return yield {
type: ACTION_TYPES.DO_GENERATE_ONBOARDING_URL,
environment: 'sandbox',
@ -164,7 +164,7 @@ export const connectToSandbox = function* () {
* @param {string[]} products Which products/features to display in the ISU popup.
* @return {Action} The action.
*/
export const connectToProduction = function* ( products = [] ) {
export const productionOnboardingUrl = function* ( products = [] ) {
return yield {
type: ACTION_TYPES.DO_GENERATE_ONBOARDING_URL,
environment: 'production',

View file

@ -31,8 +31,8 @@ const useHooks = () => {
setManualConnectionMode,
setClientId,
setClientSecret,
connectToSandbox,
connectToProduction,
sandboxOnboardingUrl,
productionOnboardingUrl,
connectViaIdAndSecret,
} = useDispatch( STORE_NAME );
@ -77,8 +77,8 @@ const useHooks = () => {
setClientSecret: ( value ) => {
return savePersistent( setClientSecret, value );
},
connectToSandbox,
connectToProduction,
sandboxOnboardingUrl,
productionOnboardingUrl,
connectViaIdAndSecret,
merchant,
wooSettings,
@ -86,15 +86,15 @@ const useHooks = () => {
};
export const useSandbox = () => {
const { isSandboxMode, setSandboxMode, connectToSandbox } = useHooks();
const { isSandboxMode, setSandboxMode, sandboxOnboardingUrl } = useHooks();
return { isSandboxMode, setSandboxMode, connectToSandbox };
return { isSandboxMode, setSandboxMode, sandboxOnboardingUrl };
};
export const useProduction = () => {
const { connectToProduction } = useHooks();
const { productionOnboardingUrl } = useHooks();
return { connectToProduction };
return { productionOnboardingUrl };
};
export const useManualConnection = () => {