配列である(Reactで作成している小さなゲーム用に)購入するもののリストを取得しました。「Market」という状態です。そして、私はすべての値をランダム化し、それらを別の状態にストックしたい別のものを持っています。
これは私の市場リストです:
let marketList = [
{"name": 'product name', "qty": 0, "minPrice": 10, "maxPrice": 100, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 30, "maxPrice": 200, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 100, "maxPrice": 1500, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 200, "maxPrice": 4000, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 50, "maxPrice": 6000, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 1, "maxPrice": 400, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 60, "maxPrice": 3450, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 2, "maxPrice": 120, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 8, "maxPrice": 600, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 120, "maxPrice": 3200, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 35, "maxPrice": 100, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 300, "maxPrice": 12000, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false},
{"name": 'product name', "qty": 0, "minPrice": 1, "maxPrice": 80, "currentPrice": 0, "historyPrice": [], "historyQty": [], "available": false}
];
その中のすべての値をランダム化し、ランダム化されたリストを「明日」と呼ばれる状態に保存して、次の価格に関するヒントを提供できるようにしたいと考えています。これは、リストをランダム化するためのヘルパーです。
export function randomiseMarketList(list, day = 0){
for(let i = 0; i < list.length; i++) {
let item = list[i];
let historyQtylength = item.historyQty.length;
let random = randomAlgo(day);
item.currentPrice = Math.floor(Math.random() * (item.maxPrice - item.minPrice)) + item.minPrice;
item.qty = random;
item.available = !(day == 0 || item.qty < 1);
item.historyPrice.push(item.currentPrice);
item.historyQty.push(item.qty);
}
return list;
}
function randomAlgo(day) {
let quart = Math.floor(Math.random() * 4);
let multiple = Math.floor(Math.random() * 10);
let maxQuart = Math.floor(Math.random() * (quart * multiple * day));
let minQuart = Math.floor(Math.random() * (quart * multiple));
return Math.floor(Math.random() * (maxQuart - minQuart)) + minQuart;
}
そして、これは私のTomorrowレデューサーです:
import { ACTIONS } from '../utils/consts';
import { randomiseMarketList } from '../utils/helpers';
var initialState = {
currentPlaceList: []
};
export function tomorrow(state = initialState, action = '') {
switch (action.type) {
case ACTIONS.BUILD_TOMORROW_LIST:
console.log(action);
let listToRandom = action.list.slice();
let randomactionList = randomiseMarketList([...listToRandom], action.day);
console.log(randomactionList);
let newList = Object.assign({}, state, { currentPlaceList: randomactionList });
return newList;
default:
return state;
}
}
ACTIONS.BUILD_TOMORROW_LIST でわかるように、最初に値を確認するアクションをコンソール ログに記録し、その後、常に同じ値を持つランダム化されたリストをログに記録します。変更した場合に同じ値になる理由がここではわかりません。
配列がまったく同じで、状態を直接変更したためだと思いました(理由がわかりません)。値とスプレッド演算子によって作成された新しい配列としてリストを渡しましたが、どちらも機能しません。この配列のコピーを作成しようとしましたが、うまくいきません。
明日のリストは、「ここにとどまる」アクションをクリックしたときに、現在のマーケットのリストを置き換えるために使用されます。
handleStayHere(e) {
const { dispatch, status, tomorrow, market } = this.props;
dispatch( MarketActions.changeWholeList(tomorrow.currentPlaceList) );
dispatch( StatusActions.changeDay( status.day + 1 ) );
dispatch( TomorrowActions.buildTomorrowList([...market], status.day + 1) );
}
MarketActions.changeWholeList アクションはうまく機能しますが、明日のリストを正しく保存できません。
ご協力ありがとうございました!