Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import warn from '@wordpress/warning';
import deterministicStringify from 'fast-json-stable-stringify';
import { get, merge } from 'lodash';
import { keyedReducer } from 'calypso/state/utils';
const noop = () => {};
const identity = ( data ) => data;
/**
* Returns response data from an HTTP request success action if available
* @param {Object} action may contain HTTP response data
* @returns {*} response data if available
*/
export const getData = ( action ) => get( action, 'meta.dataLayer.data', undefined );
/**
* Returns error data from an HTTP request failure action if available
* @param {Object} action may contain HTTP response error data
* @returns {*} error data if available
*/
export const getError = ( action ) => get( action, 'meta.dataLayer.error', undefined );
/**
* Returns (response) headers data from an HTTP request action if available
* @param {Object} action Request action for which to retrieve HTTP response headers
* @returns {*} Headers data if available
*/
export const getHeaders = ( action ) => get( action, 'meta.dataLayer.headers', undefined );
/**
* @typedef {Object} ProgressData
* @property {number} loaded Number of bytes already transferred
* @property {number} total Total number of bytes to transfer
*/
/**
* Returns progress data from an HTTP request progress action if available
* @param {Object} action may contain HTTP progress data
* @returns {ProgressData|undefined} Progress data if available
*/
export const getProgress = ( action ) => get( action, 'meta.dataLayer.progress', undefined );
/**
* Returns stream record from an HTTP request action if available
* @param {Object} action may contain stream record
* @returns {*} response data if available
*/
export const getStreamRecord = ( action ) =>
get( action, 'meta.dataLayer.streamRecord', undefined );
const getRequestStatus = ( action ) => {
if ( undefined !== getError( action ) ) {
return 'failure';
}
if ( undefined !== getData( action ) ) {
return 'success';
}
return 'pending';
};
export const getRequestKey = ( fullAction ) => {
const { meta, ...action } = fullAction;
const requestKey = get( meta, 'dataLayer.requestKey' );
return requestKey ? requestKey : deterministicStringify( action );
};
export const requestsReducerItem = (
state = null,
{ meta: { dataLayer: { lastUpdated, pendingSince, status } = {} } = {} }
) => {
if ( status === undefined ) {
return state;
}
return Object.assign(
{ ...state },
{ status },
lastUpdated && { lastUpdated },
pendingSince && { pendingSince }
);
};
export const reducer = keyedReducer( 'meta.dataLayer.requestKey', requestsReducerItem );
/**
* Tracks the state of network activity for a given request type
*
* When we issue _REQUEST type actions they usually create some
* associated network activity by means of an HTTP request.
* We may want to know what the status of those requests are, if
* they have completed or if they have failed.
*
* This tracker stores the meta data for those requests which
* can then be independently polled by React components which
* need to know about those data requests.
*
* Note that this is meta data about remote data requests and
* _not_ about network activity, which is why this is code is
* here operating on the _REQUEST actions and not in the HTTP
* pipeline as a processor on HTTP_REQUEST actions.
* @param {Function} next next link in HTTP middleware chain
* @returns {Function} middleware function to track requests
*/
export const trackRequests = ( next ) => ( store, action ) => {
// progress events don't affect
// any tracking meta at the moment
if ( true !== get( action, 'meta.dataLayer.trackRequest' ) || getProgress( action ) ) {
return next( store, action );
}
const requestKey = getRequestKey( action );
const status = getRequestStatus( action );
const dataLayer = Object.assign(
{ requestKey, status },
status === 'pending' ? { pendingSince: Date.now() } : { lastUpdated: Date.now() }
);
const dispatch = ( response ) => store.dispatch( merge( response, { meta: { dataLayer } } ) );
next( { ...store, dispatch }, action );
};
/**
* Dispatches to appropriate function based on HTTP request meta
* @see state/data-layer/wpcom-http/actions#fetch creates HTTP requests
*
* When the WPCOM HTTP data layer handles requests it will add
* response data and errors to a meta property on the given success
* error, and progress handling actions.
*
* This function accepts several functions as the fetch, success, error and
* progress handlers for actions and it will call the appropriate
* one based on the stored meta.
*
* These handlers are action creators: based on the input data coming from the HTTP request,
* it will return an action (or an action thunk) to be executed as a response to the given
* HTTP event.
*
* If both error and response data is available this will call the
* error handler in preference over the success handler, but the
* response data will also still be available through the action meta.
*
* The functions should conform to the following type signatures:
* fetch :: Action -> Action (action creator with one Action parameter)
* onSuccess :: Action -> ResponseData -> Action (action creator with two params)
* onError :: Action -> ErrorData -> Action
* onProgress :: Action -> ProgressData -> Action
* fromApi :: ResponseData -> TransformedData throws TransformerError|SchemaError
* @param {Function} middleware intercepts requests moving through the system
* object - options object with named parameters:
* function - options.fetch called if action lacks response meta; should create HTTP request
* function - options.onSuccess called if the action meta includes response data
* function - options.onError called if the action meta includes error data
* function - options.onProgress called on progress events when uploading
* function - options.fromApi maps between API data and Calypso data
* @returns {(options: {fetch?: any; onSuccess?: any; onError?: any; onProgress?: any; fromApi?: any}) => any} action or action thunk to be executed in response to HTTP event
*/
export const requestDispatcher = ( middleware ) => ( options ) => {
if ( ! options.fetch ) {
warn( 'fetch handler is not defined: no request will ever be issued' );
}
if ( ! options.onSuccess ) {
warn( 'onSuccess handler is not defined: response to the request is being ignored' );
}
if ( ! options.onError ) {
warn( 'onError handler is not defined: error during the request is being ignored' );
}
return middleware( ( store, action ) => {
// create the low-level action we want to dispatch
const requestAction = createRequestAction( options, action );
// dispatch the low level action (if any was created) and return the result
if ( ! requestAction ) {
return;
}
if ( Array.isArray( requestAction ) ) {
return requestAction.map( store.dispatch );
}
return store.dispatch( requestAction );
} );
};
export const dispatchRequest = requestDispatcher( trackRequests );
/*
* Converts an application-level Calypso action that's handled by the data-layer middleware
* into a low-level action. For example, HTTP request that's being initiated, or a response
* action with a `meta.dataLayer` property.
*/
function createRequestAction( options, action ) {
const {
fetch = noop,
onSuccess = noop,
onError = noop,
onProgress = noop,
onStreamRecord = noop,
fromApi = identity,
} = options;
const error = getError( action );
if ( undefined !== error ) {
return onError( action, error );
}
const data = getData( action );
if ( undefined !== data ) {
try {
return onSuccess( action, fromApi( data ) );
} catch ( err ) {
return onError( action, err );
}
}
const progress = getProgress( action );
if ( undefined !== progress ) {
return onProgress( action, progress );
}
const record = getStreamRecord( action );
if ( undefined !== record ) {
return onStreamRecord( action, record );
}
return fetch( action );
}