이전글 ["\[React\] Mobx-state-tree 학습하기 #2 : Mobx-state-tree 모델에서 Actions을 사용하기"](/zzan/@anpigon/react-native-manage-application-state-with-mobx-state-tree-2)에서 이어지는 내용입니다. 참고로 이 포스팅은 제가 학습한 내용을 노트에 정리하듯이 기록하여 올리는 글이기 때문에 보팅 안해주셔서 됩니다. <br> ***  * 출처: https://egghead.io/courses/manage-application-state-with-mobx-state-tree *** <br> # Test mobx-state-tree Models by Recording Snapshots or Patches > 강의 링크: https://egghead.io/lessons/react-test-mobx-state-tree-models-by-recording-snapshots-or-patches 3번째 레슨입니다. 모델을 테스트하는 것은 매우 간단합니다. MST는 state가 어떻게 변하는지 정확하게 추적 할 수 있는 도구를 제공합니다. snapshots, 액션 호출 또는 patches를 추적하여 액션이 올바르게 작동하는 지를 확인 할 수 있습니다. 우리는 다음을 배우게 됩니다. * `getSnapshot`를 사용하여 state의 immutable한 snapshots 얻기 * `onSnapshot`을 사용하여 snapshots 기록하기 * `onPatch`를 사용하여 시간의 흐름에 따른 변화을 저장하고 테스트하기 * Jest의 snapshots 테스트 기능을 사용하여 snapshots과 patches 검증하기 * That MST can infer the type of a snapshot for you <br> *** <br> # `getSnapshot` 함수를 사용하여 테스트 하기 Model의 전체 속성을 테스트하기 위해서 `getSnapshot` 함수를 사용합니다. `getSnapshot`는 모델의 전체 트리 상태를 immutable하고 순수한 JSON 데이터로 만들어줍니다. 테스트 코드는 다음과 같이 작성합니다. [여기](https://mobx-state-tree.gitbook.io/docs/concepts/snapshots)에 추가 설명이 있습니다. `src/models/WhishList.test.js` ``` import { getSnapshot } from 'mobx-state-tree'; it("can add new items", () => { const list = WishList.create(); list.add( WishListItem.create({ name: "Chesterton", price: 10 }) ); expect(getSnapshot(list)).toEqual({ items: [ { name: "Book of G.K. Chesterton", price: 10, image: "" } ] }); }); ``` 그리고 `toMatchSnapshot` 함수를 사용하면 스냅샷을 기록합니다. ``` it("can add new items", () => { const list = WishList.create(); // ... expect(getSnapshot(list)).toMatchSnapshot(); }); ``` <br>위 테스트를 실행하면 다음과 같이 `__snapshots__` 폴더에 스냅샷 파일이 생성됩니다.  <br> <br> # `onSnapshot` 함수를 사용하여 테스트하기 `onSnapshot` 함수를 사용하여 모델이 변경될 때마다 스냅샷을 states에 저장합니다. 그리고 `toMatchSnapshot` 함수를 사용하여 스냅샷이 어떻게 변화 했는지 기록합니다. ``` import { getSnapshot, onSnapshot } from "mobx-state-tree"; it("can add new items", () => { const list = WishList.create(); const states = []; onSnapshot(list, snapshot => { states.push(snapshot); }); //... expect(states).toMatchSnapshot(); } ``` <br>테스트를 수행하고 나서 스냅샷 기록을 보면 스냅샵이 어떻게 바뀌었는지를 살펴볼 수 있습니다.  <br> <br> # `onPatch` 함수를 사용하여 테스트하기 ``` import { getSnapshot, onSnapshot, onPatch } from "mobx-state-tree"; it("can add new items - 2", () => { const list = WishList.create(); const patches = []; onPatch(list, patch => { patches.push(patch); }) list.add( WishListItem.create({ name: "Chesterton", price: 10 }) ); list.items[0].changeName("Book of G.K. Chesterton"); expect(patches).toMatchSnapshot(); }); ``` <br>`onPatch` 함수를 사용한 테스트를 수행하고 나서 기록을 보면 모델의 변화에 대해서 살펴볼 수 있습니다. 어떤 작업을 수행했는지, 몇번째 항목의 값이 어떻게 변경되었는지를 확인 할 수 있습니다.  <br>오늘의 학습 끝. <br> <br> `댓글`, `팔로우`, `좋아요` 해 주시는 모든 분께 감사합니다. 항상 행복한 하루 보내시길 바랍니다. *** <center><img src='https://steemitimages.com/400x0/https://cdn.steemitimages.com/DQmQmWhMN6zNrLmKJRKhvSScEgWZmpb8zCeE2Gray1krbv6/BC054B6E-6F73-46D0-88E4-C88EB8167037.jpeg'><h5>vote, reblog, follow <code><a href='/@anpigon'>@anpigon</a></code></h5></center> *** <center><sup>Originally posted on [안피곤님의 블로그](http://anpigon.dblog.org/react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree). Steem blog powered by [ENGRAVE](https://engrave.website).</sup></center>
author | anpigon |
---|---|
permlink | react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree |
category | zzan |
json_metadata | {"format":"markdown","app":"busy/2.5.6","tags":["zzan","kr","kr-dev","dev","busy","jjm"],"image":["https://files.steempeak.com/file/steempeak/anpigon/sYISPibs-E1848CE185A6E18486E185A9E186A820E1848BE185A5E186B9E18482E185B3E186AB20E18483E185B5E1848CE185A1E1848BE185B5E186AB.png","https://files.steempeak.com/file/steempeak/anpigon/sYISPibs-E1848CE185A6E18486E185A9E186A820E1848BE185A5E186B9E18482E185B3E186AB20E18483E185B5E1848CE185A1E1848BE185B5E186AB.png","https://files.steempeak.com/file/steempeak/anpigon/xLhaLw7g-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202019-08-182000.59.10.png","https://files.steempeak.com/file/steempeak/anpigon/YLMLCCqQ-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202019-08-182001.10.34.png","https://files.steempeak.com/file/steempeak/anpigon/GFWYYwru-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202019-08-182001.17.54.png"],"links":["https://egghead.io/courses/manage-application-state-with-mobx-state-tree","https://egghead.io/lessons/react-test-mobx-state-tree-models-by-recording-snapshots-or-patches","https://mobx-state-tree.gitbook.io/docs/concepts/snapshots)%EC%97%90","https://steemitimages.com/400x0/https://cdn.steemitimages.com/DQmQmWhMN6zNrLmKJRKhvSScEgWZmpb8zCeE2Gray1krbv6/BC054B6E-6F73-46D0-88E4-C88EB8167037.jpeg'%3E%3Ch5%3Evote,"],"engrave":{"domain":"anpigon.dblog.org","permlink":"react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree","url":"https://anpigon.dblog.org/react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree","featured_image":"https://files.steempeak.com/file/steempeak/anpigon/sYISPibs-E1848CE185A6E18486E185A9E186A820E1848BE185A5E186B9E18482E185B3E186AB20E18483E185B5E1848CE185A1E1848BE185B5E186AB.png","categories":["5d8b1dc94302ae00124415b9"]},"community":"busy","good":true} |
created | 2019-08-19 04:55:36 |
last_update | 2019-09-30 14:38:06 |
depth | 0 |
children | 10 |
last_payout | 2019-08-26 04:55:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.176 HBD |
curator_payout_value | 0.337 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,095 |
author_reputation | 17,258,940,000,931 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,689,070 |
net_rshares | 4,594,242,847,547 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cjsdns | 0 | 543,967,035,863 | 100% | ||
guest123 | 0 | 730,441,602 | 100% | ||
steemitboard | 0 | 12,705,848,997 | 1% | ||
sisilafamille | 0 | 482,460,689 | 100% | ||
happyberrysboy | 0 | 18,323,890,989 | 100% | ||
hellosteem | 0 | 661,477,648 | 100% | ||
jjy | 0 | 16,779,799,579 | 50% | ||
ai-channel | 0 | 705,362,786,909 | 19% | ||
stylegold | 0 | 550,840,014 | 100% | ||
virus707 | 0 | 236,915,931,845 | 1% | ||
realmankwon | 0 | 5,833,789,015 | 25% | ||
beoped | 0 | 41,494,245,860 | 21% | ||
dodoim | 0 | 2,564,766,240 | 100% | ||
fur2002ks | 0 | 180,178,697,610 | 13% | ||
momijiscrypto | 0 | 6,033,723,454 | 100% | ||
ratticus | 0 | 4,401,644,637 | 10% | ||
ukk | 0 | 3,517,263,828 | 20% | ||
forhappywomen | 0 | 42,863,817,830 | 100% | ||
accelerator | 0 | 17,881,896,618 | 0.54% | ||
krfeed | 0 | 228,935,735 | 100% | ||
pediatrics | 0 | 21,220,985,033 | 25% | ||
goodhello | 0 | 27,726,151,949 | 100% | ||
dj-on-steem | 0 | 5,951,011,777 | 31% | ||
eversloth | 0 | 317,244,564,088 | 100% | ||
fun2learn | 0 | 1,032,301,248 | 2% | ||
philhyuntd | 0 | 2,393,876,118 | 50% | ||
alimehdi244 | 0 | 462,373,746 | 100% | ||
sargoon | 0 | 126,556,803 | 1.62% | ||
rainingfall | 0 | 881,137,486 | 10% | ||
songbj | 0 | 1,555,731,508 | 100% | ||
rubberducky1004 | 0 | 269,141,410 | 100% | ||
limito | 0 | 1,259,712,159 | 100% | ||
leems | 0 | 3,364,547,584 | 100% | ||
tanky | 0 | 27,071,836,935 | 75% | ||
andrewma | 0 | 0 | 0.2% | ||
steem.apps | 0 | 3,821,009,688 | 25% | ||
kiwifi | 0 | 55,609,422,670 | 25% | ||
blockchainstudio | 0 | 170,406,201,774 | 100% | ||
ziq | 0 | 792,250,350 | 100% | ||
anpigon | 0 | 6,700,025,037 | 100% | ||
newbijohn | 0 | 20,155,937,197 | 50% | ||
nailyourhome | 0 | 387,909,389 | 2.8% | ||
parisfoodhunter | 0 | 82,853,497,856 | 100% | ||
rokairforce | 0 | 1,149,936,121 | 100% | ||
ulockblock | 0 | 149,887,016,635 | 100% | ||
cn-news | 0 | 69,729,828 | 20% | ||
china-unicom | 0 | 69,583,092 | 20% | ||
china.mobile | 0 | 1,121,671,637 | 20% | ||
erke | 0 | 69,559,056 | 20% | ||
cnpc | 0 | 69,559,762 | 20% | ||
cn-times | 0 | 69,389,056 | 20% | ||
cn-reporter | 0 | 69,720,408 | 20% | ||
mcenoramle | 0 | 2,311,178,833 | 100% | ||
elraberscer | 0 | 1,055,705,013 | 100% | ||
moby.dick | 0 | 6,637,342,589 | 100% | ||
laissez-faire | 0 | 77,049,562 | 100% | ||
reportup | 0 | 48,905,285,606 | 27% | ||
delegate4upvot | 0 | 99,100,772 | 1.8% | ||
imrahelk | 0 | 22,411,587,879 | 100% | ||
mco | 0 | 775,955,351 | 9.3% | ||
steem-ua | 0 | 158,564,413,678 | 3.24% | ||
honeybeerbear | 0 | 13,270,316,069 | 100% | ||
cazbu | 0 | 69,203,525 | 20% | ||
donasteem | 0 | 1,098,524,547 | 12.8% | ||
zyj | 0 | 69,203,525 | 20% | ||
fty | 0 | 69,186,904 | 20% | ||
gouji | 0 | 235,393,934 | 100% | ||
talken | 0 | 782,804,228 | 100% | ||
steemory | 0 | 3,101,902,432 | 100% | ||
krwhales | 0 | 533,521,818 | 100% | ||
pigoncchio | 0 | 578,382,555 | 100% | ||
maeil | 0 | 0 | 100% | ||
j-car | 0 | 109,084,789,966 | 7% | ||
phenakite | 0 | 662,625,123 | 100% | ||
son1001 | 0 | 694,482,163 | 100% | ||
minigame | 0 | 863,414,253,480 | 6% | ||
stpeople | 0 | 384,361,410,144 | 7.09% | ||
roadofrich | 0 | 184,481,680,897 | 1.12% | ||
wangpigon | 0 | 1,245,710,004 | 100% | ||
map10k | 0 | 3,815,076,487 | 1.1% | ||
sct.jcob | 0 | 1,545,672,469 | 100% | ||
lovelyyeon.cur | 0 | 842,055,535 | 100% | ||
nympheas | 0 | 415,482,822 | 100% | ||
zzan.biz | 0 | 1,047,440,594 | 100% | ||
zzan.adv | 0 | 407,986,416 | 25% | ||
zzan.co3 | 0 | 619,463,968 | 100% | ||
zzan.co6 | 0 | 343,038,849 | 100% | ||
zzan.co7 | 0 | 342,246,362 | 100% | ||
zzan.co10 | 0 | 153,736,629 | 50% | ||
herobear | 0 | 273,432,730 | 100% | ||
kudock | 0 | 317,005,795 | 100% | ||
zzan.co13 | 0 | 145,801,363 | 51% | ||
zzan.co20 | 0 | 297,874,260 | 100% | ||
wonsama.zzan | 0 | 1,684,714,120 | 100% | ||
astraea09 | 0 | 381,316,915 | 100% | ||
cyberrn.zzang | 0 | 2,261,204,665 | 100% | ||
zzangu | 0 | 4,606,251,733 | 100% | ||
realmankwon.scot | 0 | 1,017,498,767 | 100% | ||
hodolbak-zzan | 0 | 2,462,311,472 | 100% | ||
cn-sct | 0 | 1,069,475,910 | 2% | ||
gghite.zzan | 0 | 1,641,576,689 | 100% | ||
windmolen | 0 | 1,338,409,051 | 100% | ||
onealfa.zzan | 0 | 373,010,971 | 63.02% | ||
hykwf678233 | 0 | 266,749,650 | 100% | ||
done.mod | 0 | 352,387,838 | 100% | ||
mapxv | 0 | 16,024,012,823 | 1.82% | ||
zzan.blue | 0 | 264,959,705 | 100% |
저도 패쑤~~~~~^^
author | cyberrn.zzang |
---|---|
permlink | pwhnr2 |
category | zzan |
json_metadata | {"tags":["zzan"],"app":"steemzzang/0.1"} |
created | 2019-08-19 14:47:27 |
last_update | 2019-08-19 14:47:27 |
depth | 1 |
children | 1 |
last_payout | 2019-08-26 14:47:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 18,209,597,234,782 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,706,378 |
net_rshares | 0 |
패쑤인척 하면서 슈윳~~~~^^ 감사합니다. ㅎㅎ
author | anpigon |
---|---|
permlink | re-cyberrnzzang-pwijzk |
category | zzan |
json_metadata | {"tags":["zzan"],"app":"steempeak/1.14.17"} |
created | 2019-08-20 02:23:45 |
last_update | 2019-08-20 02:23:45 |
depth | 2 |
children | 0 |
last_payout | 2019-08-27 02:23:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 17,258,940,000,931 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,725,699 |
net_rshares | 0 |
패쓰~~~~~~~~~~~~~~~~~~~~~ 즐거운 한주 되세요^^ 화이팅!
author | fur2002ks |
---|---|
permlink | pwgyn5 |
category | zzan |
json_metadata | {"tags":["zzan"],"app":"steemit/0.1"} |
created | 2019-08-19 05:45:06 |
last_update | 2019-08-19 05:45:06 |
depth | 1 |
children | 1 |
last_payout | 2019-08-26 05:45:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 215,309,454,101,823 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,690,102 |
net_rshares | 0 |
스루 패쓰~~~~~~~~~~~~~~~~~~~~~ 감사합니다. 즐거운 한주 되세요~ ㅎㅎ
author | anpigon |
---|---|
permlink | re-fur2002ks-pwgzjr |
category | zzan |
json_metadata | {"tags":["zzan"],"app":"steempeak/1.14.15"} |
created | 2019-08-19 06:04:39 |
last_update | 2019-08-19 06:04:39 |
depth | 2 |
children | 0 |
last_payout | 2019-08-26 06:04:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 17,258,940,000,931 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,690,529 |
net_rshares | 0 |
#### Hi @anpigon! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 3.420 which ranks you at **#7424** across all Steem accounts. Your rank has not changed in the last three days. In our last Algorithmic Curation Round, consisting of 156 contributions, your post is ranked at **#91**. ##### Evaluation of your UA score: * You're on the right track, try to gather more followers. * The readers like your work! * Good user engagement! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree-20190820t010524z |
category | zzan |
json_metadata | "{"app": "beem/0.20.23"}" |
created | 2019-08-20 01:05:27 |
last_update | 2019-08-20 01:05:27 |
depth | 1 |
children | 0 |
last_payout | 2019-08-27 01:05:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 610 |
author_reputation | 23,214,230,978,060 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,724,006 |
net_rshares | 0 |
 [kr-newbie](/@kr-newbie)님이 anpigon님을 멘션하셨습니당. 아래 링크를 누르시면 연결되용~ ^^ <br />[kr-newbie](/@kr-newbie)님의 [[8/19 kr-newbie 큐레이팅 프로젝트]](/zzan/@kr-newbie/8-19-kr-newbie) <br /> <blockquote>...b.io/#/wallet/kr-newbie happigon에서 자세한 임대내역이 확인 가능합니다. 만들어주신 anpigon께 감사드립니다! <ul> <li>anpigon님의 HAAPIGON 유저가이드를 참고해주시기 바랍니다!</...</blockquote>
