-
-
Notifications
You must be signed in to change notification settings - Fork 367
/
Copy pathprime-vue.ts
180 lines (171 loc) · 3.42 KB
/
prime-vue.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
import type { ComponentResolver, SideEffectsInfo } from '../../types'
// @keep-sorted
const components = [
'Accordion',
'AccordionTab',
'AutoComplete',
'Avatar',
'AvatarGroup',
'Badge',
'BlockUI',
'Breadcrumb',
'Button',
'Calendar',
'Card',
'Carousel',
'CascadeSelect',
'Chart',
'Checkbox',
'Chip',
'Chips',
'ColorPicker',
'Column',
'ColumnGroup',
// 'ConfirmDialog',
// 'ConfirmPopup',
// These must be registered globally in order for the confirm service to work properly
'ContextMenu',
'DataTable',
'DataView',
'DataViewLayoutOptions',
'DeferredContent',
'Dialog',
'Divider',
'Dock',
'Dropdown',
'Editor',
'Fieldset',
'FileUpload',
'FloatLabel',
'FullCalendar',
'Galleria',
'IconField',
'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',
'Row',
'ScrollPanel',
'ScrollTop',
'SelectButton',
'Sidebar',
'Skeleton',
'Slider',
'SpeedDial',
'SplitButton',
'Splitter',
'SplitterPanel',
'Stepper',
'StepperPanel',
'Steps',
'TabMenu',
'TabPanel',
'TabView',
'Tag',
'Terminal',
'TerminalService',
'Textarea',
'TieredMenu',
'Timeline',
'Timelist',
// 'Toast',
// Toast must be registered globally in order for the toast service to work properly
'ToggleButton',
'Toolbar',
// 'Tooltip',
// Tooltip must be registered globally in order for the tooltip service to work properly
'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,
}
}
},
}
}