Skip to content

Commit d94b3f5

Browse files
adrollimikagrich
andauthored
Taxonomies, Builder, Core V2 (#719)
Co-authored-by: adrolli <[email protected]> Co-authored-by: mikagrich <[email protected]> Co-authored-by: mikagrich <[email protected]>
1 parent 793a50c commit d94b3f5

File tree

463 files changed

+19022
-4787
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

463 files changed

+19022
-4787
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
# Composer
66
/vendor
7+
/vendor-dev
8+
/vendor-def
79
auth.json
810
composer.lock
911

@@ -65,3 +67,9 @@ Thumbs.db
6567
# Moox Press
6668
/public/vendor/*
6769
/public/wp/*
70+
71+
# Moox Builder
72+
/app/Builder/*/*
73+
/config/previews/*
74+
/lang/*/previews/*
75+
/packages/builder-pro

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ Welcome to the Moox Project. This is a Monorepo and installable Laravel App to d
3939

4040
## Packages
4141

42-
- [Moox Builder](packages/builder/README.md), our Skeleton Package to create new Filament Plugins
42+
- [Moox Skeleton](packages/skeleton/README.md), our Skeleton Package to create new Filament Plugins
43+
- [Moox Builder](packages/builder/README.md), our Builder Package to create Filament Resources
4344
- [Moox Core](packages/core/README.md), required by all of our packages, ships common things
4445
- [Moox Jobs](packages/jobs/README.md), manage Job Queues, Failed Jobs and Batches in Filament
4546

_custom/composer.json-example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"custom/package": "dev-main"
1414
},
1515
"minimum-stability": "dev",
16-
"prefer-stable": true
16+
"prefer-stable": false
1717
}

app/Providers/Filament/AdminPanelProvider.php

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,26 @@ public function panel(Panel $panel): Panel
6565
])
6666
->spa()
6767
->plugins([
68-
// GravatarPlugin::make(),
69-
\Moox\Sync\PlatformPlugin::make(),
70-
\Moox\Audit\AuditPlugin::make(),
7168

69+
// Development
70+
GravatarPlugin::make(),
71+
\Moox\Audit\AuditPlugin::make(),
7272
\Moox\Locate\AreaPlugin::make(),
7373
//\Moox\Locate\CountryPlugin::make(),
7474
//\Moox\Locate\LanguagePlugin::make(),
7575
//\Moox\Locate\TimezonePlugin::make(),
7676

77-
\Moox\UserDevice\UserDevicePlugin::make(),
77+
// Builder plugin
78+
\Moox\Builder\SimpleTaxonomyPlugin::make(),
79+
\Moox\Builder\NestedTaxonomyPlugin::make(),
80+
\Moox\Builder\ItemPlugin::make(),
81+
\Moox\Builder\FullItemPlugin::make(),
82+
\Moox\Builder\SimpleItemPlugin::make(),
83+
7884
// CMS plugin
7985
\Moox\Page\PagePlugin::make(),
86+
\Moox\Category\CategoryPlugin::make(),
87+
\Moox\Tag\TagPlugin::make(),
8088

8189
// Notification plugin
8290
\Moox\Notification\NotificationPlugin::make(),
@@ -91,13 +99,11 @@ public function panel(Panel $panel): Panel
9199
\Moox\Jobs\JobsBatchesPlugin::make(),
92100

93101
// Sync Plugins
94-
\Moox\Sync\SyncPlugin::make(),
95-
\Moox\Sync\PlatformPlugin::make(),
102+
//\Moox\Sync\SyncPlugin::make(),
103+
//\Moox\Sync\PlatformPlugin::make(),
96104

97105
// User plugins
98106
\Moox\User\UserPlugin::make(),
99-
GravatarPlugin::make(),
100-
101107
\Moox\UserDevice\UserDevicePlugin::make(),
102108
\Moox\LoginLink\LoginLinkPlugin::make(),
103109
\Moox\UserSession\UserSessionPlugin::make(),

app/Providers/Filament/PressPanelProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ public function panel(Panel $panel): Panel
8989
\Moox\Jobs\JobsBatchesPlugin::make(),
9090

9191
// Sync Plugins
92-
\Moox\Sync\SyncPlugin::make(),
93-
\Moox\Sync\PlatformPlugin::make(),
92+
//\Moox\Sync\SyncPlugin::make(),
93+
//\Moox\Sync\PlatformPlugin::make(),
9494

9595
// User plugins
9696
\Moox\Press\WpUserPlugin::make(),

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"moox/press-trainings": "*",
4040
"moox/press-wiki": "*",
4141
"moox/security": "*",
42-
"moox/sync": "*",
4342
"moox/trainings": "*",
4443
"moox/user": "*",
4544
"moox/user-device": "*",
@@ -125,4 +124,4 @@
125124
},
126125
"minimum-stability": "dev",
127126
"prefer-stable": false
128-
}
127+
}

0 commit comments

Comments
 (0)