Skip to content

Commit 41c1e59

Browse files
authored
Merge pull request #55 from webard/main
Introduce nova-kit/nova-packages-tool
2 parents e4b08eb + df8d5d7 commit 41c1e59

File tree

8 files changed

+3702
-9909
lines changed

8 files changed

+3702
-9909
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ phpunit.xml
88
.phpunit.result.cache
99
.DS_Store
1010
Thumbs.db
11+
auth.json

composer.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@
1515
"require": {
1616
"php": "^8.0",
1717
"laravel/nova": "^4.27.14",
18-
"norman-huth/nova-basic-package": "^1.2.6"
18+
"norman-huth/nova-basic-package": "^1.2.6",
19+
"nova-kit/nova-packages-tool": "^1.17"
20+
},
21+
"repositories": {
22+
"nova": {
23+
"type": "composer",
24+
"url": "https://nova.laravel.com"
25+
}
1926
},
2027
"autoload": {
2128
"psr-4": {

dist/js/tool.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mix-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"/js/tool.js": "/js/tool.js?id=f784f5ef8bff673d4c91433f754f9c9b"
2+
"/js/tool.js": "/js/tool.js?id=6d2963b95b1029c41300eba98761f83a"
33
}

nova.mix.js

+3-9
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,9 @@ class NovaExtension {
1313

1414
webpackConfig(webpackConfig) {
1515
webpackConfig.externals = {
16-
vue: 'Vue'
17-
}
18-
19-
webpackConfig.resolve.alias = {
20-
...(webpackConfig.resolve.alias || {}),
21-
'laravel-nova': path.join(
22-
__dirname,
23-
'../../nova/resources/js/mixins/packages.js'
24-
)
16+
vue: 'Vue',
17+
'laravel-nova': 'LaravelNova',
18+
'laravel-nova-ui': 'LaravelNovaUi'
2519
}
2620

2721
webpackConfig.output = {

package-lock.json

+3,666-9,845
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/MenuGroup.vue

+14-29
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,28 @@
11
<template>
22
<div v-if="item.items.length > 0" :class="item.classes.filterClass">
3-
<h4
4-
@click.prevent="handleClick"
5-
class="flex items-center px-1 py-1 rounded text-left text-gray-500"
6-
:class="[{
7-
'cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-800':
8-
displayAsButton,
9-
'font-bold text-primary-500 dark:text-primary-500': item.active,
10-
}, item.icons.classes.elem, { 'cursor-pointer menu-iframe-group': item.iframe.target }]"
11-
v-tooltip.click="item.tooltip"
12-
@click="item.iframe.target ? open = true : null"
13-
>
3+
<h4 @click.prevent="handleClick" class="flex items-center px-1 py-1 rounded text-left text-gray-500" :class="[{
4+
'cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-800':
5+
displayAsButton,
6+
'font-bold text-primary-500 dark:text-primary-500': item.active,
7+
}, item.icons.classes.elem, { 'cursor-pointer menu-iframe-group': item.iframe.target }]"
8+
v-tooltip.click="item.tooltip" @click="item.iframe.target ? open = true : null">
149
<span class="inline-block shrink-0 w-6 h-6">
15-
<NHMenuIcon :icons="item.icons" v-if="!item.icons.asLabel"/>
10+
<NHMenuIcon :icons="item.icons" v-if="!item.icons.asLabel" />
1611
</span>
1712

18-
<span
19-
class="flex-1 flex items-center w-full tracking-wide uppercase font-bold text-left text-xs px-3 py-1"
20-
:class="'gap-x-'+item.icons.labelGap"
21-
>
22-
<NHMenuIcon :icons="item.icons" v-if="item.icons.asLabel" class="inline-block"/>
13+
<span class="flex-1 flex items-center w-full tracking-wide uppercase font-bold text-left text-xs px-3 py-1"
14+
:class="'gap-x-' + item.icons.labelGap">
15+
<NHMenuIcon :icons="item.icons" v-if="item.icons.asLabel" class="inline-block" />
2316
{{ item.name }}
2417
</span>
2518

