Li Jie

Results 23 comments of Li Jie

I wrote an ActiveJob adapter, not perfectly, just works. The adapter below is compatible with Non-SidekiqStatus jobs. When the job class doesn't include SidekiqStatus::Worker, it uses the Sidekiq adapter (its...

我一直在 node@7 里使用,改 `import * from 'react-web'` 为 `import * from 'react-web/lib'` 即可,或者在webpack里配置 `alias: {"react-native": "react-web/lib"}`

再用 @fov42550564 的方法可以解决,刚测试过了。我的项目是自己写的 webpack 配置所以没遇到问题。

查到原因了,transform 没有带上单位(比如px),被不知道哪一层忽略掉了。我在 `extendProperties` 里面给它加上单位就能正常工作,但是这样也不合理。Animated.Value.setValue 如果调用了就能正常处理加上单位,应该在哪里解决呢? @yuanyan

调用 setNativeProps.web.js 里的 convertTransform 解决了。

打下面的补丁以后可以用: ```js import {StyleSheet} from 'react-web' import { Linking } from 'react-navigation/lib/PlatformHelpers' Linking.getInitialURL = () => { return new Promise(resolve => { resolve('') }) } StyleSheet.absoluteFill = StyleSheet.create({ position: 'absolute',...

index.ios.js: ```js import './patch.js' require('./src') // 用 require 保证在 import patch 之后运行 ``` patch.js ```js import {StyleSheet} from 'react-web' import { Linking } from 'react-navigation/lib/PlatformHelpers' Linking.getInitialURL = () => {...

@flyskywhy 看起来这个库放弃维护了,有动力接手继续吗?

咱们 fork 一个共同维护吧,以这边的情况看,不但基本修复合并不了,以后发展也没指望了。

@flyskywhy 我之前把 react-16 相关的提给你了,其它的提在这边 https://github.com/taobaofed/react-web/pull/259 #261。以后都提到你那边吧,我还有几个小 fix 的没提。😄