Ответ 1
Я нашел, чтобы сделать две работы и опубликую здесь для всех, кто ищет то же самое. Там могут быть и другие способы сделать это, но это то, что сработало для меня.
Итак, в основном мы создадим приложение Кордовы, используя (скажем): corova create testapp com.test.testapp testapp. Это даст мне структуру папок как таковую:
testapp
--hooks
--platforms
--plugins
--www
--config.xml
Теперь в папке testapp мы запускаем: create-react-app teastappReact, который добавит мое приложение-ответ в папку testapp. Ваше приложение-ответ будет иметь основной index.js в каталоге /src.
Я index.js не забудьте обернуть основную логику внутри функции, а затем вызвать функцию вместе с объектом Cordova следующим образом:
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css';
const startApp = () => {
ReactDOM.render(
<App />,
document.getElementById('root')
);
}
if(!window.cordova) {
startApp()
} else {
document.addEventListener('deviceready', startApp, false)
}
Теперь это приложение должно иметь экземпляр Cordova вместе с объектами Device, такими как navigator.camera внутри вашего приложения.
Также в ваших реакционных приложениях index.html, которые можно найти в общей папке, скопируйте html из index.html, который вы найдете в папке Codova www. Теперь мы можем удалить все файлы из папки www. Мы позже вручную или через скрипт скопируем все файлы из папки создания приложений для приложений в папку Cordova www.
Таким образом, мой index.html будет выглядеть примерно так, обратите внимание на файл cordova.js, который включен в качестве скрипта.
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<!--
Customize this policy to fit your own app needs. For more guidance, see:
https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
Some notes:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
-->
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src * data: content:;">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<!-- Latest compiled and minified CSS -->
<title>React App</title>
</head>
<body>
<div id="root"></div>
<script type="text/javascript" src="cordova.js"></script>
</body>
</html>
Наконец, в вашем пакете action.json ваших приложений добавьте следующую строку:.... "homepage": "../www".... Это позволит убедиться, что ваш файл окончательной сборки указывает на правильный путь. мы также можем добавить следующие строки в ваш скрипт build.json.
"scripts": {
"start": "react-scripts start",
***"build": "react-scripts build && robocopy .\\build ..\\www /MIR",***
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build&&gh-pages -d build"
}
Это может быть robocopy или cp-r на основе ОС (Windows/Linux и т.д.).
У нас должно быть готовое приложение для Кордовы, которое будет построено с помощью corova build android/ios.