strapi-content-sync-pro 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -0
- package/admin/src/components/ConfigTab.jsx +1010 -1007
- package/admin/src/components/HelpTab.jsx +36 -0
- package/package.json +1 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { Box, Typography, Tabs, Divider } from '@strapi/design-system';
|
|
2
2
|
|
|
3
|
+
const INTRO_VIDEO_URL = 'https://youtu.be/hr3dD6dLgLQ';
|
|
4
|
+
const INTRO_VIDEO_EMBED_URL = 'https://www.youtube.com/embed/hr3dD6dLgLQ';
|
|
5
|
+
|
|
3
6
|
const HelpSection = ({ title, children }) => (
|
|
4
7
|
<Box paddingBottom={6}>
|
|
5
8
|
<Typography variant="delta" tag="h3" paddingBottom={2}>{title}</Typography>
|
|
@@ -55,6 +58,39 @@ export const HelpTab = () => {
|
|
|
55
58
|
{/* Overview Tab */}
|
|
56
59
|
<Tabs.Content value="overview">
|
|
57
60
|
<Box paddingTop={4}>
|
|
61
|
+
<HelpSection title="Video walkthrough">
|
|
62
|
+
<Typography variant="omega" paddingBottom={3}>
|
|
63
|
+
Watch the plugin intro video:
|
|
64
|
+
{' '}
|
|
65
|
+
<DocLink href={INTRO_VIDEO_URL}>YouTube</DocLink>
|
|
66
|
+
</Typography>
|
|
67
|
+
|
|
68
|
+
<Box
|
|
69
|
+
background="neutral100"
|
|
70
|
+
hasRadius
|
|
71
|
+
padding={3}
|
|
72
|
+
style={{ maxWidth: '960px' }}
|
|
73
|
+
>
|
|
74
|
+
<Box style={{ position: 'relative', paddingTop: '56.25%' }}>
|
|
75
|
+
<Box
|
|
76
|
+
tag="iframe"
|
|
77
|
+
src={INTRO_VIDEO_EMBED_URL}
|
|
78
|
+
title="Content Sync Pro — plugin intro"
|
|
79
|
+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
80
|
+
allowFullScreen
|
|
81
|
+
style={{
|
|
82
|
+
position: 'absolute',
|
|
83
|
+
top: 0,
|
|
84
|
+
left: 0,
|
|
85
|
+
width: '100%',
|
|
86
|
+
height: '100%',
|
|
87
|
+
border: 0,
|
|
88
|
+
}}
|
|
89
|
+
/>
|
|
90
|
+
</Box>
|
|
91
|
+
</Box>
|
|
92
|
+
</HelpSection>
|
|
93
|
+
|
|
58
94
|
<HelpSection title="What is Content Sync Pro?">
|
|
59
95
|
<Typography variant="omega">
|
|
60
96
|
This plugin enables data synchronization between two Strapi v5 instances. It provides a complete
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "strapi-content-sync-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Strapi v5 plugin to copy, migrate, and live-sync content, media, and data between multiple Strapi environments with bi-directional sync, field-level policies, scheduling, and alerts.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|