This repository was archived by the owner on Dec 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
188 lines (179 loc) · 3.69 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
import type { ComponentResolver, SideEffectsInfo } from 'unplugin-vue-components/types'
const components = [
'Accordion',
'AccordionTab',
//'AnimateOnScroll',
// AnimateOnScroll is a directive that must be installed globally
'AutoComplete',
'Avatar',
'AvatarGroup',
'Badge',
'BlockUI',
'Breadcrumb',
'Button',
'ButtonGroup',
'Calendar',
'Card',
'Carousel',
'CascadeSelect',
'Chart',
'Checkbox',
'Chip',
'Chips',
'ColorPicker',
'Column',
'ColumnGroup',
'ConfirmDialog',
'ConfirmPopup',
// The ConfirmationService must be installed globally
'ContextMenu',
'DataTable',
'DataView',
'DataViewLayoutOptions',
'DeferredContent',
'Dialog',
'Divider',
'Dock',
'Dropdown',
'DynamicDialog',
// The DialogService must be installed globally
'Editor',
'Fieldset',
'FileUpload',
'FloatLabel',
//'FocusTrap',
// FocusTrap is a directive that must be installed globally
'FullCalendar',
'Galleria',
'IconField',
'Image',
'InlineMessage',
'Inplace',
'InputGroup',
'InputGroupAddon',
'InputIcon',
'InputMask',
'InputNumber',
'InputOtp',
'InputSwitch',
'InputText',
'Knob',
'Listbox',
'MegaMenu',
'Menu',
'Menubar',
'Message',
'MeterGroup',
'MultiSelect',
'OrderList',
'OrganizationChart',
'OverlayPanel',
'Paginator',
'Panel',
'PanelMenu',
'Password',
'PickList',
'ProgressBar',
'ProgressSpinner',
'RadioButton',
'Rating',
//'Ripple',
// Ripple is a directive that must be installed globally
'Row',
'ScrollPanel',
'ScrollTop',
'SelectButton',
'Sidebar',
'Skeleton',
'Slider',
'SpeedDial',
'SplitButton',
'Splitter',
'SplitterPanel',
'Stepper',
'StepperPanel',
'Steps',
//'StyleClass',
// StyleClass is a directive that must be installed globally
'TabMenu',
'TabPanel',
'TabView',
'Tag',
'Terminal',
'TerminalService',
'Textarea',
'TieredMenu',
'Timeline',
'Toast',
// The ToastService must be installed globally
'ToggleButton',
'Toolbar',
// 'Tooltip',
// Tooltips are a directive that must be installed globally
'Tree',
'TreeSelect',
'TreeTable',
'TriStateCheckbox',
'VirtualScroller',
]
export interface PrimeVueResolverOptions {
/**
* import style along with components
*
* @default true
*/
importStyle?: boolean
/**
* import `primeicons' icons
*
* requires package `primeicons`
*
* @default true
*/
importIcons?: boolean
/**
* imports a free theme - set theme name here (e.g. saga-blue)
*
* @default ''
*/
importTheme?: string
/**
* prefix for components (e.g. 'P' to resolve Menu from PMenu)
*
* @default ''
*/
prefix?: string
}
/**
* Resolver for PrimeVue - If you're using a component with the same tag as an native HTML element (e.g. button) the component must be in uppercase
*
* @link https://github.com/primefaces/primevue
*/
export function PrimeVueResolver(options: PrimeVueResolverOptions = {}): ComponentResolver {
return {
type: 'component',
resolve: (name: string) => {
const sideEffects: SideEffectsInfo = []
if (options.importStyle)
sideEffects.push('primevue/resources/primevue.min.css')
if (options.importIcons)
sideEffects.push('primeicons/primeicons.css')
if (options.importTheme) {
sideEffects.push(
`primevue/resources/themes/${options.importTheme}/theme.css`,
)
}
if (options.prefix) {
if (!name.startsWith(options.prefix))
return
name = name.substring(options.prefix.length)
}
if (components.includes(name)) {
return {
from: `primevue/${name.toLowerCase()}`,
sideEffects,
}
}
},
}
}