@fto-consult/expo-ui 6.64.24 → 6.65.0
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/bin/create-app/App.js +1 -1
- package/bin/index.js +3 -1
- package/expo-ui-path.js +12 -14
- package/expo-ui-root-path.old.js +16 -0
- package/package.json +1 -1
- package/readMe.babel.config.alias.txt +2 -2
- package/src/screens/Help/openLibraries.js +1 -1
package/bin/create-app/App.js
CHANGED
@@ -35,7 +35,7 @@ export default function AppMainEntry(){
|
|
35
35
|
},*/
|
36
36
|
logo : Logo,//logo component's properties
|
37
37
|
loginPropsMutator : {},//({object})=><{object}>, la fonction permettant de muter les props du composant Login,
|
38
|
-
authEnabled :
|
38
|
+
authEnabled : false,//la gestion de l'authentification est désactivée par défaut
|
39
39
|
customFormFields : {},//custom form fields
|
40
40
|
/*** la fonction permettant de muter les props du composant TableLink, permetant de lier les tables entre elles */
|
41
41
|
tableLinkPropsMutator : (props)=>{
|
package/bin/index.js
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
/**
|
4
4
|
toujours ajouter l'instruction ci-dessus à la première ligne de chaque script npx
|
5
|
-
@see : https://blog.shahednasser.com/how-to-create-a-npx-tool/
|
5
|
+
@see : https://blog.shahednasser.com/how-to-create-a-npx-tool/
|
6
|
+
@see : https://www.npmjs.com/package/commander, for command parsing
|
7
|
+
*/
|
6
8
|
'use strict';
|
7
9
|
process.on('unhandledRejection', err => {
|
8
10
|
throw err;
|
package/expo-ui-path.js
CHANGED
@@ -17,23 +17,21 @@ module.exports = function (){
|
|
17
17
|
if(require("./is-local-dev")()){//le programme s'exécute en environnement fix bugs sur electron
|
18
18
|
return path.resolve(__dirname,suffix).replace(sep,(sep+sep));///pour la résolution du module expo-ui en mode test
|
19
19
|
}
|
20
|
+
const isDevEnv = process?.env?.WEBPACK_SERVE && 'development' === process.env.NODE_ENV;
|
21
|
+
const packageJSON = require(process.cwd(),"package.json");
|
20
22
|
const expoUIPath = path.resolve(process.cwd(),"node_modules","@fto-consult","expo-ui");
|
21
|
-
if(
|
22
|
-
const rootPath = process.cwd();
|
23
|
-
const src = path.resolve(rootPath,"src");
|
23
|
+
if(isDevEnv && fs.existsSync(packageJSON)){
|
24
24
|
try {
|
25
|
-
const
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
25
|
+
const package = require(`${packageJSON}`);
|
26
|
+
if(package && typeof package =='objects' && package?.expoUIRootPath && typeof package.expoUIRootPath ==='string'){
|
27
|
+
const p = path.resolve(package.expoUIRootPath);
|
28
|
+
if(fs.existsSync(p) && fs.existsSync(path.resolve(p,"src")) && fs.existsSync(path.resolve(p,"webpack.config.js"))){
|
29
|
+
return path.resolve(p,suffix).replace(sep,(sep+sep));
|
30
|
+
}
|
30
31
|
}
|
32
|
+
|
31
33
|
} catch{}
|
32
|
-
const expoUi = path.resolve(rootPath,"expo-ui");
|
33
|
-
if(fs.existsSync(src) && fs.existsSync(expoUi) && fs.existsSync(path.resolve(expoUi,"webpack.config.js"))){
|
34
|
-
return path.resolve(expoUi,suffix).replace(sep,(sep+sep));
|
35
|
-
}
|
36
34
|
}
|
35
|
+
/***** old dev env */
|
37
36
|
return suffix ? path.join(expoUIPath,suffix).replace(sep,"/"): expoUIPath;
|
38
|
-
};
|
39
|
-
|
37
|
+
};
|
@@ -0,0 +1,16 @@
|
|
1
|
+
if(isDevEnv){
|
2
|
+
const rootPath = process.cwd();
|
3
|
+
const src = path.resolve(rootPath,"src");
|
4
|
+
try {
|
5
|
+
const envObj = require("./parse-env")();
|
6
|
+
const euPathm = typeof envObj.EXPO_UI_ROOT_PATH =="string" && envObj.EXPO_UI_ROOT_PATH && path.resolve(envObj.EXPO_UI_ROOT_PATH)||'';
|
7
|
+
const eu = euPathm && fs.existsSync(euPathm)? euPathm : null;
|
8
|
+
if(eu && fs.existsSync(path.resolve(eu,"src")) && fs.existsSync(path.resolve(eu,"webpack.config.js"))){
|
9
|
+
return path.resolve(eu,suffix).replace(sep,(sep+sep));
|
10
|
+
}
|
11
|
+
} catch{}
|
12
|
+
const expoUi = path.resolve(rootPath,"expo-ui");
|
13
|
+
if(fs.existsSync(src) && fs.existsSync(expoUi) && fs.existsSync(path.resolve(expoUi,"webpack.config.js"))){
|
14
|
+
return path.resolve(expoUi,suffix).replace(sep,(sep+sep));
|
15
|
+
}
|
16
|
+
}
|
package/package.json
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
// override l'alias du repertoire des écrans par défaut, celui de escreens
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
******************** les propriétés du fichier package.json
|
6
|
+
-1 la propriété exopUIRootPath : est exploitée pour spécifier les répertoires racines aux dossiers expo-ui
|
7
7
|
pendant le développement de l'application
|
8
8
|
|
9
9
|
en plus de la variable d'environnement TABLES_DATA_PATH pour la génération des tables de l'application, l'on peut aussi spécifier,
|
@@ -1 +1 @@
|
|
1
|
-
module.exports = {"@fto-consult/expo-ui":{"name":"@fto-consult/expo-ui","version":"6.
|
1
|
+
module.exports = {"@fto-consult/expo-ui":{"name":"@fto-consult/expo-ui","version":"6.65.0","repository":{"type":"git","url":"git+https://github.com/borispipo/expo-ui.git"},"homepage":"https://github.com/borispipo/expo-ui#readme"},"@babel/plugin-proposal-export-namespace-from":{"version":"7.18.9","url":"https://babel.dev/docs/en/next/babel-plugin-proposal-export-namespace-from","license":"MIT"},"@emotion/native":{"version":"11.11.0","url":"https://emotion.sh","license":"MIT"},"@emotion/react":{"version":"11.11.1","url":"https://github.com/emotion-js/emotion/tree/main/packages/react","license":"MIT"},"@expo/html-elements":{"version":"0.5.1","url":"https://github.com/expo/expo/tree/main/packages/html-elements","license":"MIT"},"@expo/metro-config":{"version":"0.10.7","url":"https://github.com/expo/expo.git","license":"MIT"},"@expo/vector-icons":{"version":"13.0.0","url":"https://expo.github.io/vector-icons","license":"MIT"},"@expo/webpack-config":{"version":"19.0.0","url":"https://github.com/expo/expo-cli.git","license":"MIT"},"@faker-js/faker":{"version":"8.0.2","url":"https://github.com/faker-js/faker.git","license":"MIT"},"@fto-consult/common":{"version":"3.55.2","url":"https://github.com/borispipo/common#readme","license":"ISC"},"@pchmn/expo-material3-theme":{"version":"1.3.1","url":"https://github.com/pchmn/expo-material3-theme#readme","license":"MIT"},"@react-native-async-storage/async-storage":{"version":"1.18.2","url":"https://github.com/react-native-async-storage/async-storage#readme","license":"MIT"},"@react-native-community/datetimepicker":{"version":"7.2.0","url":"https://github.com/react-native-community/datetimepicker#readme","license":"MIT"},"@react-native-community/netinfo":{"version":"9.3.10","url":"https://github.com/react-native-netinfo/react-native-netinfo#readme","license":"MIT"},"@react-native/assets-registry":{"version":"0.72.0","url":"git@github.com:facebook/react-native.git","license":"MIT"},"@react-navigation/native":{"version":"6.1.9","url":"https://reactnavigation.org","license":"MIT"},"@react-navigation/native-stack":{"version":"6.9.16","url":"https://github.com/software-mansion/react-native-screens#readme","license":"MIT"},"@react-navigation/stack":{"version":"6.3.20","url":"https://reactnavigation.org/docs/stack-navigator/","license":"MIT"},"@shopify/flash-list":{"version":"1.4.3","url":"https://shopify.github.io/flash-list/","license":"MIT"},"apexcharts":{"version":"3.44.0","url":"https://apexcharts.com","license":"MIT"},"babel-plugin-inline-dotenv":{"version":"1.7.0","url":"https://github.com/brysgo/babel-plugin-inline-dotenv#readme","license":"ISC"},"babel-plugin-module-resolver":{"version":"5.0.0","url":"https://github.com/tleunen/babel-plugin-module-resolver.git","license":"MIT"},"expo":{"version":"49.0.16","url":"https://github.com/expo/expo/tree/main/packages/expo","license":"MIT"},"expo-camera":{"version":"13.4.4","url":"https://docs.expo.dev/versions/latest/sdk/camera/","license":"MIT"},"expo-clipboard":{"version":"4.3.1","url":"https://docs.expo.dev/versions/latest/sdk/clipboard","license":"MIT"},"expo-font":{"version":"11.4.0","url":"https://docs.expo.dev/versions/latest/sdk/font/","license":"MIT"},"expo-image-picker":{"version":"14.3.2","url":"https://docs.expo.dev/versions/latest/sdk/imagepicker/","license":"MIT"},"expo-linking":{"version":"5.0.2","url":"https://docs.expo.dev/versions/latest/sdk/linking","license":"MIT"},"expo-sharing":{"version":"11.5.0","url":"https://docs.expo.dev/versions/latest/sdk/sharing/","license":"MIT"},"expo-sqlite":{"version":"11.3.3","url":"https://docs.expo.dev/versions/latest/sdk/sqlite/","license":"MIT"},"expo-status-bar":{"version":"1.6.0","url":"https://docs.expo.dev/versions/latest/sdk/status-bar/","license":"MIT"},"expo-system-ui":{"version":"2.4.0","url":"https://docs.expo.dev/versions/latest/sdk/system-ui","license":"MIT"},"expo-web-browser":{"version":"12.3.2","url":"https://docs.expo.dev/versions/latest/sdk/webbrowser/","license":"MIT"},"file-saver":{"version":"2.0.5","url":"https://github.com/eligrey/FileSaver.js#readme","license":"MIT"},"fs-extra":{"version":"11.1.1","url":"https://github.com/jprichardson/node-fs-extra","license":"MIT"},"google-libphonenumber":{"version":"3.2.33","url":"https://ruimarinho.github.io/google-libphonenumber/","license":"(MIT AND Apache-2.0)"},"htmlparser2-without-node-native":{"version":"3.9.2","url":"git://github.com/fb55/htmlparser2.git","license":"MIT"},"is-plain-obj":{"version":"4.1.0","license":"MIT"},"js-base64":{"version":"3.7.5","license":"BSD-3-Clause"},"pdfmake":{"version":"0.2.7","url":"http://pdfmake.org","license":"MIT"},"process":{"version":"0.11.10","url":"git://github.com/shtylman/node-process.git","license":"MIT"},"prop-types":{"version":"15.8.1","url":"https://facebook.github.io/react/","license":"MIT"},"react":{"version":"18.2.0","url":"https://reactjs.org/","license":"MIT"},"react-content-loader":{"version":"6.2.1","url":"https://github.com/danilowoz/react-content-loader","license":"MIT"},"react-dom":{"version":"18.2.0","url":"https://reactjs.org/","license":"MIT"},"react-native":{"version":"0.72.6","license":"MIT"},"react-native-big-list":{"version":"1.6.1","url":"https://marcocesarato.github.io/react-native-big-list-docs/","license":"GPL-3.0-or-later"},"react-native-blob-util":{"version":"0.18.6","url":"https://github.com/RonRadtke/react-native-blob-util","license":"MIT"},"react-native-gesture-handler":{"version":"2.12.1","url":"https://github.com/software-mansion/react-native-gesture-handler#readme","license":"MIT"},"react-native-iphone-x-helper":{"version":"1.3.1","url":"https://github.com/ptelad/react-native-iphone-x-helper#readme","license":"MIT"},"react-native-mime-types":{"version":"2.4.0","license":"MIT"},"react-native-paper":{"version":"5.11.1","url":"https://callstack.github.io/react-native-paper","license":"MIT"},"react-native-paper-dates":{"version":"0.20.3","url":"https://github.com/web-ridge/react-native-paper-dates#readme","license":"MIT"},"react-native-reanimated":{"version":"3.3.0","url":"https://github.com/software-mansion/react-native-reanimated#readme","license":"MIT"},"react-native-safe-area-context":{"version":"4.6.3","url":"https://github.com/th3rdwave/react-native-safe-area-context#readme","license":"MIT"},"react-native-screens":{"version":"3.22.1","url":"https://github.com/software-mansion/react-native-screens#readme","license":"MIT"},"react-native-svg":{"version":"13.9.0","url":"https://github.com/react-native-community/react-native-svg","license":"MIT"},"react-native-web":{"version":"0.19.9","url":"git://github.com/necolas/react-native-web.git","license":"MIT"},"react-native-webview":{"version":"13.2.2","url":"https://github.com/react-native-webview/react-native-webview#readme","license":"MIT"},"react-virtuoso":{"version":"4.6.2","url":"https://virtuoso.dev/","license":"MIT"},"sharp-cli":{"version":"2.1.0","url":"https://github.com/vseventer/sharp-cli","license":"MIT"},"tippy.js":{"version":"6.3.7","url":"https://atomiks.github.io/tippyjs/","license":"MIT"},"websql":{"version":"2.0.3","url":"git://github.com/nolanlawson/node-websql.git","license":"Apache-2.0"},"xlsx":{"version":"0.18.5","url":"https://sheetjs.com/","license":"Apache-2.0"}};
|