KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes by krnel

View this thread on steempeak.com
· @krnel · (edited)
$86.94
KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes
[//]: # (https://github.com/KrNel/kure)

Another week gone by and another (late) development update to do, letting you know what's happening with KURE. This week was troublesome as I kept encountering issues with things already done. I was trying to move forward in some areas, like upvoting posts, but kept finding other things that needed to be dealt with.

In preparation for the upvoting, I decided I needed to move the Steem functionality to the Redux store. This includes the getting of post details on the Kurate page, as well as the display of individual posts that had some bugs and I had disabled last week. The adding of posts to communities was also moved to Redux.

I added a collapsible menu for mobiles, and the infinite scroll to the browsing of post summaries on the Kurate page as well, making the site more mobile friendly.

Having sprained my thumb put a damper on the speed of getting some coding done too :/

What feature would you most like to see done to use the site? Standard front-end features, like upvoting, posting, commenting? Or community features for liking curated posts and rating them and the communities?

I was going to try to get the front-end for Steem done, as I think that is an impediment to people using the site at all... but maybe developing more of the community curation of KURE should be first. What do you think?

**What do you want to see next?**

<center><img src="https://i.imgur.com/ltGSQBe.png" /></center>

---
# Repository
https://github.com/KrNel/kure

# Site
https://thekure.net/

---
# Index

1. What is KURE?
2. What's new?
	2.1 Collapsible menu for mobiles and tablets
	2.2 Personalized account menu with avatar
	2.3 Infinite scroll to Kurate posts
	2.4 UI and UX candy
3. Bug and Other Fixes
	3.1 Authentication fetch was being done on each route load
	3.2 Error boundary error prevented routes from loading
	3.3 Bug with helmet header in wrong place
	3.4 Adding post to group error: 'Warning: React does not recognize the prop on a DOM element.'
	3.5 Each Kurate summary post load calls API to get the user's communities
	3.6 After login, logout menu not displayed
	3.7 Redux authentication not done before component trying to use auth data
	3.8 Join request showing blank Members role on Communities page
4. Pull Request / Latest Commits
5. Roadmap
6. Contact

---
# 1. What is [KURE](https://thekure.net/)?

### Kindred United to Reward Everyone.

#### A Community Platform and Curation Network Remedy for Steem

Do you want to find content that other people really value, based on topics that interest you? How?

Upvotes don't do it, because so many upvotes come from autovoting, autobots, or curation trails. You don't know if a vote for content is done by a real person, or some automation. The content isn't being evaluated when it's automated.

Plus, you can upvote so many things, which can be unrelated.

Imagine a curation network where people are interacted through community groups to share and value content, and you can really see what they value globally through various communities that people organize and collaborate together to build.

KURE provides a network hub for people to create their own community groups for evaluating content to curate. It will also develop into communities to create posts within.

Create your own communities and have others join to contribute. Make up your own criteria. Manage who can add curation links to your community group. Anyone else can follow your community and engage.

My goal is to make content easier for everyone to find by all of us sharing the content we like trough communities. Others can find communities they are interested in and see what is being curated within that community to also support it with upvotes, resteems and comments.

Maybe you want to share what you value, and get others to see it or support it, but don't want to resteem it, or want more people to see it. On KURE, the community you create and those who are involve din it will popularize content you value and allow others to see it. Another way of thinking about it, is it's kind of like having a custom community feed, based on a community that engages in creating it, rather than just one person.

---
# 2. What's new

## Video Demonstration

https://vimeo.com/322673686

---
## 2.1 Collapsible menu for mobiles and tablets

While at work and trying to get more complicated things worked on between calls, I decided to instead go for simpler tasks that weren't such an issue if I was being interrupted all the time. I decided to get around to the mobile menu and at least make things a little bit more mobile friendly, despite more work being required on the site in other places to make it more mobile friendly.

Now mobile and tablet users, or anyone who shrinks their browser view on desktop, will see a sidebar menu when they click on the bars icon:

#### *Visualized*

<center><img src="https://i.imgur.com/XQ2Mb5X.png" /></center>

The code for the menu had to changed to render two menus onto the page. What determined which one was to be displayed as the view width of the browser:

#### *Code Snippet*

<center><img src="https://i.imgur.com/Wpm9VAw.png" /></center>

I also had to change how the pages were being displayed. After wasting some time trying to get the  components for pages to display under the navigation like I had before, I realized I was wasting my time indeed.

The content was being pushed down a full view height if I had it underneath the nev menu. With semantic-ui and sidebars, the only way to get the content to show up where it's supposed to be, while having the sidebar mobile menu take up the full view height, was to put the page components within the nav component, as children: `<NavBarChildren>{children}</NavBarChildren>`

---
## 2.2 Personalized account menu with avatar

<div class='pull-right'>
<h4>Visualized</h4>
<center><img src="https://i.imgur.com/6lbaLzt.png" /></center>
</div>

Another thing I worked on to try to improve the UX was to add the user's Avatar. I also included a link to the `Feed` and `Blog` pages, but to steemit.com.

I have not yet done the pages for the Feed or Blog, but I will now that I finished moving the code to Redux.

The `Logout` option is done as a `Dropdown.Item` from react-semantic-ui, but the Feed and Blog are just hyperlinks since I can only make a route to internal pages.

When I get the Feed and Blog pages done, then they will be turned into local routes.

#### *Code Snippet*

<center><img src="https://i.imgur.com/RieaGzx.png" /></center>

---
## 2.3 Infinite scroll to Kurate posts

The infinite scrolls was finally done as well. I had put this on the `roadmap` for several weeks, but was always doing more complex development instead. With my frequent interruptions this week, this is another feature I got done which was less demanding and didn't require much logical thought to keep in my head at once and following through the app from component to component.

#### *Code Snippet*

<center><img src="https://i.imgur.com/uqV9DaW.png" /></center>

The last list item is pulled as an element, and it's position calculated. When the scrollbar reaches that list item, it triggers the call to `getPosts()`, along with an indicator for getting 'more', as opposed to getting the initial 20 posts.

If there are currently posts being fetched, or there are no more to fetch, then the infinite scroll doesn't call the fetching function.

---
## 2.4 UI and UX candy

Following the previous review from @amosbastian, they suggested I spruce up the look of some data design:

> A tip for the design: "don't be afraid to 'think outside the database' β€” your UI doesn't need to map one-to-one with your data's fields and values."

Some of the data is better shown as a table, at least for now. But I did take their suggestions and implemented a design improvement for the `Manage` page with Community boxes:

#### *Visualized*

<center><img src="https://i.imgur.com/R822Ct4.png" /></center>

Now there are icons before the data to visualize it better, and also instead of the table-like format of `Label: Data`, the data comes first with a descriptive label afterwards.

#### *Code Snippet*

<center><img src="https://i.imgur.com/FlLtzUg.png" /></center>

As you may notice, there was also some changes to the boxes themselves, in that they now have shadows to make them pop out more. I hope these are welcome UI/UX changes from the simpler flat design I had opted for originally.
	
---
# 3. Bug Fixes

A lot of time was spent fixes issues that I didn't initially notice earlier. I would try to move ahead with something, and then I'd notice an issue that needed to be investigated and corrected. That takes time to find and correct, which slows me down in other development.

I won't provide much detail for these issues.

---
## 3.1 Authentication fetch was being done on each route load

One thing I noticed when looking at the access logs were the calls to `api/returning`. When I would go to a new page, the app was calling the API and validating the user again and again. It should only do it on the first page load, not on each subsequent page visited in the session.

To fix that, all I needed to do was check if the user was already authenticated with `!isAuth`. Problem solved.

#### *Code Snippet*

<center><img src="https://i.imgur.com/2HlcgsL.png" /></center>

---
## 3.2 Error boundary error prevented routes from loading

Someone who tried the site gave me some helpful feedback, letting me know that an error was happening on individual posts details, for which I changed the links to sen people to steemit.com until I figured out and fixed the content viewing issue (which I did).

When any page would error out, React's `Error Boundary` would load, and not show a crappy stacktrace for the user. But, they couldn't navigate away. Only a refresh of the page would work.

I had to move the `Error Boundary` component wrapper down to individual pages, not have it higher up in the app parent. Problem solved.

---
## 3.3 Bug with helmet header in wrong place

I was also adding `<head>` info higher up in the app, and not per view. When I tried to add another `Helmet` HTML header down the component hierarchy, it gave errors. I removed the header at the higher position, and now there is no more error for inserting HTMl `<head>`.

---
## 3.4 Adding post to group error: 'Warning: React does not recognize the prop on a DOM element.'

I made the mistake of adding all the data from an API call to a component via a deconstructing spread operator `...prop`. This gave the element many attributes which weren't valid. After only putting the needed data into the element, the problem was resolved. But it took me a while to figure out where this was happening.

---
## 3.5 Each Kurate summary post load calls API to get the user's communities

The ability to add posts to a community needs to know what groups a logged in user has. Fetching the data for the groups was being done multiplet times, once for each post loaded, and there were 20 posts loaded per batch.

I had to move the request for data to a better place up in the parent component, and it was only being called once per page visit.

---
## 3.6 After login, logout menu not displayed

There was an issue where after a login, the menu would still show `Login`. It turned out the login authentication data was not being passed along to the component after I had made some changes to the NavMenu.

---
## 3.7 Redux authentication not done before components trying to use authenticated data

In Redux, I though the parent component dispatches would get called first before the child, but it's actually the opposite that happens! Go figure!

You can put your fetch in the `constructor` to have it execute first, but that can create other problems, like the data not being fetched again and breaking your app. Even that doesn't solve it if it's not a problem for you, which it was for me.

Since I'm using `redux-thunk`, my dispatches are asynchronous. The child dispatch is a called first, but soon after the parent does, before the child dispatch is completed. I resolved the issue by putting an async/await on the dispath called from the parent:

#### *Code Snippet*

<center><img src="https://i.imgur.com/2HlcgsL.png" /></center>

---
## 3.8 Join request showing blank Members role on Communities page

<div class='pull-right>
<center><img src="https://i.imgur.com/CakXcPV.png" /></center>
</div>

The last I will mention (although not the last to have occurred), was that users who requested to join a group, where being shown as Members with no role/rank. This is publicly, in the Communities page. In the Manage page it was fine, because they weren't members yet.

I think publicly, it's nice to know who has requested to join a community, so they should be there, as the rank `Requested`, which they now are when I added the rank to the settings file.

---
# 4. Pull Request / Latest Commits

# [PR #6](https://github.com/KrNel/kure/pull/6)

---
# 5. Roadmap

The site is up, but there isn't much activity. There are features lacking that may make people not want to use the site. I think if the interaction with the Steem blockchain was there, then it would create a more welcoming environment for people to want to use the site. I'll be working on trying to make that happen ;)