26-
<span
27-
v-if="item.collapsable"
28-
class="inline-flex items-center justify-center shrink-0 w-6 h-6"
29-
>
30-
<CollapseButton :collapsed="collapsed" :to="item.path"/>
19+
<span v-if="item.collapsable" class="inline-flex items-center justify-center shrink-0 w-6 h-6">
20+
<CollapseButton :collapsed="collapsed" :to="item.path" />
3121
</span>
3222
</h4>
3323

3424
<div v-if="!collapsed && !item.iframe.target">
35-
<component
36-
:key="item.name"
37-
v-for="item in item.items"
38-
:is="item.component"
39-
:item="item"
40-
/>
25+
<component :key="item.name" v-for="item in item.items" :is="item.component" :item="item" />
4126
</div>
4227
</div>
4328
<div :class="item.iframe.wrapper.classes" :style="item.iframe.wrapper.styles" @click="open = false" v-if="open">
@@ -46,7 +31,7 @@
4631
</template>
4732

4833
<script>
49-
import Collapsable from './../../../../../laravel/nova/resources/js/mixins/Collapsable.js'
34+
import Collapsable from './../../../vendor/laravel/nova/resources/js/mixins/Collapsable.js'
5035
5136
export default {
5237
mixins: [Collapsable],

resources/js/components/MenuSection.vue

+8-23
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
11
<template>
22
<div class="relative" v-if="item.path || item.items.length > 0" :class="item.classes.filterClass">
3-
<component
4-
:is="component"
5-
:href="item.path ?? null"
6-
@click.prevent="handleClick"
3+
<component :is="component" :href="item.path ?? null" @click.prevent="handleClick"
74
:tabindex="displayAsButton ? 0 : null"
85
class="w-full flex items-start px-1 py-1 rounded text-left text-gray-500 dark:text-gray-500 focus:outline-none focus:ring focus:ring-primary-200 dark:focus:ring-gray-600"
96
:class="[{
107
'cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-800':
118
displayAsButton,
129
'font-bold text-primary-500 dark:text-primary-500': item.active,
13-
},item.icons.classes.elem,{ 'cursor-pointer menu-iframe-section': item.iframe.target }]"
14-
v-tooltip.click="item.tooltip"
15-
@click="item.iframe.target ? open = true : null"
16-
>
10+
}, item.icons.classes.elem, { 'cursor-pointer menu-iframe-section': item.iframe.target }]"
11+
v-tooltip.click="item.tooltip" @click="item.iframe.target ? open = true : null">
1712
<span class="inline-block shrink-0 w-6 h-6">
1813
<NHMenuIcon :icons="item.icons" />
1914
</span>
2015

21-
<span
22-
class="flex-1 flex items-center w-full px-3 text-base"
23-
:class="[{'font-bold inertia-link-active': item.active}, item.icons.classes.label]"
24-
>
16+
<span class="flex-1 flex items-center w-full px-3 text-base"
17+
:class="[{ 'font-bold inertia-link-active': item.active }, item.icons.classes.label]">
2518
{{ item.name }}
2619
</span>
2720

@@ -31,21 +24,13 @@
3124
</Badge>
3225
</span>
3326

34-
<span
35-
v-if="item.collapsable"
36-
class="inline-flex items-center justify-center shrink-0 w-6 h-6"
37-
>
27+
<span v-if="item.collapsable" class="inline-flex items-center justify-center shrink-0 w-6 h-6">
3828
<CollapseButton :collapsed="collapsed" :to="item.path" />
3929
</span>
4030
</component>
4131

4232
<div v-if="!item.iframe.target && item.items.length > 0 && !collapsed" class="mt-1 space-y-1">
43-
<component
44-
:is="item.component"
45-
v-for="item in item.items"
46-
:key="item.name"
47-
:item="item"
48-
/>
33+
<component :is="item.component" v-for="item in item.items" :key="item.name" :item="item" />
4934
</div>
5035
</div>
5136
<div :class="item.iframe.wrapper.classes" :style="item.iframe.wrapper.styles" @click="open = false" v-if="open">
@@ -54,7 +39,7 @@
5439
</template>
5540

5641
<script>
57-
import Collapsable from './../../../../../laravel/nova/resources/js/mixins/Collapsable.js'
42+
import Collapsable from './../../../vendor/laravel/nova/resources/js/mixins/Collapsable.js'
5843
import { mapGetters, mapMutations } from 'vuex'
5944
6045
export default {

0 commit comments

Comments
 (0)