react-native-web 轉換

image.png

一侮攀、添加項目依賴
yarn add react-native-web
yarn add babel-plugin-react-native-web css-loader style-loader ts-loader url-loader clean-webpack-plugin html-webpack-plugin file-loader webpack webpack-cli webpack-dev-server --dev

二伏穆、package.json 添加啟動命令
"web": "webpack-dev-server --mode=development --open"

三谦炬、添加webpack.config.js文件

const path = require('path');
const HTMLWebpackPlugin = require('html-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const {DefinePlugin} = require('webpack');
const appDirectory = path.resolve(__dirname, '../');
const appDirectoryWeb = path.resolve(__dirname, './');
const defaultSetting = require('./setting')
const { cdnUrl, title, outputDir, enableSentry } = defaultSetting
// const { NODE_ENV, port, npm_config_port, VUE_APP_BASE_API, ANALYZE } = process.env
const IS_DEV = (process.argv || []).includes('--mode=development')
console.log(`process--`, IS_DEV)

const babelLoaderConfig = {
  test: /\.js$|.ts$|.tsx?$/,
  include: [
    path.resolve(appDirectory),
    path.resolve(appDirectoryWeb, 'index.web.js'),
    path.resolve(appDirectory, 'app.tsx'),
    path.resolve(appDirectory, 'screens'),
    path.resolve(appDirectory, 'node_modules/react-native-uncompiled'),
  ],
  use: {
    loader: 'babel-loader',
    options: {
      cacheDirectory: false,
      presets: ['module:metro-react-native-babel-preset'],
      plugins: ['react-native-web'],
    },
  },
};


const imageLoaderConfig = {
  test: /\.(gif|jpe?g|png|svg)$/,
  use: {
    loader: 'url-loader',
    options: {
      name: '[name].[hash:8].[ext]',
      esModule: false,
    },
  },
};

const ttcLoaderConfig = {
    // test: /\.(woff2?|eot|ttf|otf|ttc)(\?.*)?$/,
    test: /\.ttf$/,
    type: 'asset/inline',
    // use: {
    //   loader: 'url-loader',
    //   options: {
    //     name: '[name].[hash:8].[ext]',
    //     esModule: false,
    //   },
    // },
  };

const cssLoaderConfig = {
  test: /\.css$/,
  use: ['style-loader', 'css-loader'],
};

const fileLoaderConfig = {
  test: /(postMock|video).html$/,
  use: {
    loader: 'file-loader',
    options: {
      name: '[name].[ext]',
    },
  },
};

console.log(`wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww---------22`)
module.exports = (_, argv) => ({
  mode: 'production',
  entry: path.join(appDirectoryWeb, 'index.web.js'),
  output: {
    path: path.join(appDirectory, IS_DEV ? 'build' : outputDir),
    filename: '[name].[contenthash:8].js',
    publicPath: IS_DEV ? '/' : cdnUrl,
  },
  devtool: argv.mode === 'development' ? 'source-map' : undefined,
  module: {
    rules: [
      babelLoaderConfig,
      imageLoaderConfig,
      ttcLoaderConfig,
      cssLoaderConfig,
      fileLoaderConfig,
    ],
  },
  resolve: {
    alias: {
      'react-native$': 'react-native-web',
      'react-native-svg': 'react-native-svg-web'
    },
    extensions: ['.web.ts', '.web.tsx', '.web.js', '.ts', '.tsx', '.js'],
  },
  devServer: {
    static: {
      directory: path.join(appDirectory, 'public'),
    },
    historyApiFallback: true,
    compress: true,
    port: 3001,
  },
  plugins: [
    new HTMLWebpackPlugin({
      template: path.join(appDirectoryWeb, './index.html'),
    }),
    new CleanWebpackPlugin(),
    new DefinePlugin({__DEV__: argv.mode === 'development'}),
  ],
  optimization: {
    splitChunks: {
      chunks: 'all',
      cacheGroups: {
        vendor: {
          test: /[\\/]node_modules[\\/]/,
          name: 'vendors',
          chunks: 'initial',
          priority: 20,
        },
        react: {
          test: /[\\/]node_modules[\\/]?react(.*)/,
          name: 'react',
          priority: 30,
        },
        commons: {
          name: 'chunks-commons',
          test: path.join(__dirname, 'componnets'),
          minChunks: 3,
          priority: 5,
          reuseExistingChunk: true,
        },
      },
    },
  },
});

四妓肢、添加index.web.js項目入口文件

···
import {AppRegistry} from 'react-native';
import App from '../App';
import {name as appMame} from '../app.json';
import './index.css';
AppRegistry.registerComponent(appMame, () => App);

AppRegistry.runApplication(appMame, {
initialProps: {},
rootTag: document.getElementById('root'),
});
···

五黔州、添加index.css文件

/* These styles make the body full-height */
html, body { height: 100%; }
/* These styles disable body scrolling if you are using <ScrollView> */
body { overflow: hidden; } 
/* These styles make the root element full-height */
#root { display:flex; height:100%; }

六、新增public文件夾

添加favicon.icon和index.html文件
<!doctype html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover" />
    <title>react-native for web</title>
  </head>
  <body>
    <div id="root"></div>
  </body>
</html>

七 添加 setting.js文件

module.exports = {
  title: 'bnd-saas-approval-h5', // 應用的title
  showVconsole: false, // 是否顯示console (僅開發(fā)環(huán)境生效)
  cdnUrl: '/xbx/app-h5/', // cdn地址
  outputDir: 'saas-xbx-web-app-rn', // 打包輸出文件夾名稱
  pageTrans: true, // 頁面切換是否需要轉場動畫
  topProgress: true,
  appId: '', // 微信appid
  enableSentry: false,
  enableMock: false,
  SentryDSN: 'https://f7c88eb50e5c4b6a9d69010f4bba512b@o350779.ingest.sentry.io/5225764'
}


八. 兼容多端的代碼

  1. 獲取頭部高度問題
    const StatusBarManager = Platform.select({
    web: () => {
    return {
    HEIGHT: 44,
    };
    },
    default: () => NativeModules.StatusBarManager,
    })();

  2. input 樣式問題
    input focus的時候 帶有樣式 獲取焦點的時候 有黃色的框
    以及scroll樣式滾動問題

import React from 'react';
import {Platform} from 'react-native';

const WebStyle = {
  input: {
    outline: 'none',
  },
  nowrap: {
    textWrap: 'noWrap',
  },
  scrollViewAuto: {
    overflow: 'auto',
  },
};
const defaultWebStyle = {
  input: {},
  nowrap: {},
  scrollViewAuto: {},
};
const WebPropsStyles = Platform.select({
  web: () => WebStyle,
  default: () => defaultWebStyle,
})();

export default WebPropsStyles;


  1. 原生方法和h5方法兼容問題
/**
 * @description  關閉當前rn窗口
 */
export const ExitApp = debounce(
  (origin?: string) => {
    Platform.select({
      web: () => {
        if (origin === 'APP') {
          onBackHome()
        } else {
          window.history.go(-1)
        }
      },
      default: () => {
        NativeModules.BndCommonModule.goBack()
      }
    })()
  },
  300,
  {
    leading: true,
    trailing: false
  }
)
  1. 原生拍照和h5拍照兼容問題
const getInputFile = ({ accept, multiple, captrure }: { accept?: string; multiple?: string; captrure?: string }, handle: Function) => {
  const inputuploadidDom = document.querySelector('#inputuploadid')
  if (inputuploadidDom) {
    // inputuploadidDom.removeEventListerAll()
    inputuploadidDom.value = null
    inputuploadidDom.remove()
  }
  const InputDom = document.createElement('input')
  InputDom.setAttribute('type', 'file')
  console.log(`accept`, accept)
  if (accept) {
    const { isWebAndroid } = getWebPlatform()
    const origin = handlerQuery('origin', window.location.href)
    console.log(`origin`, origin)
    console.log(`window.location.href`, window.location.href, window && window.location && window.location.href)
    console.log(`accept === '*`, accept === '*')
    console.log(`isWebAndroid`, isWebAndroid)
    console.log(`origin === 'APP'`, origin === 'APP')
    if (accept === '*' && window && window.location && window.location.href && isWebAndroid && origin === 'APP') {
      accept = 'file/*'
    }
    InputDom.setAttribute('accept', accept)
  }
  InputDom.setAttribute('id', 'inputuploadid')
  if (!InputDom.style) {
    InputDom.style = {}
  }
  InputDom.style.width = 0
  InputDom.style.height = 0
  InputDom.style.visibility = 'hidden'
  InputDom.style.opacity = 0
  InputDom.width = 0
  InputDom.height = 0
  InputDom.value = null
  if (multiple === 'multiple') {
    InputDom.setAttribute('multiple', multiple)
  }
  if (captrure) {
    InputDom.setAttribute('captrure', captrure)
  }
  InputDom.addEventListener('change', handle)
  console.log(`InputDom`, InputDom)
  console.log(`{ accept, multiple, captrure }`, { accept, multiple, captrure })

  return InputDom
}
const WebImagePicker = ({ max }) => {
  return new Promise(resolve => {
    const InputDom = getInputFile({ accept: 'image/*', multiple: max > 1 ? 'multiple' : '' }, (e: any) => {
      console.log(`e--`, e)
      const files = Array.from(e.target.files)
        .slice(0, max)
        .map(file => {
          file.type = uploadUtils.getFileSuffixType(file.name)
          file.fileName = file.name
          file.fileSize = file.size
          file.path = URL.createObjectURL(file)
          file.filePath = file.path
          file.fileType = file.type
          file.uri = file.path

          return file
        })
      console.log('file----', files)

      resolve(files)
    })
    document.body.append(InputDom)
    InputDom.click()

    // InputDom.remove()
  })
}


const webFilePicker = (data, accept = '*', multiple = 'multiple') => {
  return new Promise(resolve => {
    console.log(`data-`, data)
    const InputDom = getInputFile({ accept, multiple }, (e: any) => {
      console.log(`e--`, e)
      const files = Array.from(e.target.files).map(file => {
        file.type = uploadUtils.getFileSuffixType(file.name)
        file.fileName = file.name
        file.fileSize = file.size
        file.path = URL.createObjectURL(file)
        file.filePath = file.path
        file.fileType = file.type
        file.uri = file.path

        return file
      })
      console.log('file----', files)

      resolve(files)
    })
    document.body.append(InputDom)
    InputDom.click()
  })
}

export const ImagePicker = ({ max } = { max: 9 }) => {
  return Platform.select({
    web: () => {
      return WebImagePicker({ max })
    },
    default: () => {
      returnNativeModules.BndCommonModule.bndSaasSelectPhoto({ max })
    }
  })()
}

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末福澡,一起剝皮案震驚了整個濱河市骇钦,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌竞漾,老刑警劉巖眯搭,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異业岁,居然都是意外死亡鳞仙,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門笔时,熙熙樓的掌柜王于貴愁眉苦臉地迎上來棍好,“玉大人,你說我怎么就攤上這事允耿〗梵希” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵较锡,是天一觀的道長业稼。 經(jīng)常有香客問我,道長蚂蕴,這世上最難降的妖魔是什么低散? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮骡楼,結果婚禮上熔号,老公的妹妹穿的比我還像新娘。我一直安慰自己鸟整,他們只是感情好引镊,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著篮条,像睡著了一般弟头。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上兑燥,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天亮瓷,我揣著相機與錄音,去河邊找鬼降瞳。 笑死嘱支,一個胖子當著我的面吹牛蚓胸,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播除师,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼沛膳,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了汛聚?” 一聲冷哼從身側響起锹安,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎倚舀,沒想到半個月后叹哭,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡痕貌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年风罩,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片舵稠。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡超升,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出哺徊,到底是詐尸還是另有隱情室琢,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布落追,位于F島的核電站盈滴,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏淋硝。R本人自食惡果不足惜雹熬,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一宽菜、第九天 我趴在偏房一處隱蔽的房頂上張望谣膳。 院中可真熱鬧,春花似錦铅乡、人聲如沸继谚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽花履。三九已至,卻和暖如春挚赊,著一層夾襖步出監(jiān)牢的瞬間诡壁,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工荠割, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留妹卿,地道東北人旺矾。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像夺克,于是被迫代替她去往敵國和親箕宙。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容