author | steem.apps |
---|---|
permlink | re---------react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree-20190819t113730535z |
category | zzan |
json_metadata | {"app":"steem.apps/0.1","format":"markdown"} |
created | 2019-08-19 11:37:33 |
last_update | 2019-08-19 11:37:33 |
depth | 1 |
children | 0 |
last_payout | 2019-08-26 11:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 414 |
author_reputation | 7,218,006,883,278 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,699,947 |
net_rshares | 3,801,746,163 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steem.apps | 0 | 3,801,746,163 | 25% |
 [wonsama.zzan](/@wonsama.zzan)님이 anpigon님을 멘션하셨습니당. 아래 링크를 누르시면 연결되용~ ^^ <br />[wonsama.zzan](/@wonsama.zzan)님의 [[ZZAN] DAILY REPORT 2019-08-19](/zzan/@wonsama.zzan/zzan-daily-report-2019-08-19) <br /> <blockquote>...td> <td>zzan의 가격은 얼마가 적당 한가?</td> <td>33</td> </tr> <tr> <td>anpigon/td> <td>13:55:36</td> <td>[React] Mobx-state-t</td> <td>17</...</blockquote>
author | steem.apps |
---|---|
permlink | re---------react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree-20190819t153139188z |
category | zzan |
json_metadata | {"app":"steem.apps/0.1","format":"markdown"} |
created | 2019-08-19 15:31:39 |
last_update | 2019-08-19 15:31:39 |
depth | 1 |
children | 0 |
last_payout | 2019-08-26 15:31:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 450 |
author_reputation | 7,218,006,883,278 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,707,986 |
net_rshares | 0 |
 [always1success](/@always1success)님이 anpigon님을 멘션하셨습니당. 아래 링크를 누르시면 연결되용~ ^^ <br />[always1success](/@always1success)님의 [Active Bloggers #34](/palnet/@always1success/33wuwe-active-bloggers-34) <br /> <blockquote>...taneously posted articles on Liv.SteemPeople.</em> <ol> <li>anpigon/li> <li>banguri</li> </ol> <em>From the list of active blogg...</blockquote>
author | steem.apps |
---|---|
permlink | re---------react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree-20190819t230615034z |
category | zzan |
json_metadata | {"app":"steem.apps/0.1","format":"markdown"} |
created | 2019-08-19 23:06:15 |
last_update | 2019-08-19 23:06:15 |
depth | 1 |
children | 0 |
last_payout | 2019-08-26 23:06:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 450 |
author_reputation | 7,218,006,883,278 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,721,292 |
net_rshares | 0 |
Congratulations @anpigon! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@anpigon/votes.png?201908190822"></td><td>You distributed more than 12000 upvotes. Your next target is to reach 13000 upvotes.</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@anpigon) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=anpigon)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anpigon-20190819t115853000z |
category | zzan |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-08-19 11:58:51 |
last_update | 2019-08-19 11:58:51 |
depth | 1 |
children | 0 |
last_payout | 2019-08-26 11:58:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 895 |
author_reputation | 38,975,615,169,260 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,700,591 |
net_rshares | 0 |
Thank you for your continued support towards JJM. For each 1000 JJM you are holding, you can get an additional 1% of upvote. 10,000JJM would give you a 11% daily voting from the 700K SP virus707 account.
author | virus707 |
---|---|
permlink | re-react-mobx-state-tree-3-snapshots-patches-recording-mobx-state-tree-1566222791 |
category | zzan |
json_metadata | {"tags":["jjm"]} |
created | 2019-08-19 13:53:09 |
last_update | 2019-08-19 13:53:09 |
depth | 1 |
children | 0 |
last_payout | 2019-08-26 13:53:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 557,563,606,581,756 |
root_title | "[React] Mobx-state-tree 학습하기 #3 : Snapshots 또는 Patches를 Recording하여 mobx-state-tree 모델 테스트하기" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,704,658 |
net_rshares | 0 |