摘要:建議你盡可能地把范式化,不存在嵌套。把所有數(shù)據(jù)放到一個對象里,每個數(shù)據(jù)以為主鍵,不同數(shù)據(jù)相互引用時通過來查找。
一直直在寫一個前端項目,來分享一些Scroll封裝的實踐設(shè)計目標(biāo)
因為項目中需要大量的類似Scroll List,ListView頁面:
github上看了圈感覺沒有特別喜歡的,就自己來封裝了一下
層次結(jié)構(gòu)如下:
|-Scroll//主要處理諸如下拉刷新,上拉加載,加載狀態(tài),錯誤信息等 |-----List //主要是List主體 |--------ListEl //返回List里單個Component,使用方式
可以像這樣簡潔的使用這個封裝的Scroll List(or List View)
有種來到了開發(fā)Windows RT、WPF使用ListView template的即視感
開始封裝 說明:JSON格式扁平化(normalizr)
我在項目中使用normalizer來格式扁平化JSON數(shù)據(jù)
開發(fā)復(fù)雜的應(yīng)用時,不可避免會有一些數(shù)據(jù)相互引用。建議你盡可能地把 state 范式化,不存在嵌套。把所有數(shù)據(jù)放到一個對象里,每個數(shù)據(jù)以 ID 為主鍵,不同數(shù)據(jù)相互引用時通過 ID 來查找。把 應(yīng)用的 state 想像成數(shù)據(jù)庫 。這種方法在 normalizr 文檔里有詳細(xì)闡述。
normalizr:將嵌套的JSON格式扁平化,方便被Redux利用;
舉個例子
[{ id: 1, title: "Some Article", author: { id: 1, name: "Dan" } }, { id: 2, title: "Other Article", author: { id: 1, name: "Dan" } }]
處理后會變成
{ result: [1, 2], entities: { articles: { 1: { id: 1, title: "Some Article", author: 1 }, 2: { id: 2, title: "Other Article", author: 1 } }, users: { 1: { id: 1, name: "Dan" } } } }CommonScorll.js
import React, { PropTypes, Component } from "react"; class CommonScorll extends Component { constructor(props) { super(props); const {FirstLoading,ListLoading} =this.props; this.ListScroll=this.ListScroll.bind(this); this.FirstLoading=()=>FirstLoading(); this.ListLoading=()=>ListLoading(); } componentDidMount() { console.log("common scroll componentDidMount") //下拉刷新監(jiān)聽綁定 window.addEventListener("scroll", this.ListScroll); //初次Load this.FirstLoading; } componentWillUnmount(){ //移除監(jiān)聽 window.removeEventListener("scroll", this.ListScroll); } ListScroll(e) { var scrollTop = document.body.scrollTop; var offsetHeight = document.body.offsetHeight; var scrollHeight = document.body.scrollHeight; if (scrollTop >= scrollHeight - offsetHeight) { this.ListLoading; } } render(){ console.log("common scroll render") const { isFetch, isEnd, fetchFailed, failedMsg, EmptyElement }=this.props; let NoMore=(); if(isEnd){ NoMore=( ... ); } ...//根據(jù)你的需求處理 底部如:加載更多,加載失敗時重新加載等 return(CommonList.js{this.props.children}//因為List主體是被包裹在Scroll中的,所以加載children ...); } } export default CommonScorll;
import React, { PropTypes, Component } from "react"; import {ListEl} from "./ListEl" class CommonList extends Component { constructor(props) { super(props); } componentDidMount() { console.log("common list componentDidMount") } render(){ console.log("common list render") const { entities, result, type }=this.props; //數(shù)據(jù)經(jīng)過normalize格式化 let datas=[]; if(result.length!==0){ datas=[]; result.forEach(function(id) { datas.push(ListEl(id,entities,type))//ListEl是一個function }) } return({datas}); } } export default CommonList; ListEl.jsimport React, { PropTypes, Component } from "react"; import SmallCourseCate from "../Common/CourseCate/SmallCourseCate" export function ListEl(id,entites,type) { switch (type) { case "samllCourseCate": if(entites.coursecates[id]){ let coursecate=entites.coursecates[id]; return(總結(jié)&TODO) }else{ return ( ) } ... default: return (small coursecate el try get coursecate is null
) } }el type undefind
封裝后總體Scroll List比較優(yōu)雅和快捷
但是欠缺性能優(yōu)化,使用immutable、shouldComponentUpdate優(yōu)化性能
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/87769.html
摘要:在線注冊賬號,數(shù)據(jù)存儲于。年了,還不使用的異步控制體系。過度對數(shù)據(jù)模型進(jìn)行裝飾的結(jié)果便是高耦合,這跟我初衷是基于在線存儲數(shù)據(jù)有關(guān)。 為什么又是Todo,全世界的初學(xué)者都在做todo嗎?可能很多人要問這句話,其實這句話可以等同于: 為什么你做了個云音樂播放器? 為什么你做了個新聞閱讀APP? 為什么你做了個VUE/REACT版本的CNODE? 究其本質(zhì),這幾個應(yīng)用都是data-map...
摘要:如在中在中,聚合積累的結(jié)果是當(dāng)前的對象。被稱為副作用,在我們的應(yīng)用中,最常見的就是異步操作。至于為什么我們這么糾結(jié)于純函數(shù),如果你想了解更多可以閱讀,或者它的中文譯本函數(shù)式編程指南。 DvaJS: React and redux based, lightweight and elm-style framework. https://dvajs.com/ 實例項目源碼:https://g...
摘要:希望新版兼容和安卓兩端的情況下,無限制的刷新加載數(shù)據(jù)。圖片大小限制,本次由于部分列表圖片過大,在安卓上導(dǎo)致黑屏的問題出現(xiàn)。 一、背景 近期項目改版,對原有的h5頁面進(jìn)行了重新設(shè)計,數(shù)據(jù)呈現(xiàn)變成了瀑布流。希望新版兼容ios和安卓兩端的情況下,無限制的刷新加載數(shù)據(jù)。大致效果如下: showImg(https://segmentfault.com/img/bVblFDE?w=772&h=15...
摘要:利用中間件實現(xiàn)異步請求,實現(xiàn)兩個用戶角色實時通信。目前還未深入了解的一些概念。往后會寫更多的前后臺聯(lián)通的項目。刪除分組會連同組內(nèi)的所有圖片一起刪除。算是對自己上次用寫后臺的一個強化,項目文章在這里。后來一直沒動,前些日子才把后續(xù)的完善。 歡迎訪問我的個人網(wǎng)站:http://www.neroht.com/? 剛學(xué)vue和react時,利用業(yè)余時間寫的關(guān)于這兩個框架的訓(xùn)練,都相對簡單,有的...
摘要:調(diào)用通過注冊表調(diào)用到實例,透過的,調(diào)用到中的,最后通過,調(diào)用,根據(jù)參數(shù)相應(yīng)模塊執(zhí)行。京東的,多端解決方案是一套遵循語法規(guī)范的多端開發(fā)解決方案。 showImg(https://segmentfault.com/img/bVbuMkw?w=1304&h=808); 對于一項技術(shù),我們不能停留在五分鐘狀態(tài),特別喜歡一句話,用什么方式繪制UI界面一點不重要,重要的是底層的思維,解決問題和優(yōu)化...
閱讀 1115·2021-11-16 11:45
閱讀 3134·2021-10-13 09:40
閱讀 723·2019-08-26 13:45
閱讀 1222·2019-08-26 13:32
閱讀 2181·2019-08-26 13:23
閱讀 920·2019-08-26 12:16
閱讀 2832·2019-08-26 11:37
閱讀 1763·2019-08-26 10:32