Skip to content

Commit c967c04

Browse files
committed
fix: fix a bug - not responsive
1 parent 13eeae0 commit c967c04

8 files changed

+177
-10
lines changed

config/webpack.dev.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const devConfig = {
88
entry: "./example/index.tsx",
99
mode: "development",
1010
devtool: "source-map",
11+
entry: path.join(__dirname, "../src/sand-box.tsx"),
1112
plugins: [
1213
new HtmlWebpackPlugin({
1314
template: path.join(__dirname, "../example", "index.html"),

config/webpack.prod.config.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@ const baseConfig = require('./webpack.base.js');
44

55
const prodConfig = {
66
mode: "production",
7-
entry: path.join(__dirname, "../src/index.tsx"),
7+
entry: path.join(__dirname, "../src/sand-box.tsx"),
88
output: {
9-
path: path.join(__dirname, "../lib/"),
9+
path: path.join(__dirname, "../sandbox/"),
1010
filename: "index.js",
1111
libraryTarget: 'commonjs2'
12-
},
13-
externals: {
14-
react: 'react',
15-
"react-dom": "react-dom"
1612
}
1713
};
1814

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-jycm-viewer",
33
"private": false,
4-
"version": "0.0.7",
4+
"version": "0.1.0",
55
"description": "React rendering tool for JYCM (Json diff).",
66
"main": "dist/es/index.js",
77
"module": "dist/cjs/index.js",
@@ -11,7 +11,7 @@
1111
"lint": "eslint '{src,example}/**/*.{ts,tsx}'",
1212
"start": "webpack serve --config config/webpack.dev.config.js",
1313
"prod": "webpack --config config/webpack.prod.config.js",
14-
"build": "webpack --config config/webpack.prod.config.js",
14+
"build:sandbox": "webpack --config config/webpack.prod.config.js",
1515
"build:lib": "rollup -c",
1616
"pub": "npm run build:lib && npm publish",
1717
"storybook": "start-storybook -p 6006",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import React from 'react';
2+
3+
4+
import MonacoEditor from 'react-monaco-editor';
5+
import AutoSizer from "react-virtualized/dist/commonjs/AutoSizer";
6+
7+
import { useJYCMContext } from '..';
8+
import { jsonPathToPathKey } from '@@/utils';
9+
10+
export const DiffDetailViewer: React.FC<any> = () => {
11+
const { pairInfo, activeLeftJsonPath, activeRightJsonPath, leftJsonPath2DiffDetail } =
12+
useJYCMContext();
13+
14+
console.log(leftJsonPath2DiffDetail[jsonPathToPathKey(activeLeftJsonPath)])
15+
return (
16+
<AutoSizer>
17+
{({ height, width }) => {
18+
return (
19+
<MonacoEditor
20+
width={`${width}px`}
21+
height={`${height}px`}
22+
theme="vs"
23+
language="json"
24+
value={JSON.stringify(pairInfo, null, 2)}
25+
options={{
26+
readOnly: true,
27+
automaticLayout: true,
28+
folding: true,
29+
wordWrap: "on",
30+
}}
31+
/>
32+
);
33+
}}
34+
</AutoSizer>
35+
);
36+
};

src/hooks/useDecorations.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ const useDecorations = (
3030
rows: TRow[],
3131
activeJsonPath: any[]
3232
) => {
33+
3334
// 对于value_changes的变化
3435
const [diffDetailDict, setDiffDetailDict] = useState<{
3536
[_: string]: IDiffDetailItem;
3637
}>({});
3738
useEffect(() => {
39+
3840
setDiffDetailDict(
3941
Object.keys(rawDiffDetailDict).reduce((dict, op) => {
4042
rawDiffDetailDict[op].forEach((item: any) => {
@@ -131,7 +133,7 @@ const useDecorations = (
131133
}
132134

133135
setDecorations(_decorations);
134-
}, [rawDiffDetailDict, pathKey2Index, mode, rows, activeJsonPath]);
136+
}, [rawDiffDetailDict, diffDetailDict, pathKey2Index, mode, rows, activeJsonPath]);
135137
return { decorations, diffDetailDict };
136138
};
137139

src/sand-box.css

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
html,
2+
body,
3+
#root {
4+
height: 100%;
5+
margin: 0;
6+
}
7+
8+
body {
9+
margin: 0;
10+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
11+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
12+
sans-serif;
13+
-webkit-font-smoothing: antialiased;
14+
-moz-osx-font-smoothing: grayscale;
15+
}

src/sand-box.tsx

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
import './sand-box.css';
2+
3+
import React from 'react';
4+
import ReactDOM from 'react-dom';
5+
6+
import JYCMLib, {
7+
JYCMRender,
8+
JYCMContext,
9+
IUseJYCMProps,
10+
IJYCMRenderProps,
11+
useJYCM,
12+
useJYCMContext
13+
} from "./index";
14+
import MonacoEditor from 'react-monaco-editor';
15+
import { DiffDetailViewer } from './components/jycm-diff-detail-viewer-simple';
16+
17+
18+
const safeJSONCallback = (value: string, cb: (v: string) => void) => {
19+
try {
20+
JSON.parse(value);
21+
return cb(value)
22+
} catch (e) {
23+
return false;
24+
}
25+
}
26+
27+
const useInterval = (func: () => void, timeout: number) => {
28+
const funcRef = React.useRef(func);
29+
30+
React.useEffect(() => {
31+
function doJob() {
32+
funcRef.current && funcRef.current()
33+
}
34+
const timer = setInterval(doJob, timeout);
35+
36+
return () => {
37+
clearInterval(timer);
38+
}
39+
}, [func, timeout])
40+
}
41+
42+
43+
44+
const useWindowData = () => {
45+
const [leftJsonStr, setLeftJsonStr] = React.useState('{}')
46+
const [rightJsonStr, setRightJsonStr] = React.useState('{}')
47+
const [diffResult, setJYCMResult] = React.useState({});
48+
49+
const obData = React.useCallback(() => {
50+
// // @ts-ignore
51+
// console.log('ob', window.jycmLeftJsonStr, window.jycmLeftJsonStr, window.diffResult)
52+
// @ts-ignore
53+
safeJSONCallback(window.jycmLeftJsonStr, v => setLeftJsonStr(v))
54+
// @ts-ignore
55+
safeJSONCallback(window.jycmRightJsonStr, v => setRightJsonStr(v))
56+
// @ts-ignore
57+
if (window.diffResult && typeof window.diffResult === 'object') {
58+
// @ts-ignore
59+
setJYCMResult(window.diffResult || {})
60+
}
61+
}, [])
62+
63+
useInterval(obData, 1000);
64+
65+
return {
66+
leftJsonStr,
67+
rightJsonStr,
68+
diffResult
69+
}
70+
}
71+
72+
function SandBox() {
73+
const {
74+
leftJsonStr,
75+
rightJsonStr,
76+
diffResult,
77+
} = useWindowData();
78+
79+
// use this can ave your time! see provider below
80+
const jycmContextValue = useJYCM({
81+
leftJsonStr,
82+
rightJsonStr,
83+
diffResult,
84+
});
85+
86+
// In your component you can use all properties from jycm
87+
// using code
88+
// const jycmContext = useContext(JYCMContext)!;
89+
90+
91+
return <div style={{ height: "100%", width: "100%" }}>
92+
<div style={{ height: "100%", width: "100%" }}>
93+
{/********** any component under this provider can have access to the diff etc.
94+
You can control the editor very easy. **********/}
95+
<JYCMContext.Provider value={jycmContextValue}>
96+
{/* <JYCMRender leftTitle="BenchMark" rightTitle="Actual" /> */}
97+
<div style={{ display: "flex", alignItems: "center", height: "100%" }}>
98+
<div style={{ flexGrow: 1, height: "100%" }}>
99+
<JYCMRender leftTitle='Left' rightTitle='Right' />
100+
</div>
101+
<div style={{ flexBasis: "24%", height: '100%', display: "flex", flexDirection: "column" }}>
102+
<div style={{ textAlign: 'center', fontWeight: 700 }}>Diff Detail</div>
103+
<div style={{ flexGrow: 1 }}>
104+
<DiffDetailViewer />
105+
</div>
106+
</div>
107+
</div>
108+
</JYCMContext.Provider>
109+
110+
</div>
111+
</div>
112+
}
113+
114+
ReactDOM.render(
115+
<SandBox />,
116+
document.getElementById('root') as HTMLElement
117+
)

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"baseUrl": "./",
2121
"paths": {
2222
"@@/*": ["./src/*"]
23-
},
23+
}
2424
},
2525
"include": [
2626
"src",

0 commit comments

Comments
 (0)