Skip to content

Commit a1441ea

Browse files
committed
removed all contexts other than app
1 parent 659aeb3 commit a1441ea

33 files changed

+534
-3267
lines changed

__tests__/__snapshots__/useStateReducer.spec.js.snap

+3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,13 @@ Object {
4343
"undefined/api/v1/repos/unfoldingWord/en_twl",
4444
"undefined/api/v1/repos/unfoldingWord/en_tn",
4545
"undefined/api/v1/repos/unfoldingWord/en_tq",
46+
"undefined/api/v1/repos/unfoldingWord/en_sq",
47+
"undefined/api/v1/repos/unfoldingWord/en_sn",
4648
"undefined/api/v1/repos/unfoldingWord/en_obs",
4749
"undefined/api/v1/repos/unfoldingWord/en_obs-tq",
4850
"undefined/api/v1/repos/unfoldingWord/en_obs-tn",
4951
"undefined/api/v1/repos/unfoldingWord/en_obs-sn",
52+
"undefined/api/v1/repos/unfoldingWord/en_obs-sq",
5053
],
5154
},
5255
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"datatable-translatable": "0.11.14",
3838
"deep-freeze": "^0.0.1",
3939
"eslint-plugin-test-selectors": "^1.3.0",
40-
"gitea-react-toolkit": "2.0.2-rc.13",
40+
"gitea-react-toolkit": "2.1.0-rc.3",
4141
"lodash.isequal": "^4.5.0",
4242
"markdown-translatable": "2.0.0",
4343
"react": "^16.14.0",

public/build_number

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
118-8d144cc
1+
119-659aeb3

src/App.context.js

