react native typescript mobx template
1.0.0
这是使用TypeScript和MOBX构建React-Native应用程序的重要示例。
步骤运行
yarn install或npm installreact-native ejectreact-native run-ios或react-native run-android定义模型
import Cause from "./Cause"
import User from "./User"
import CommonModel from "./CommonModel"
export declare type Deals = Deal [ ]
export declare type UDeal = Deal | undefined
export default interface Deal extends CommonModel {
key : string
dealType : string
title : string
price : number
makerPercentage : number
description : string
tags : string
url : string
media : string [ ]
cause ?: Cause | null
user ?: User | null
}定义商店
import { observable , action , runInAction , computed , IObservableValue } from 'mobx'
import { Deals } from '../models/Deal'
import { dealService } from '../services/deal/DealService'
export default class AppStore {
@ observable isLoading : boolean = true
@ observable isFailure : boolean = false
@ observable searchTerm : IObservableValue < string > = observable . box ( "" )
@ observable deals : Deals = [ ]
@ observable currentDealId : string | null = null
constructor ( ) {
this . searchTerm . observe ( ( ) => {
this . fetchDeals ( )
} , true )
}
async fetchDeals ( ) {
dealService . searchData ( this . searchTerm . get ( ) ) . then ( data => {
runInAction ( ( ) => {
this . isLoading = false
this . deals = data
} )
} )
}
@ action setSearchTerm ( searchStr : string ) {
this . searchTerm . set ( searchStr )
}
@ action
setCurrentDeal ( dealId : string ) {
this . currentDealId = dealId
}
@ action
unsetCurrentDeal ( ) {
this . currentDealId = null
}
@ computed get currentDeal ( ) {
return this . deals . find ( ( deal ) => deal . key === this . currentDealId )
}
}调用组件
export interface Props {
appStore : AppStore
}
@ inject ( "appStore" ) @ observer
class App extends React . Component < Props > {
searchDeals = ( searchTerm : string ) => {
this . props . appStore . setSearchTerm ( searchTerm )
}
setCurrentDeal = ( dealId : string ) => {
this . props . appStore . setCurrentDeal ( dealId )
}
unsetCurrentDeal = ( ) => {
this . props . appStore . unsetCurrentDeal ( )
}
render ( ) {
const appStore = this . props . appStore
}
}如果您看到任何问题,请随时在此处创建一个问题,或者可以通过电子邮件[email protected]或LinkedIn与我联系。
谢谢
参考