|
1 |
| -import React, { useEffect, |
2 |
| - //useState //uw-languages-rcl |
| 1 | +import React, { |
| 2 | + useState, |
| 3 | + useCallback, |
3 | 4 | } from 'react';
|
| 5 | +import { useDeepCompareEffect } from 'use-deep-compare'; |
4 | 6 |
|
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'; |
7 | 13 | 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'; |
8 | 28 |
|
9 | 29 | export const AppContext = React.createContext();
|
10 | 30 |
|
11 | 31 | 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, |
17 | 39 | children,
|
18 |
| - resourceLinks: __resourceLinks, |
19 |
| - contentIsDirty: __contentIsDirty |
20 | 40 | }) {
|
| 41 | + // State for autosave |
| 42 | + const [cacheFileKey, setCacheFileKey] = useState(''); |
| 43 | + const [cacheWarningMessage, setCacheWarningMessage] = useState(); |
| 44 | + |
21 | 45 | 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, |
29 | 53 | });
|
30 | 54 | // uw-languages-rcl
|
31 | 55 | const { state: languages } = useLanguages();
|
32 | 56 |
|
33 | 57 | 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, |
35 | 67 | } = state;
|
36 | 68 |
|
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 | + }, []); |
38 | 159 |
|
39 |
| - const authMemo = authentication && JSON.stringify(authentication); |
| 160 | + const { isConfirmed } = useConfirm({ contentIsDirty }); |
40 | 161 |
|
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 | + }); |
44 | 178 |
|
| 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) { |
45 | 206 | setTargetRepoFromSourceRepo({
|
46 |
| - authentication: _authentication, |
| 207 | + authentication, |
47 | 208 | sourceRepository,
|
48 | 209 | language,
|
49 | 210 | organization,
|
50 | 211 | });
|
51 | 212 | }
|
52 | 213 | }, [
|
53 |
| - authMemo, |
| 214 | + setTargetRepoFromSourceRepo, |
| 215 | + authentication, |
54 | 216 | sourceRepository,
|
55 | 217 | language,
|
56 |
| - setTargetRepoFromSourceRepo, |
57 | 218 | organization,
|
58 | 219 | ]);
|
59 | 220 |
|
60 | 221 | 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, |
63 | 239 | };
|
64 | 240 |
|
65 | 241 | return <AppContext.Provider value={value}>{children}</AppContext.Provider>;
|
|
0 commit comments