Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { get } from 'lodash';
import { addQueryArgs } from 'calypso/lib/route';
import { getEditedPost } from 'calypso/state/posts/selectors';
import getEditorUrl from 'calypso/state/selectors/get-editor-url';
import { getSiteSlug } from 'calypso/state/sites/selectors';
import type { AppState } from 'calypso/types';
import 'calypso/state/editor/init';
/**
* Returns the current editor post ID, or `null` if a new post.
* @param {Object} state Global state tree
* @returns {?number} Current editor post ID
*/
export function getEditorPostId( state: AppState ): number | undefined {
return state.editor.postId;
}
/**
* Returns the editor URL for duplicating a given site ID, post ID pair.
* @param {Object} state Global state tree
* @param {number} siteId Site ID
* @param {number} postId Post ID
* @param {string} type Post type
* @returns {string} Editor URL path
*/
export function getEditorDuplicatePostPath(
state: AppState,
siteId: number,
postId: number,
type = 'post'
): string {
return addQueryArgs(
{
'jetpack-copy': postId,
},
getEditorUrl( state, siteId, null, type )
);
}
/**
* Returns the editor new post URL path for the given site ID and type.
* @param {Object} state Global state tree
* @param {number} siteId Site ID
* @param {number} type Post type
* @returns {string} Editor URL path
*/
export function getEditorNewPostPath( state: AppState, siteId: number, type = 'post' ): string {
let path;
switch ( type ) {
case 'post':
path = '/post';
break;
case 'page':
path = '/page';
break;
default:
path = `/edit/${ type }`;
break;
}
const siteSlug = getSiteSlug( state, siteId );
if ( siteSlug ) {
path += `/${ siteSlug }`;
} else {
path += `/${ siteId }`;
}
return path;
}
/**
* Returns the editor URL path for the given site ID, post ID pair.
* @param {Object} state Global state tree
* @param {number} siteId Site ID
* @param {number} postId Post ID
* @param {string} defaultType Fallback post type if post not found
* @returns {string} Editor URL path
*/
export function getEditorPath(
state: AppState,
siteId: number,
postId: number | string,
defaultType = 'post'
): string {
if ( ! siteId ) {
return 'post';
}
const editedPost = getEditedPost( state, siteId, postId );
const type = get( editedPost, 'type', defaultType );
let path = getEditorNewPostPath( state, siteId, type );
if ( postId ) {
path += `/${ postId }`;
}
return path;
}