-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAcfFieldTypeConfigurationBlock.js
131 lines (113 loc) · 4.07 KB
/
AcfFieldTypeConfigurationBlock.js
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
import { gql } from '@apollo/client';
import React, { useState, useEffect } from 'react';
import { Card, CardHeader } from '@/components/ui/card';
import { Tabs, TabsList, TabsTrigger, TabsContent } from '@/components/ui/tabs';
import { HighlightCode } from '@/lib/highlightCode';
import { snakeToPascalCase } from '@/lib/snakeToPascalCase';
import { stringToHash } from '@/lib/stringToHash';
function generateData(uniqueId, acfFieldType) {
if (!uniqueId || !acfFieldType) return {}; // Defensive check
return {
key: `my_field_group_${uniqueId}`,
title: `My Field Group with ${acfFieldType}`,
show_in_graphql: 1,
graphql_field_name: `myFieldGroupWith${snakeToPascalCase(acfFieldType)}`,
map_graphql_types_from_location_rules: 0,
graphql_types: ['Page'],
fields: [{
key: `my_field_${uniqueId}`,
label: 'My Field',
name: 'my_field',
type: `${acfFieldType}`,
show_in_graphql: 1,
graphql_field_name: `myFieldWith${snakeToPascalCase(acfFieldType)}`,
}],
location: [[{
param: 'post_type',
operator: '==',
value: 'page',
}]],
};
}
function generatePHPTabContent(data) {
if (!data || Object.keys(data).length === 0) return ''; // Defensive check
const phpString = `<?php
add_action( 'acf/include_fields', function() {
if ( ! function_exists( 'acf_add_local_field_group' ) ) {
return;
}
acf_add_local_field_group(
[
${JSON.stringify(data, null, 2).replace(/\n/g, "\n ") /* Fix rendered indentation */}
]
);
});`;
return HighlightCode(phpString, "php", [11, 12, 13, 14, 15, 16, 23, 24]);
}
function generateJSONTabContent(data) {
if (!data || Object.keys(data).length === 0) return ''; // Defensive check
const jsonString = JSON.stringify(data, null, 2);
return HighlightCode(jsonString, "json", [4, 5, 6, 7, 8, 9, 16, 17]);
}
function TabContent({ fieldTypeConfigurationBlockFields, uniqueId, format }) {
const acfFieldType = fieldTypeConfigurationBlockFields?.acfFieldType; // Defensive check
if (!acfFieldType || !uniqueId) return null; // Defensive check
const data = generateData(uniqueId, acfFieldType);
return format === 'php' ? generatePHPTabContent(data) : generateJSONTabContent(data);
}
export function AcfFieldTypeConfigurationBlock({ fieldTypeConfigurationBlockFields }) {
const acfFieldType = fieldTypeConfigurationBlockFields?.acfFieldType; // Defensive check
const [uniqueId, setUniqueId] = useState('');
useEffect(() => {
if (acfFieldType) {
setUniqueId(stringToHash(acfFieldType));
}
}, [acfFieldType]);
if (!acfFieldType) {
return (
<Card>
<CardHeader className="grid grid-cols-[1fr_110px] items-start space-y-2">
Field Type Config has not been configured for this field type
</CardHeader>
</Card>
);
}
const tabData = [
{ key: 'php', name: 'PHP' },
{ key: 'json', name: 'JSON' },
];
return (
<Card>
<CardHeader className="grid grid-cols-[1fr_110px] items-start gap-4 space-y-0 overflow-x-auto">
<Tabs defaultValue={tabData[0].key}>
<TabsList aria-label="Dynamic Tabs">
{tabData.map(tab => (
<TabsTrigger key={tab.key} value={tab.key}>
{tab.name}
</TabsTrigger>
))}
</TabsList>
{tabData.map(tab => (
<TabsContent key={tab.key} value={tab.key}>
<TabContent fieldTypeConfigurationBlockFields={fieldTypeConfigurationBlockFields} uniqueId={uniqueId} format={tab.key} />
</TabsContent>
))}
</Tabs>
</CardHeader>
</Card>
);
}
AcfFieldTypeConfigurationBlock.displayName = `AcfFieldTypeConfigurationBlock`
AcfFieldTypeConfigurationBlock.config = {
name: `AcfFieldTypeConfigurationBlock`,
}
AcfFieldTypeConfigurationBlock.fragments = {
key: `AcfFieldTypeConfigurationBlockFragment`,
entry: gql`
fragment AcfFieldTypeConfigurationBlockFragment on AcfFieldTypeConfigurationBlock {
fieldTypeConfigurationBlockFields {
acfFieldType
}
}
`,
}