Skip to content

Commit 08de713

Browse files
author
Guillaume Chau
committedApr 8, 2019
feat(plugin add): feature icons
1 parent fd9cb16 commit 08de713

File tree

4 files changed

+56
-10
lines changed

4 files changed

+56
-10
lines changed
 

‎packages/@vue/cli-ui/locales/en.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,11 @@
118118
"update": "Update {target}",
119119
"refresh": "Force Refresh {target}<br><i>Press [Shift] for Quick Refresh (node_modules won't be updated)</i>"
120120
},
121-
"local": "Local"
121+
"local": "Local",
122+
"features": {
123+
"generator": "This plugin has a generator and can modify your project files and add new files for you.",
124+
"ui-integration": "This plugin includes additional UI features like enhanced tasks, configuration screens, dashboard widgets..."
125+
}
122126
},
123127
"project-dependency-item": {
124128
"version": "version",

‎packages/@vue/cli-ui/src/components/dependency/NpmPackageSearch.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
slot-scope="{ result }"
3838
:pkg="result"
3939
:selected="selectedIdModel === result.name"
40-
:try-logo="tryLogos"
40+
:load-metadata="loadMetadata"
4141
@click.native="selectedIdModel = result.name"
4242
/>
4343
</ais-results>
@@ -98,7 +98,7 @@ export default {
9898
default: 20
9999
},
100100
101-
tryLogos: {
101+
loadMetadata: {
102102
type: Boolean,
103103
default: false
104104
}

‎packages/@vue/cli-ui/src/components/dependency/PackageSearchItem.vue

+48-6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,27 @@
4949
</span>
5050
</template>
5151
</ListItemInfo>
52+
53+
<div
54+
v-if="hasGenerator"
55+
class="feature"
56+
v-tooltip="$t('org.vue.components.project-plugin-item.features.generator')"
57+
>
58+
<VueIcon
59+
icon="note_add"
60+
class="big"
61+
/>
62+
</div>
63+
<div
64+
v-if="hasUiIntegration"
65+
class="feature"
66+
v-tooltip="$t('org.vue.components.project-plugin-item.features.ui-integration')"
67+
>
68+
<VueIcon
69+
icon="brush"
70+
class="big"
71+
/>
72+
</div>
5273
</div>
5374
</template>
5475

@@ -65,15 +86,17 @@ export default {
6586
default: false
6687
},
6788
68-
tryLogo: {
89+
loadMetadata: {
6990
type: Boolean,
7091
default: false
7192
}
7293
},
7394
7495
data () {
7596
return {
76-
logoUrl: null
97+
logoUrl: null,
98+
hasGenerator: false,
99+
hasUiIntegration: false
77100
}
78101
},
79102
@@ -85,25 +108,38 @@ export default {
85108
86109
watch: {
87110
'pkg.name': {
88-
handler: 'updateLogo',
111+
handler: 'updateMetadata',
89112
immediate: true
90113
}
91114
},
92115
93116
methods: {
94-
updateLogo () {
117+
updateMetadata () {
118+
const name = this.pkg.name
119+
120+
this.hasUiIntegration = false
121+
this.hasGenerator = false
95122
// By default, show the npm user avatar
96123
this.logoUrl = this.pkg.owner.avatar
97124
98125
// Try to load the logo.png file inside the package
99-
if (this.tryLogo) {
100-
const name = this.pkg.name
126+
if (this.loadMetadata) {
101127
const img = new Image()
102128
img.onload = () => {
103129
if (name !== this.pkg.name) return
104130
this.logoUrl = img.src
105131
}
106132
img.src = `https://unpkg.com/${name}/logo.png`
133+
134+
fetch(`https://unpkg.com/${name}/ui`).then(response => {
135+
if (name !== this.pkg.name) return
136+
this.hasUiIntegration = response.ok
137+
})
138+
139+
fetch(`https://unpkg.com/${name}/generator`).then(response => {
140+
if (name !== this.pkg.name) return
141+
this.hasGenerator = response.ok
142+
})
107143
}
108144
}
109145
}
@@ -147,4 +183,10 @@ export default {
147183
&.owner
148184
.vue-ui-icon
149185
margin-right 2px
186+
187+
.feature
188+
margin-right 12px
189+
opacity .3
190+
&:hover
191+
opacity 1
150192
</style>

‎packages/@vue/cli-ui/src/components/plugin/ProjectPluginsAdd.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
>
1616
<NpmPackageSearch
1717
filters="computedKeywords:vue-cli-plugin"
18-
try-logos
18+
load-metadata
1919
@close="close()"
2020
@install="installPlugin"
2121
>

0 commit comments

Comments
 (0)
Please sign in to comment.