-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugins.tsx
145 lines (129 loc) · 3.83 KB
/
plugins.tsx
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
import AlignmentControl from './components/tina/AlignmentControl'
import BorderControl from './components/tina/BorderControl'
import ColorControl from './components/tina/ColorControl'
import FeatureContentField from './components/tina/FeatureContentField'
import FeatureImageField from './components/tina/FeatureImageField'
import FillControl from './components/tina/FillControl'
import ImageControl from './components/tina/ImageControl'
import PaddingControl from './components/tina/PaddingControl'
import RuledTitle from './components/tina/RuledTitle'
import SelectField from './components/tina/SelectField'
import TypeControl from './components/tina/TypeControl'
import TypeSizeControl from './components/tina/TypeSizeControl'
import { TextField, GroupListField, BlocksFieldPlugin } from 'tinacms'
export const SectionListItemsPlugin = {
...BlocksFieldPlugin,
Component: (props) => {
const itemProps = (item) => {
const templateNames = {
feature: 'Feature',
tailwindFeature: 'Feature TW',
tailwindCards: 'Cards TW',
photoCards: 'Photo Cards',
textCards: 'Text Cards',
postCards: 'Post Cards',
sidebarCards: 'Tabs',
banner: 'Banner',
support: 'Support',
embed: 'Embed'
}
const sectionName = item.headline || item.subhead || item.label || item.title || ''
const sectionNameShort = sectionName.match(/^.{24}\w*/)
const sectionLabel = sectionNameShort || sectionName || ''
const label = `${sectionLabel} (${templateNames[item._template]})`
return { ...item, label: label }
}
let templates = {}
Object.keys(props.field.templates).forEach((key) => {
templates[key] = {
...props.field.templates[key],
itemProps,
}
})
return <BlocksFieldPlugin.Component {...props} field={{ ...props.field, templates }} />
},
__type: 'field',
name: "sectionListItems",
}
export const itemListFieldPlugin = {
Component: (props) => {
const field = {
...props.field,
itemProps: (item) => {
return { label: item.headline || item.subhead || item.label }
},
}
return <GroupListField {...props} field={field} />
},
__type: 'field',
name: 'itemListField'
}
export const emailFieldPlugin = {
Component: TextField,
__type: 'field',
name: 'emailField',
validate: (email, allValues, meta, field) => {
let isValidEmail = /.*@.*\..*/.test(email)
if (!isValidEmail) return 'Invalid email address'
},
}
export const alignmentControlFieldPlugin = {
Component: AlignmentControl,
__type: 'field',
name: 'alignmentControl',
}
export const borderControlFieldPlugin = {
Component: BorderControl,
__type: 'field',
name: 'borderControl',
}
export const colorControlFieldPlugin = {
Component: ColorControl,
__type: 'field',
name: 'colorControl',
}
export const featureContentFieldPlugin = {
Component: FeatureContentField,
__type: 'field',
name: 'featureContentField',
}
export const featureImageFieldPlugin = {
Component: FeatureImageField,
__type: 'field',
name: 'featureImageField',
}
export const fillControlFieldPlugin = {
Component: FillControl,
__type: 'field',
name: 'fillControl',
}
export const imageControlFieldPlugin = {
Component: ImageControl,
__type: 'field',
name: 'imageControl',
}
export const paddingControlFieldPlugin = {
Component: PaddingControl,
__type: 'field',
name: 'paddingControl',
}
export const ruledTitlePlugin = {
Component: RuledTitle,
__type: 'field',
name: 'ruledTitle',
}
export const selectFieldPlugin = {
Component: SelectField,
__type: 'field',
name: 'selectField',
}
export const typeControlFieldPlugin = {
Component: TypeControl,
__type: 'field',
name: 'typeControl',
}
export const typeSizeControlFieldPlugin = {
Component: TypeSizeControl,
__type: 'field',
name: 'typeSizeControl',
}