Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
67ff043
Migrate store and actions from editor package to fields package
gigitux Sep 12, 2024
a71e726
fix documentation
gigitux Sep 12, 2024
0141d8c
fix import
gigitux Sep 12, 2024
f21a974
remove duplicate code
gigitux Sep 12, 2024
7063ee8
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Sep 12, 2024
644dab1
update package-lock
gigitux Sep 12, 2024
3616964
refactor PR
gigitux Sep 12, 2024
f7f1d4d
fix mobile build
gigitux Sep 12, 2024
ae0efeb
update package.json
gigitux Sep 12, 2024
4356a42
migrate actions to @wordpress/fields package
gigitux Sep 12, 2024
bf1462a
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Sep 12, 2024
63adf35
reduce change
gigitux Sep 13, 2024
c938a15
register new action
gigitux Sep 13, 2024
66479da
improve code
gigitux Sep 13, 2024
0bf760d
fix actionId
gigitux Sep 13, 2024
08bb03d
update package-lock.json
gigitux Sep 13, 2024
b599c42
remove comment
gigitux Sep 13, 2024
337b3e5
rename function
gigitux Sep 13, 2024
1016ef8
rename functions
gigitux Sep 13, 2024
39d25d1
improve code
gigitux Sep 13, 2024
dc03f57
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Sep 16, 2024
599c0a4
Migrate duplicate-template-part action to @wordpress/fields package
gigitux Sep 17, 2024
60e7a58
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Sep 17, 2024
81c0980
fix build
gigitux Sep 17, 2024
7b2bb82
restore files
gigitux Sep 17, 2024
d6fcf4a
fix CSS
gigitux Sep 17, 2024
0316536
restore delete post action
gigitux Sep 18, 2024
485237f
fix import order
gigitux Sep 18, 2024
5a4fb59
move to a flat structure
gigitux Sep 18, 2024
0deeed3
remove not necessary file
gigitux Sep 18, 2024
d42430d
Merge branch 'add/action-dataviews-2' of github.com:gigitux/gutenberg…
gigitux Sep 19, 2024
400a67d
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Sep 25, 2024
18d6029
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Oct 1, 2024
ff299b6
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Oct 24, 2024
36adb07
regenerate package-lock.json file
gigitux Oct 24, 2024
47da440
generate documentation
gigitux Oct 24, 2024
64423cf
delete constant file
gigitux Oct 24, 2024
199c313
update class
gigitux Oct 25, 2024
8571360
rename styles.scss to style.scss
gigitux Oct 25, 2024
844a98a
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Oct 28, 2024
0bd24a7
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Nov 1, 2024
00533bd
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Nov 26, 2024
13ea482
restore changes
gigitux Nov 26, 2024
6dede40
fix comment
gigitux Nov 26, 2024
63247d0
fix comment
gigitux Nov 26, 2024
3b6b664
improve documentation
gigitux Nov 26, 2024
8857196
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Nov 27, 2024
084383c
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/actio…
gigitux Dec 2, 2024
4583cf8
export only CreateTemplatePartModal component
gigitux Dec 2, 2024
02da400
Merge branch 'add/action-dataviews-3' of github.com:gigitux/gutenberg…
gigitux Dec 2, 2024
e0f518e
restore not necessary changes
gigitux Dec 2, 2024
b9fb6f3
export only needed types
gigitux Dec 3, 2024
bb1f366
fix fallback value
gigitux Dec 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
move to a flat structure
  • Loading branch information
gigitux committed Sep 18, 2024
commit 5a4fb59ef6e96009a63fe14830550121ad26d8df
4 changes: 2 additions & 2 deletions packages/editor/src/dataviews/store/private-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
restorePost,
trashPost,
renamePost,
resetTemplateAction,
resetPost,
deletePost,
} from '@wordpress/fields';
import duplicateTemplatePart from '../actions/duplicate-template-part';
Expand Down Expand Up @@ -118,7 +118,7 @@ export const registerPostTypeActions =
: undefined,
postTypeConfig.slug === 'wp_block' ? exportPattern : undefined,
restorePost,
resetTemplateAction,
resetPost,
deletePost,
trashPost,
permanentlyDeletePost,
Expand Down
2 changes: 1 addition & 1 deletion packages/fields/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Undocumented declaration.

Undocumented declaration.

### resetTemplateAction
### resetPost

Undocumented declaration.

Expand Down
6 changes: 0 additions & 6 deletions packages/fields/src/actions/base-post/index.ts

This file was deleted.

5 changes: 0 additions & 5 deletions packages/fields/src/actions/common/index.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ import {
getItemTitle,
isTemplateOrTemplatePart,
isTemplateRemovable,
} from '../utils';
import type { Pattern, Template, TemplatePart } from '../../types';
import type { NoticeSettings } from '../../mutation';
import { deletePostWithNotices } from '../../mutation';
import { unlock } from '../../lock-unlock';
} from './utils';
import type { Pattern, Template, TemplatePart } from '../types';
import type { NoticeSettings } from '../mutation';
import { deletePostWithNotices } from '../mutation';
import { unlock } from '../lock-unlock';

const { PATTERN_TYPES } = unlock( patternsPrivateApis );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import { unlock } from '../../lock-unlock';
import type { Pattern } from '../../types';
import { unlock } from '../lock-unlock';
import type { Pattern } from '../types';

