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 (仅开发环境生效)
  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 })
    }
  })()
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350

推荐阅读更多精彩内容