refactor(frontend): introduce promoted posts & safer "burn" mechanism#506
refactor(frontend): introduce promoted posts & safer "burn" mechanism#506luciorubeens wants to merge 1 commit intoallinbits:mainfrom
Conversation
|
@luciorubeens I wanted to try it but in Brave and Chromium I can't see the "New Post" dialog, it seems there is an issue so only the dark overlay is displayed |
| // TODO: Verify wallet has enough balance for amountAtomics before allowing submit | ||
| const canSubmit = computed(() => { | ||
| return true; | ||
| }); |
There was a problem hiding this comment.
It would be nice to have this check 👍
| const amountAtomics = computed(() => { | ||
| if (configStore.config.defaultAmountEnabled) { | ||
| return configStore.config.defaultAmountAtomics; | ||
| } | ||
|
|
There was a problem hiding this comment.
It would be great if the redundancy between the components' amountAtomics and canSubmit could be improved
|
Giuseppe gave a great recommendation which is to also allow users to type any value if they want to, on top of the fixed ones. So it would be great for users to be able to explicitly toggle an input to enter any PHOTON amount. |
Let's create a separate issue for the manual input Jeronimo mentioned, and keep the original scope in this PR. |
Based on Jae's feedback , introduced the concept of "promoted posts" to replace the PHOTON input field.
Fixes #496