// Patterns.
const { CreatePatternModalContents, useDuplicatePatternProps } =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import { titleField } from '../../fields';
import type { BasePost, CoreDataError } from '../../types';
import { getItemTitle } from '../utils';
import { titleField } from '../fields';
import type { BasePost, CoreDataError } from '../types';
import { getItemTitle } from './utils';

const fields = [ titleField ];
const formDuplicateAction = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import type { Pattern } from '../../types';
import { getItemTitle } from '../utils';
import type { Pattern } from '../types';
import { getItemTitle } from './utils';

function getJsonFromItem( item: Pattern ) {
return JSON.stringify(
Expand Down
19 changes: 15 additions & 4 deletions packages/fields/src/actions/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
export * from './base-post';
export * from './common';
export * from './pattern';
export * from './template';
export { default as viewPost } from './view-post';
export { default as reorderPage } from './reorder-page';
export { default as reorderPageNative } from './reorder-page.native';
export { default as duplicatePost } from './duplicate-post';
export { default as duplicatePostNative } from './duplicate-post.native';
export { default as renamePost } from './rename-post';
export { default as resetPost } from './reset-post';
export { default as duplicatePattern } from './duplicate-pattern';
export { default as exportPattern } from './export-pattern';
export { default as exportPatternNative } from './export-pattern.native';
export { default as viewPostRevisions } from './view-post-revisions';
export { default as permanentlyDeletePost } from './permanently-delete-post';
export { default as restorePost } from './restore-post';
export { default as trashPost } from './trash-post';
export { default as deletePost } from './delete-post';
3 changes: 0 additions & 3 deletions packages/fields/src/actions/pattern/index.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { trash } from '@wordpress/icons';
/**
* Internal dependencies
*/
import { getItemTitle, isTemplateOrTemplatePart } from '../utils';
import type { CoreDataError, PostWithPermissions } from '../../types';
import { getItemTitle, isTemplateOrTemplatePart } from './utils';
import type { CoreDataError, PostWithPermissions } from '../types';

const permanentlyDeletePost: Action< PostWithPermissions > = {
id: 'permanently-delete',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { store as noticesStore } from '@wordpress/notices';
* Internal dependencies
*/

import { unlock } from '../../lock-unlock';
import { unlock } from '../lock-unlock';
import {
getItemTitle,
isTemplateRemovable,
Expand All @@ -29,8 +29,8 @@ import {
TEMPLATE_ORIGINS,
TEMPLATE_PART_POST_TYPE,
TEMPLATE_POST_TYPE,
} from '../utils';
import type { CoreDataError, PostWithPermissions } from '../../types';
} from './utils';
import type { CoreDataError, PostWithPermissions } from '../types';

// Patterns.
const { PATTERN_TYPES } = unlock( patternsPrivateApis );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import type { Action, RenderModalProps } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import type { CoreDataError, BasePost } from '../../types';
import { orderField } from '../../fields';
import type { CoreDataError, BasePost } from '../types';
import { orderField } from '../fields';

const fields = [ orderField ];
const formOrderAction = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import {
isTemplateOrTemplatePart,
TEMPLATE_ORIGINS,
TEMPLATE_POST_TYPE,
} from '../utils';
import type { CoreDataError, Template, TemplatePart } from '../../types';
} from './utils';
import type { CoreDataError, Template, TemplatePart } from '../types';

const isTemplateRevertable = (
templateOrTemplatePart: Template | TemplatePart
Expand Down Expand Up @@ -180,8 +180,8 @@ const revertTemplate = async (
}
};

const resetTemplateAction: Action< Template | TemplatePart > = {
id: 'reset-template',
const resetPostAction: Action< Template | TemplatePart > = {
id: 'reset-post',
label: __( 'Reset' ),
isEligible: ( item ) => {
return (
Expand Down Expand Up @@ -297,4 +297,4 @@ const resetTemplateAction: Action< Template | TemplatePart > = {
},
};

export default resetTemplateAction;
export default resetPostAction;
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import { getItemTitle, isTemplateOrTemplatePart } from '../utils';
import type { CoreDataError, PostWithPermissions } from '../../types';
import { getItemTitle, isTemplateOrTemplatePart } from './utils';
import type { CoreDataError, PostWithPermissions } from '../types';

const restorePost: Action< PostWithPermissions > = {
id: 'restore',
Expand Down
1 change: 0 additions & 1 deletion packages/fields/src/actions/template/index.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import { getItemTitle, isTemplateOrTemplatePart } from '../utils';
import type { CoreDataError, PostWithPermissions } from '../../types';
import { getItemTitle, isTemplateOrTemplatePart } from './utils';
import type { CoreDataError, PostWithPermissions } from '../types';

const trashPost: Action< PostWithPermissions > = {
id: 'move-to-trash',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import type { Post } from '../../types';
import type { Post } from '../types';

const viewPostRevisions: Action< Post > = {
id: 'view-post-revisions',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { Action } from '@wordpress/dataviews';
/**
* Internal dependencies
*/
import type { BasePost } from '../../types';
import type { BasePost } from '../types';

const viewPost: Action< BasePost > = {
id: 'view-post',
Expand Down
4 changes: 2 additions & 2 deletions packages/fields/src/index.native.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './actions/base-post/duplicate-post.native';
export * from './actions/base-post/reorder-page.native';
export * from './actions/duplicate-post.native';
export * from './actions/reorder-page.native';