Skip to content

Commit 957434c

Browse files
committed
NEW React site tree
1 parent e281e0d commit 957434c

33 files changed

+7133
-4
lines changed

client/dist/js/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/dist/js/vendor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/dist/styles/bundle.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/lang/en.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
77
} else {
88
ss.i18n.addDictionary('en', {
99
"Admin.ACTIONS": "View actions",
10+
"Admin.ADD_CHILD": "Add child",
1011
"Admin.ADD_TO_CAMPAIGN": "Add to campaign",
1112
"Admin.ADVANCED": "Advanced",
1213
"Admin.ANY": "Any",
@@ -30,6 +31,9 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
3031
"Admin.DELETE_CONFIRM_MESSAGE": "Deleted",
3132
"Admin.DISABLESPLITVIEW": "Screen too small to show site preview in split mode",
3233
"Admin.DISMISS": "Dismiss",
34+
"Admin.DUPLICATE": "Duplicate",
35+
"Admin.DUPLICATE_THIS_ONLY": "This record only",
36+
"Admin.DUPLICATE_WITH_CHILDREN": "This record and children",
3337
"Admin.EDIT": "Edit",
3438
"Admin.EDIT_LINK": "Edit link",
3539
"Admin.EDIT_MODE": "Edit mode",
@@ -65,6 +69,7 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
6569
"Admin.SEARCH": "Search",
6670
"Admin.SEARCH_OPTIONS": "Search options",
6771
"Admin.SELECTONEPAGE": "Please select at least one page",
72+
"Admin.SHOW_AS_LIST": "Show children as list",
6873
"Admin.SHOW_SEARCH": "Show search",
6974
"Admin.SPLIT_MODE": "Split mode",
7075
"Admin.SUMMARY_TAG_LABEL": "filters",

client/lang/src/en.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"Admin.ACTIONS": "View actions",
3+
"ADD_CHILD": "Add child",
34
"Admin.ADD_TO_CAMPAIGN": "Add to campaign",
45
"Admin.ADVANCED": "Advanced",
56
"Admin.ANY": "Any",
@@ -26,6 +27,9 @@
2627
"Admin.DELETE_CONFIRM_MESSAGE": "Deleted",
2728
"Admin.DISABLESPLITVIEW": "Screen too small to show site preview in split mode",
2829
"Admin.DISMISS": "Dismiss",
30+
"Admin.DUPLICATE": "Duplicate",
31+
"Admin.DUPLICATE_THIS_ONLY": "This record only",
32+
"Admin.DUPLICATE_WITH_CHILDREN": "This record and children",
2933
"Admin.EDIT": "Edit",
3034
"Admin.EDIT_LINK": "Edit link",
3135
"Admin.EDIT_MODE": "Edit mode",
@@ -63,6 +67,7 @@
6367
"Admin.SEARCH": "Search",
6468
"Admin.SEARCH_OPTIONS": "Search options",
6569
"Admin.SELECTONEPAGE": "Please select at least one page",
70+
"Admin.SHOW_AS_LIST": "Show children as list",
6671
"Admin.SHOW_SEARCH": "Show search",
6772
"Admin.SPLIT_MODE": "Split mode",
6873
"Admin.SUMMARY_TAG_LABEL": "filters",

client/src/boot/registerComponents.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ import SudoModePasswordField from 'components/SudoModePasswordField/SudoModePass
5555
import Paginator from 'components/Paginator/Paginator';
5656
import UnsavedChangesIndicator from 'components/UnsavedChangesIndicator/UnsavedChangesIndicator';
5757
import UnsavedChangesIndicatorTimer from 'components/UnsavedChangesIndicator/UnsavedChangesIndicatorTimer';
58+
import ComplexTreeView from 'components/ComplexTreeView/ComplexTreeView';
5859

5960
export default () => {
6061
Injector.component.registerMany({
@@ -114,5 +115,6 @@ export default () => {
114115
Paginator,
115116
UnsavedChangesIndicator,
116117
UnsavedChangesIndicatorTimer,
118+
ComplexTreeView,
117119
});
118120
};

client/src/bundles/bundle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,5 +123,6 @@ import '../legacy/HtmlEditorField';
123123
import '../legacy/TabSet';
124124
import '../legacy/GridField';
125125
import '../legacy/SearchableDropdownField/SearchableDropdownFieldEntwine';
126+
import '../legacy/ComplexTreeView/ComplexTreeViewEntwine';
126127

127128
import 'boot';

0 commit comments

Comments
 (0)