Working on:
- Upvoting
- Liking and rating submissions
- Posting content to Steem (not just curation post submissions)
- Posting comments
- Posts submitted page
- About page

---
# 6. Contact

If you want to contact me, you can reach me on Discord at https://discord.gg/ApUp4jJ, or email at `krnel@protonmail.com`. I'm not really on steem.chat, but I think I get emails if you send me a message.

- [Discord](https://discord.gg/ApUp4jJ)
- Email: `krnel@protonmail.com`
- Site: [thekure.net](https://thekure.net/)

---
Thank you for your time, attention and support! I appreciate it!

Peace.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 381 others
properties (23)
post_id71,211,874
authorkrnel
permlinkkure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes
categoryutopian-io
json_metadata{"tags":["utopian-io","development","steem","kure","busy"],"users":["amosbastian","protonmail.com"],"image":["https:\/\/i.imgur.com\/ltGSQBe.png","https:\/\/i.imgur.com\/XQ2Mb5X.png","https:\/\/i.imgur.com\/Wpm9VAw.png","https:\/\/i.imgur.com\/6lbaLzt.png","https:\/\/i.imgur.com\/RieaGzx.png","https:\/\/i.imgur.com\/uqV9DaW.png","https:\/\/i.imgur.com\/R822Ct4.png","https:\/\/i.imgur.com\/FlLtzUg.png","https:\/\/i.imgur.com\/2HlcgsL.png","https:\/\/i.imgur.com\/2HlcgsL.png","https:\/\/i.imgur.com\/CakXcPV.png"],"links":["https:\/\/github.com\/KrNel\/kure","https:\/\/thekure.net\/","https:\/\/thekure.net\/","\/@amosbastian","https:\/\/github.com\/KrNel\/kure\/pull\/6","https:\/\/discord.gg\/ApUp4jJ","https:\/\/discord.gg\/ApUp4jJ","https:\/\/thekure.net\/"],"app":"busy\/2.5.6","format":"markdown","community":"busy"}
created2019-03-10 23:55:48
last_update2019-03-16 22:45:33
depth0
children10
net_rshares124,511,297,733,589
last_payout2019-03-17 23:55:48
cashout_time1969-12-31 23:59:59
total_payout_value65.958 SBD
curator_payout_value20.982 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13,941
author_reputation954,992,586,021,436
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (445)
@holger80 ·
$0.05
$rewarding 80% 13min
Is there some kind of testing or beta site? It looks very interesting, great work.

Posted using [Partiko Android](https://steemit.com/@partiko-android)
πŸ‘  ,
properties (23)
post_id71,212,154
authorholger80
permlinkholger80-re-krnel-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190311t000503132z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-03-11 00:05:03
last_update2019-03-11 00:05:03
depth1
children1
net_rshares70,238,100,453
last_payout2019-03-18 00:05:03
cashout_time1969-12-31 23:59:59
total_payout_value0.036 SBD
curator_payout_value0.011 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length173
author_reputation183,372,131,550,888
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@krnel ·
Thanks. Yes, it was in the "What is KURE" header, and at the bottom in contact. I've added it now under the logo. https://thekure.net/
properties (22)
post_id71,215,848
authorkrnel
permlinkre-holger80-holger80-re-krnel-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190311t014844815z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https:\/\/thekure.net\/"],"app":"steemit\/0.1"}
created2019-03-11 01:48:45
last_update2019-03-11 01:48:45
depth2
children0
net_rshares0
last_payout2019-03-18 01:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length134
author_reputation954,992,586,021,436
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@berniesanders ·
I just randomly voted for your post!  Please give me a follow!
properties (22)
post_id71,212,400
authorberniesanders
permlinkberniesanders-re-krnelkure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes
categoryutopian-io
json_metadata{}
created2019-03-11 00:11:03
last_update2019-03-11 00:11:03
depth1
children2
net_rshares-10,452,674,648
last_payout2019-03-18 00:11:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length62
author_reputation604,103,165,045,172
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@animalcontrol ·
^flag !popcorn
properties (36)
authoranimalcontrol
permlinkanimal-suppression-68318288
categoryutopian-io
json_metadata""
last_update2019-03-11 00:11:30
created2019-03-11 00:11:30
active2019-03-11 00:11:54
last_payout2019-03-18 00:11:30
depth2
children1
net_rshares-6,390,402
vote_rshares0
children_abs_rshares0
cashout_time1969-12-31 23:59:59
max_cashout_time1969-12-31 23:59:59
total_vote_weight0
reward_weight10,000
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
author_rewards0
net_votes-1
root_authorkrnel
root_permlinkkure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
allow_repliestrue
allow_votestrue
allow_curation_rewardstrue
beneficiaries[]
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
pending_payout_value0.000 SBD
total_pending_payout_value0.000 STEEM
author_reputation2,524,233,137,051
promoted0.000 STEEM
body_length0
reblogged_by[]
@lyndsayblowes ·
@animalcontrol is a spam bot run by @fulltimegeek as part of his flag campaign against users who speak out against him.<br><br>Free speech?!?!  Nah, not unless you believe the Earth is flat or hosts elevator using aliens!!
properties (36)
authorlyndsayblowes
permlinklyndsayblowes-re-animalcontrolanimal-suppression-68318288
categoryutopian-io
json_metadata""
last_update2019-03-11 00:11:54
created2019-03-11 00:11:54
active2019-03-11 00:11:54
last_payout2019-03-18 00:11:54
depth3
children0
net_rshares0
vote_rshares0
children_abs_rshares0
cashout_time1969-12-31 23:59:59
max_cashout_time1969-12-31 23:59:59
total_vote_weight0
reward_weight10,000
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
author_rewards0
net_votes0
root_authorkrnel
root_permlinkkure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
allow_repliestrue
allow_votestrue
allow_curation_rewardstrue
beneficiaries[]
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
pending_payout_value0.000 SBD
total_pending_payout_value0.000 STEEM
author_reputation13,617,980,744,778
promoted0.000 STEEM
body_length0
reblogged_by[]
@steem-ua ·
#### Hi @krnel!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your **UA** account score is currently 7.375 which ranks you at **#60** across all Steem accounts.
Your rank has not changed in the last three days.

In our last Algorithmic Curation Round, consisting of 182 contributions, your post is ranked at **#2**. Congratulations! 
##### Evaluation of your UA score:

* Your follower network is great!
* The readers appreciate your great work!
* Great user engagement! You rock!


**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
post_id71,237,152
authorsteem-ua
permlinkre-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190311t122348z
categoryutopian-io
json_metadata{"app":"beem\/0.20.18"}
created2019-03-11 12:23:48
last_update2019-03-11 12:23:48
depth1
children0
net_rshares0
last_payout2019-03-18 12:23:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length621
author_reputation23,203,609,903,979
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@helo ·
$14.39
- Great post with a video, images, code samples and a great layout with plenty of explanations of improvements.
- Good commit comments and separation of concerns, all in one PRs.  Bravo.
- Is it me or is there a lot of dead code in `server/routes/api/steem/upvote.js` and `server/server.js`.  You can take it out, it can always be found in github history.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-1-1-1-1-1-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , ,
properties (23)
post_id71,241,470
authorhelo
permlinkre-krnel-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190311t135628931z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https:\/\/join.utopian.io\/guidelines","https:\/\/review.utopian.io\/result\/3\/1-2-1-1-1-1-1-","https:\/\/discord.gg\/uTyJkNm","https:\/\/join.utopian.io\/"],"app":"steemit\/0.1"}
created2019-03-11 13:56:27
last_update2019-03-11 13:56:27
depth1
children2
net_rshares20,421,167,646,839
last_payout2019-03-18 13:56:27
cashout_time1969-12-31 23:59:59
total_payout_value10.908 SBD
curator_payout_value3.483 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length805
author_reputation119,612,833,307,875
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (17)
@krnel ·
$0.12
Thanks for the review! Yeah, the upvote part was something new I'm working on, and funny thing is I even deleted the folder to not have it included in the PR, but then I undid the delete before the last commit :P instead of undoing it only after I did the commit. I try to remove some large commented areas before committing, but it's cumbersome to do and I forget. The server.js is something I need to finalize instead of leaving the large commented code in there, indeed.
πŸ‘  
properties (23)
post_id71,242,579
authorkrnel
permlinkre-helo-re-krnel-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190311t141848737z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-11 14:18:48
last_update2019-03-11 14:18:48
depth2
children0
net_rshares218,433,031,989
last_payout2019-03-18 14:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.116 SBD
curator_payout_value0.002 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length473
author_reputation954,992,586,021,436
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
post_id71,437,433
authorutopian-io
permlinkre-re-krnel-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190311t135628931z-20190314t050140z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-03-14 05:01:42
last_update2019-03-14 05:01:42
depth2
children0
net_rshares0
last_payout2019-03-21 05:01:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation152,913,012,544,965
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
Hey, @krnel!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
post_id71,279,138
authorutopian-io
permlinkre-kure-development-update-8-ui-ux-candy-mobile-menu-infinite-scroll-and-lots-of-fixes-20190312t035917z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-03-12 03:59:18
last_update2019-03-12 03:59:18
depth1
children0
net_rshares0
last_payout2019-03-19 03:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length587
author_reputation152,913,012,544,965
root_title"KURE Development Update 8 - UI/UX Candy, Mobile Menu, Infinite Scroll and Lots of Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000