+205-29
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,241 @@
1-
import React, { useEffect,
2-
//useState //uw-languages-rcl
1+
import React, {
2+
useState,
3+
useCallback,
34
} from 'react';
5+
import { useDeepCompareEffect } from 'use-deep-compare';
46

5-
// import { loadState } from './core/persistence';
6-
import { useStateReducer } from './core/useStateReducer';
7+
import {
8+
useAuthentication,
9+
useOrganization,
10+
useRepository,
11+
useFile,
12+
} from 'gitea-react-toolkit';
713
import { useLanguages } from 'uw-languages-rcl';
14+
import { useStateReducer } from './core/useStateReducer';
15+
16+
import {
17+
// loadState,
18+
loadAuthentication,
19+
saveAuthentication,
20+
loadFileCache,
21+
saveFileCache,
22+
// removeFileCache,
23+
} from './core/persistence';
24+
25+
import { onOpenValidation } from './core/onOpenValidations';
26+
import useConfirm from './hooks/useConfirm';
27+
import { localString } from './core/localStrings';
828

929
export const AppContext = React.createContext();
1030

1131
export function AppContextProvider({
12-
authentication: __authentication,
13-
language: __language,
14-
sourceRepository: __sourceRepository,
15-
filepath: __filepath,
16-
organization: __organization,
32+
authentication: _authentication,
33+
language: _language,
34+
sourceRepository: _sourceRepository,
35+
filepath: _filepath,
36+
organization: _organization,
37+
resourceLinks: _resourceLinks,
38+
contentIsDirty: _contentIsDirty,
1739
children,
18-
resourceLinks: __resourceLinks,
19-
contentIsDirty: __contentIsDirty
2040
}) {
41+
// State for autosave
42+
const [cacheFileKey, setCacheFileKey] = useState('');
43+
const [cacheWarningMessage, setCacheWarningMessage] = useState();
44+
2145
const [state, actions] = useStateReducer({
22-
authentication: __authentication,
23-
language: __language,
24-
sourceRepository: __sourceRepository,
25-
filepath: __filepath,
26-
organization: __organization,
27-
resourceLinks: __resourceLinks,
28-
contentIsDirty: __contentIsDirty,
46+
authentication: _authentication,
47+
language: _language,
48+
sourceRepository: _sourceRepository,
49+
filepath: _filepath,
50+
organization: _organization,
51+
resourceLinks: _resourceLinks,
52+
contentIsDirty: _contentIsDirty,
2953
});
3054
// uw-languages-rcl
3155
const { state: languages } = useLanguages();
3256

3357
const {
34-
authentication, language, sourceRepository, organization,
58+
authentication,
59+
organization,
60+
language,
61+
sourceRepository,
62+
targetRepository,
63+
filepath,
64+
config: _config,
65+
criticalValidationErrors,
66+
contentIsDirty,
3567
} = state;
3668

37-
const { setTargetRepoFromSourceRepo } = actions;
69+
const {
70+
setAuthentication: onAuthentication,
71+
setOrganization: onOrganization,
72+
setSourceRepository,
73+
setTargetRepository,
74+
setTargetRepoFromSourceRepo,
75+
setFilepath,
76+
setCriticalValidationErrors,
77+
} = actions;
78+
79+
const auth = useAuthentication({
80+
authentication,
81+
onAuthentication,
82+
config: _config.authentication,
83+
loadAuthentication,
84+
saveAuthentication,
85+
});
86+
87+
const config = authentication?.config || _config.authentication;
88+
89+
const org = useOrganization({
90+
authentication,
91+
organization,
92+
onOrganization,
93+
config,
94+
});
95+
96+
const sourceRepo = useRepository({
97+
authentication,
98+
repository: sourceRepository,
99+
onRepository: setSourceRepository,
100+
urls: _config.repository.urls,
101+
config,
102+
});
103+
104+
const targetRepo = useRepository({
105+
authentication,
106+
repository: targetRepository,
107+
onRepository: setTargetRepository,
108+
urls: _config.repository.urls,
109+
config,
110+
});
111+
112+
const _onOpenValidation = (filename,content,url) => {
113+
const notices = onOpenValidation(filename, content, url);
114+
115+
if (notices.length > 0) {
116+
setCriticalValidationErrors(notices);
117+
} else {
118+
setCriticalValidationErrors([]);
119+
}
120+
return notices;
121+
};
122+
123+
const _onLoadCache = useCallback( async ({ html_url, file }) => {
124+
if (html_url) {
125+
let _cachedFile = await loadFileCache(html_url);
126+
127+
if (_cachedFile && file) {
128+
// console.log("tcc // file", file, html_url);
129+
// console.log("tcc // cached file", _cachedFile);
130+
131+
if (_cachedFile?.sha && file?.sha && _cachedFile?.sha !== file?.sha) {
132+
// Allow app to provide CACHED ("offline" content);
133+
// Might be different BRANCH (different user) or different FILE.
134+
// Might be STALE (sha has changed on DCS).
135+
// (NOTE: STALE cache would mean THIS user edited the same file in another browser.)
136+
137+
const cacheWarningMessage =
138+
'AutoSaved file: \n' + //_cachedFile.filepath + ".\n" +
139+
'Edited: ' + _cachedFile.timestamp?.toLocaleString() + '\n' +
140+
'Checksum: ' + _cachedFile.sha + '\n\n' +
141+
'Server file (newer): \n' + //file.name + ".\n" +
142+
'Checksum: ' + file.sha + '\n\n';
143+
144+
setCacheFileKey(html_url);
145+
setCacheWarningMessage(cacheWarningMessage);
146+
}
147+
};
148+
149+
return _cachedFile;
150+
}
151+
}, []);
152+
153+
const _onSaveCache = useCallback(({ file, content }) => {
154+
//console.log("tcc // _onSaveCache", file, content);
155+
if (file) {
156+
saveFileCache(file, content);
157+
}
158+
}, []);
38159

39-
const authMemo = authentication && JSON.stringify(authentication);
160+
const { isConfirmed } = useConfirm({ contentIsDirty });
40161

41-
useEffect(() => {
42-
if (authMemo && sourceRepository && organization) {
43-
const _authentication = JSON.parse(authMemo);
162+
const onConfirmClose = () => {
163+
isConfirmed(localString('ConfirmCloseWindow'));
164+
};
165+
166+
const sourceFile = useFile({
167+
authentication,
168+
repository: sourceRepository,
169+
filepath,
170+
onFilepath: setFilepath,
171+
onOpenValidation: _onOpenValidation,
172+
onLoadCache: _onLoadCache,
173+
onSaveCache: _onSaveCache,
174+
onConfirmClose,
175+
releaseFlag: organization?.username !== 'unfoldingWord' ? true:false,
176+
config,
177+
});
44178

179+
180+
let _defaultContent;
181+
182+
if ( sourceRepository?.id === targetRepository?.id ) {
183+
_defaultContent = sourceFile?.content;
184+
} else {
185+
_defaultContent = sourceFile?.publishedContent;
186+
sourceFile.content = _defaultContent;
187+
};
188+
189+
const targetFile = useFile({
190+
config: (authentication && authentication.config),
191+
authentication,
192+
repository: targetRepository,
193+
filepath,
194+
onFilepath: setFilepath,
195+
defaultContent: _defaultContent,
196+
onOpenValidation: onOpenValidation,
197+
// Pass cache actions from the app's FileContext (happens to be SOURCE).
198+
// Sharing actions allows the app to use onCacheChange events.
199+
onLoadCache: sourceFile.actions.onLoadCache,
200+
onSaveCache: sourceFile.actions.onSaveCache,
201+
onConfirmClose: null,
202+
});
203+
204+
useDeepCompareEffect(() => {
205+
if (authentication && sourceRepository && organization) {
45206
setTargetRepoFromSourceRepo({
46-
authentication: _authentication,
207+
authentication,
47208
sourceRepository,
48209
language,
49210
organization,
50211
});
51212
}
52213
}, [
53-
authMemo,
214+
setTargetRepoFromSourceRepo,
215+
authentication,
54216
sourceRepository,
55217
language,
56-
setTargetRepoFromSourceRepo,
57218
organization,
58219
]);
59220

60221
const value = {
61-
state: {...state, languages},
62-
actions,
222+
state: {
223+
...state,
224+
languages,
225+
criticalValidationErrors,
226+
cacheFileKey,
227+
cacheWarningMessage,
228+
},
229+
actions: {
230+
...actions,
231+
setCacheFileKey,
232+
},
233+
auth,
234+
org,
235+
sourceRepo,
236+
targetRepo,
237+
sourceFile,
238+
targetFile,
63239
};
64240

65241
return <AppContext.Provider value={value}>{children}</AppContext.Provider>;

0 commit comments

Comments
 (0)