Sean Yesmunt
33bf50e91b
fix simpleLinks in MarkdownLink
2020-10-23 10:30:11 -04:00
Sean Yesmunt
6c6dacb195
fix strings
2020-10-23 01:53:09 -04:00
Sean Yesmunt
221ae5b821
fix inline player not showing up broken from previous commit
2020-10-22 18:09:17 -04:00
Sean Yesmunt
c9fdaec997
don't show external link modal for lbry links
2020-10-22 14:30:40 -04:00
Sean Yesmunt
6659ef50ff
don't show ClaimLinks in file description
2020-10-22 14:16:42 -04:00
Sean Yesmunt
ad88d8993d
fix app crash
2020-10-22 14:08:53 -04:00
Sean Yesmunt
851b2d13e4
remove homepage hack from ClaimListDiscover and fix order so release_time filter is set properly
2020-10-22 13:01:17 -04:00
Sean Yesmunt
cd3f30e03e
don't pass fee_amount: >=0 when nothing is set to avoid timeouts
2020-10-22 13:01:17 -04:00
Sean Yesmunt
bf27692a65
use lbc icon for reward notifications
2020-10-22 12:41:29 -04:00
Sean Yesmunt
1cb0685b61
pass is_app_readable to notification/list
2020-10-22 12:41:29 -04:00
Sean Yesmunt
788fd153da
fix thumbnail gifs in comments
2020-10-21 16:45:43 -04:00
jessop
51c94d334a
set userid regardless of signin
2020-10-21 15:30:26 -04:00
jessop
fab03d337e
ad fix 2
2020-10-21 15:30:01 -04:00
Sean Yesmunt
295b8cf2e1
refactor floatingUri to allow inline players in comments/markdown
2020-10-21 15:29:29 -04:00
Sean Yesmunt
3b20104261
bump allowed upload size to 2gb on web
2020-10-20 13:13:08 -04:00
jessop
14e1b6c1f7
pin only top level
2020-10-20 13:09:08 -04:00
jessop
91d034954e
mark notification seen on relevant interaction
2020-10-20 13:09:08 -04:00
Sean Yesmunt
41dfd8a0f8
return early for undefined i18n messages
...
could happen when we map over a list of objects to create buttons and one only has an icon
2020-10-19 23:54:32 -04:00
Sean Yesmunt
a0320f8cef
remove comment
2020-10-19 23:37:39 -04:00
Sean Yesmunt
a045ddf23e
bump lbry-redux + pin icon tweaks
2020-10-19 23:37:39 -04:00
Sean Yesmunt
106f5a0ac2
initial comment pin PR with new commit
2020-10-19 23:37:39 -04:00
jessop
2f84d94c66
related add full width
2020-10-19 22:59:24 -04:00
Sean Yesmunt
264a85d837
Revert "comment pin action"
...
This reverts commit 636ab7427d
.
2020-10-19 15:01:09 -04:00
jessop
636ab7427d
comment pin action
...
owners can pin and unpin comments
tweak pin icon styles
move commenting activeChannel from localStorage to redux
2020-10-19 14:48:01 -04:00
jessop
9fb13975b4
email resend requests limited to once per thirty seconds
2020-10-16 16:38:52 -04:00
Sean Yesmunt
3bb5c06f44
openItem => openPath
2020-10-16 10:49:01 -04:00
jessop
6284f86026
fix reward rates crash
2020-10-16 00:07:30 -04:00
Thomas Zarebczan
f5900795c4
Show own channels on blocked list
2020-10-15 19:10:58 -04:00
Sean Yesmunt
cfd4e8a05d
rc fixes for electron 9
2020-10-15 19:06:47 -04:00
Thomas Zarebczan
ba786fa50e
Show unblock button on own blocked channels
2020-10-15 17:49:05 -04:00
Sean Yesmunt
c5a2126abe
disable snapshot thumbnail on desktop to prevent desktop crashes
...
https://github.com/electron/electron/issues/20750\#issuecomment-709505902
2020-10-15 14:32:58 -04:00
infiinte-persistence
e947307f86
Fix typo "Logging in in as ..."
2020-10-15 00:09:01 -04:00
infiinte-persistence
511a746871
Str-context-split: "To" and "From"
...
## Note from Russian translator
"To/From" in the 'automatic dark mode setting' cannot be re-used for the one in the 'Tip Modal'.
## Change
Wanted to split this into "general" and "time", but I'm guessing it won't satisfy all languages, so we'll just use the usage as the context since there's just 2 instances.
2020-10-14 17:44:44 -04:00
infiinte-persistence
80b4600f60
Str-context-split: "Follow"
...
## Issue
4192
2020-10-14 17:44:44 -04:00
infiinte-persistence
d7a178d259
Str-context-split: "Post"
...
Splitting the context between "Markdown post" (noun) vs. "Post something" (verb)
2020-10-14 17:44:44 -04:00
infiinte-persistence
6dd40df93b
Str-context-split: "Support"
...
Chinese, Spanish and other translators reported the difficulty in using "Support" as both a noun and verb in their language.
2020-10-14 17:44:44 -04:00
infiinte-persistence
567316cfbe
Support for multiple string context + "About" as initial example.
...
## Issue
4796 - i18n: Allow support for string overloading (multiple contexts)
## Approach
- Minimal code and process change.
- Handle on a case-by-case basis when reported by translators.
- Split the affected key in the string json by appending the context.
- Translators need to be aware of the new format and not translate context itself. Code is added to detect bad translations and will revert to English.
Sample in json:
"About --[About section in Help Page]--": "About",
"About --[tab title in Channel Page]--": "About",
Sample in client code:
title={__('About --[About section in Help Page]--')}
- "--[ ]--" was chosen as it's unique enough (unlikely for real strings to use it) and hopefully not that distracting in the client code.
- In the key itself, spaces are allowed after the string (i.e. before '--[') for neatness. It will be trimmed by the system.
## First example
"About" is used in 3 places:
- Channel Page
- Help Page
- Footer (in Odysee branch)
For Russian, the word "About" is "O" and is usually not used standalone, but requires something behind it. A translator said so, and seems to be the case in other sites as well.
"O xxx"
"O yyy"
## Other languages
For other languages that are not impacted, they can just clone the same translation for each of the split keys, just like in English.
## Possible enhancement in Transifex
I see that Transifex's API includes a `context` entry. It might be possible to move the context-metadata there during the upload, so translators will never see the "--[]--" messiness (it will be shown as "Context: xxx" in the Transifex GUI).
I'm not sure how to test the Transifex side, so I did not investigate further.
2020-10-14 17:44:44 -04:00
Sean Yesmunt
44bcc943a0
add new sort icons for new/best/controversial
2020-10-14 16:51:48 -04:00
Sean Yesmunt
77aa580690
add spacing for ul/ol next to p elements
2020-10-14 11:33:39 -04:00
Sean Yesmunt
172e918de5
pass to
2020-10-13 15:31:07 -04:00
Sean Yesmunt
4b98cf45f3
prevent clicking through help links
2020-10-12 23:21:23 -04:00
Sean Yesmunt
88c86ff447
add help link
2020-10-12 23:21:23 -04:00
Sean Yesmunt
4815aa9ff1
add reward rate + analytics link on channels page
2020-10-12 23:21:23 -04:00
Sean Yesmunt
65c39cbbc8
fix mobile comments on ios devices
2020-10-12 15:21:03 -04:00
Sean Yesmunt
03f1fe3ee5
make youtube sync web only
2020-10-09 17:08:38 -04:00
Sean Yesmunt
8bb6643a41
switch back to 'slimed to death'
2020-10-09 11:38:50 -04:00
Sean Yesmunt
60569de672
hide comments that were slimed to death TM
2020-10-08 15:57:20 -04:00
Sean Yesmunt
b1bca7982a
re-enable lbry:// link styles in comments
...
will add support for odysee/lbry.tv once the style is finalized
2020-10-08 14:19:21 -04:00
Sean Yesmunt
480d8a8786
wait to scroll to linked comments until readyToDisplay=true
2020-10-08 14:19:21 -04:00
Sean Yesmunt
6d4a92ad27
format reaction count to include commas
2020-10-08 14:19:21 -04:00
Sean Yesmunt
c1bd9ad6af
update app-strings
2020-10-08 13:15:22 -04:00
Sean Yesmunt
761b93d811
add style for comments with is_pinned=true
2020-10-08 11:48:32 -04:00
jessop
7678eedf4d
catch claim error on referrer set
2020-10-08 10:52:44 -04:00
infiinte-persistence
1100a07108
Comment v69 strings and misc.
2020-10-08 10:37:17 -04:00
Sean Yesmunt
5d2d6d2a94
always show your own comments at the top
2020-10-07 17:11:22 -04:00
Sean Yesmunt
c43eff8587
comments v69
2020-10-07 17:11:22 -04:00
infiinte-persistence
6198ab57de
String: fix untranslated 'File|Post' tab
...
Both "File" and "Post" are already added in the database, so this should now work.
2020-10-07 16:25:03 -04:00
infiinte-persistence
4294e0109a
String: fix variable-resolving problems
2020-10-07 16:25:03 -04:00
infiinte-persistence
54cdf2a7e6
Add comment sorting strings
2020-10-07 16:25:03 -04:00
infiinte-persistence
4a2e9bf1c7
Fix: Videos start muted on initial session
...
## Issue
4831: Videos start muted on Desktop (fresh install) and web (sometimes resets)
This covers the Desktop fresh install and Web fresh session (incognito) part. It doesn't cover the "sometimes reset" part as I don't know how to reproduce that.
## Change
`sessionStorage` is always empty when that piece of code is called, even for non-fresh Desktop and even in Brave. We now fallback to `1` when `volume` is `null`. Still not sure the purpose of that code, but leaving it there just in case something relies on it.
## Tests
[/] Desktop fresh-install is not muted.
[/] Desktop return session restores previous volume level.
[/] Web* fresh session (cleared data) is not muted.
[/] Web return session restores previous volume level.
*Web = Chrome, Firefox and Brave.
2020-10-07 16:24:34 -04:00
Sean Yesmunt
85e2ee28a3
add referral code to embed links
2020-10-07 16:23:53 -04:00
jessop
3ca19744c4
only autoset referrer if not authenticated
2020-10-07 13:30:49 -04:00
jessop
10ce772bcb
initial page view sets referring channel
2020-10-07 11:44:12 -04:00
Sean Yesmunt
ec3307320a
fix controversial icon spacing
2020-10-06 17:46:32 -04:00
Sean Yesmunt
f534291767
update comment sort icons
2020-10-06 17:36:13 -04:00
Sean Yesmunt
0326e266d4
make sure comments are rendered before trying to render more
2020-10-06 16:33:51 -04:00
Sean Yesmunt
c1b5280446
move youtube badge to 'channel about' section
2020-10-06 16:30:03 -04:00
Sean Yesmunt
fc2a79242e
don't add scroll listener until comments have been fetched
2020-10-06 16:13:42 -04:00
Sean Yesmunt
00c05437ca
add comment sorting and improve comment focus styles
2020-10-06 16:04:52 -04:00
Thomas Zarebczan
136d73d2ff
Fix Japanese language code
2020-10-06 11:37:19 -04:00
infiinte-persistence
329f6b3da6
Comment: Change 'shift+enter' to 'ctrl|cmd+enter' for quick submit.
...
ctrl+enter is generally used for this action, while shift+enter generally used to insert a <br>.
2020-10-06 02:02:11 -04:00
Sean Yesmunt
c159f34b24
add infinite scroll for comments
2020-10-05 17:34:06 -04:00
ioancole
9d51cee72c
Correctly navigate to channel URL
2020-10-05 16:43:29 -04:00
ioancole
7f00a01c2b
Check search string for web URL prefixes and remove
2020-10-05 16:43:29 -04:00
Sean Yesmunt
d9acb034e1
odysee alignment
2020-10-05 14:55:52 -04:00
Sean Yesmunt
00b23cbee4
moar alignment
2020-10-05 14:28:19 -04:00
Sean Yesmunt
46a0d213fb
fix channel profile img in header
2020-10-05 14:04:31 -04:00
Sean Yesmunt
2abd1ca6c2
fix invite page crashing on large screen
2020-10-05 13:56:43 -04:00
Sean Yesmunt
489a4855e9
alignment with odysee branch
2020-10-05 13:56:43 -04:00
Sean Yesmunt
61dfc2f74a
handle comment time display correctly immediately after posting
2020-10-05 11:54:20 -04:00
Sean Yesmunt
d121f5c39c
remove unused variable
2020-10-05 11:25:20 -04:00
Sean Yesmunt
248e7a1f9e
fix lbry.tv strings
2020-10-05 10:39:24 -04:00
jessop
d4df1c8384
wait for channel fetch for reactions fetch
2020-10-05 10:39:15 -04:00
infiinte-persistence
ae191afeec
String corrections
...
- "The publisher has chosen to" -- Fix incomplete string, probably broken by linter.
- Fix hardcoded email in invite snackbar.
- Fix 'Upload Settings' to new lower-case style.
- Add few more missing ones.
- Consolidated "Claim xxx" strings together.
- Removed duplicate "Confirming..." due to branch merging.
2020-10-05 10:39:04 -04:00
Sean Yesmunt
eb84a366d2
add file reactions code from odysee
2020-10-02 15:28:00 -04:00
Sean Yesmunt
dc42df3bf2
fix uuid import with new version
2020-10-02 14:36:22 -04:00
Sean Yesmunt
bdc7c7c666
Revert "Revert "bring in ClaimListDiscover changes from odysee""
...
This reverts commit 892fb6f687
.
2020-10-02 14:36:22 -04:00
Sean Yesmunt
892fb6f687
Revert "bring in ClaimListDiscover changes from odysee"
...
This reverts commit 56cd1ddfa7
.
2020-10-02 13:45:03 -04:00
Sean Yesmunt
56cd1ddfa7
bring in ClaimListDiscover changes from odysee
2020-10-02 13:35:13 -04:00
jessop
aa127e45aa
debounce comment reacts on backend, not button, feedback immediate
2020-10-02 12:35:34 -04:00
jessop
3913c03163
shift enter to comment
2020-10-02 12:13:23 -04:00
infiinte-persistence
746f0db1f1
Add missing tooltips for a few buttons in the claim page
...
3465
2020-10-02 12:01:03 -04:00
infiinte-persistence
4053a920d9
Card: Say 'Less' (to match '-') instead of 'More' when expanded
2020-10-02 12:01:03 -04:00
infiinte-persistence
590feab1d1
Button: Enable tooltip for <a> types
...
The "Report Content" button was the impetus for this, as there was no way to know what that button is for unless the user clicked it (or smart enough to decipher the icon).
3465
2020-10-02 12:01:03 -04:00
jessop
57a09cd3c6
only clear comment text if confirmed
2020-10-02 12:00:23 -04:00
infiinte-persistence
108a898ebf
Expandable: Fade out section when 'closed'
...
## Issue
The abrupt cut-off of the expandable section bugs me (looks like a rendering glitch), especially when it cuts off in the middle of a line.
## Change
In addition to the existing 'More' button, we fade out the section to provide additional visual cues.
## Approach
This solution doesn't require the background color to be known, so it will work regardless where <Expandable> is used, or whatever color-scheme is chosen.
However, it does utilize non-standard css -- for older browsers, it should simply cut-off like the before.
2020-10-02 11:54:43 -04:00
infiinte-persistence
ef12914cad
Rebranding: 'Publish' --> 'Upload'; Use LBC icon
2020-10-02 10:25:17 -04:00
infiinte-persistence
92b211dd94
Pass the 'mode' over via UpdatePublishForm to hide some fields when Posting a Markdown.
2020-10-02 10:25:17 -04:00
infiinte-persistence
3df7ea71d3
Enable "Publish Preview" for Markdown
2020-10-02 10:25:17 -04:00
infiinte-persistence
abeb7a852c
Enable "Publish Preview" on Edit Mode as well.
2020-10-02 10:25:17 -04:00
infiinte-persistence
16b1605a35
Add SETTINGS.ENABLE_PUBLISH_PREVIEW
...
This option allows users to bypass the "publish preview" modal. Users can disable it by checking "don't show this again" in the modal, and re-enable it in the Settings Page.
2020-10-02 10:25:17 -04:00
infiinte-persistence
3588111938
Gray out 'Upload' button when previewing.
...
I simply check if the Modal exists, instead of creating an ACTION state in redux.
2020-10-02 10:25:17 -04:00
infiinte-persistence
48787a1feb
doPublishDesktop: Call the "preview" modal before doing the actual publish.
...
This requires an accompanying change in lbry-redux. Search for "SETTINGS.ENABLE_PUBLISH_PREVIEW" in the commit message to find the commit.
In Edit Mode, the preview will not appear. Not sure if it's needed, plus there are more things to handle in Edit mode (e.g. which items are changed)
2020-10-02 10:25:17 -04:00
infiinte-persistence
4c3728a20f
Add "Publish Preview" modal
2020-10-02 10:25:17 -04:00
infiinte-persistence
b666a34863
Tag: Add "type=flow" that reflows to multiline with gaps.
...
This will be used in Publish Preview modal, and potentially be used in the "show all tags in Claim Preview" request.
2020-10-02 10:25:17 -04:00
infiinte-persistence
6850a8f264
Remove duplicate strings
...
... and sneak in some corrections.
2020-10-02 10:22:55 -04:00
Sean Yesmunt
f665ed772b
add back persisted tip/support selection
2020-10-02 01:34:28 -04:00
Sean Yesmunt
20c65928cb
add back ability to abandon reposts on txo table
2020-10-02 00:54:37 -04:00
Sean Yesmunt
faa4e7364f
alignment with odysee branch
2020-10-01 17:10:42 -04:00
jessop
3fb4efb08e
allow reaction list without channel
...
uncomment
reacts requireauth, commentReact handles missing channels
enable config, better track pending reacts
2020-10-01 15:35:01 -04:00
jessop
e954bce821
allow reaction list without channel
...
uncomment
reacts requireauth, commentReact handles missing channels
enable config, better track pending reacts
2020-10-01 15:23:15 -04:00
Sean Yesmunt
5f9fda0e7c
put comment reactions behind flag
2020-10-01 14:46:08 -04:00
Alojz Jakob
859814a17b
Remove background color from img.channel-thumbnail__custom
...
Many of the creators including myself use transparency to achieve some effect. We all love PNGs and GIFs, so please dont shoot in your leg by limiting creative potential :)
For example: you can see the effect here, you can inspect lement and remove background color from channel "profile image": https://lbry.tv/@LBRYlytics:4
2020-10-01 12:27:36 -04:00
Sean Yesmunt
b5dd996bae
remove ability to abandon channels + claims from tx table
2020-09-30 17:40:09 -04:00
Sean Yesmunt
5ab94e25b7
fix staked lbc amount on dark mode
2020-09-30 17:00:18 -04:00
Sean Yesmunt
a92a3305b1
align FileActions with odysee style
2020-09-30 17:00:18 -04:00
Sean Yesmunt
0138eccb60
bring in some changes from odysee 1
2020-09-30 15:26:51 -04:00
infiinte-persistence
5df4ed2783
String scrub from odysee/release merge
...
- More missing strings
- Moved strings around to keep related strings together (easier for translators to guess the context)
- Removed translation macro for blank string
- Fix typo for 'Neetwork'
2020-09-30 14:06:11 -04:00
Sean Yesmunt
1628f32fe1
fix purchase price color on dark mode
2020-09-30 14:02:45 -04:00
Sean Yesmunt
5fb1b07d23
fix typo
2020-09-29 20:57:35 -04:00
Sean Yesmunt
bd4ac1ae8a
fix rebase
2020-09-29 17:12:32 -04:00
Sean Yesmunt
848495f82a
keep notifications behind flag
2020-09-29 17:12:32 -04:00
Sean Yesmunt
f979d23175
default to empty array for myReactions
2020-09-29 17:12:32 -04:00
jessop
ad88f7de7f
disable while reacting, dont call api twice
2020-09-29 17:12:32 -04:00
jessop
63ce107cc1
comment reactions
2020-09-29 17:12:32 -04:00
Sean Yesmunt
bdb3d695ee
make comment thumbnail smaller
2020-09-29 17:12:32 -04:00
Sean Yesmunt
b0d19455c1
add placeholder upvote/downvote buttons on comments
2020-09-29 17:12:32 -04:00
Sean Yesmunt
d493a5f9ea
remove un-needed user/fetch
2020-09-29 17:12:32 -04:00
Sean Yesmunt
7a13a53bdd
fix notification mobile style
2020-09-29 17:12:32 -04:00
Sean Yesmunt
2c1d97f759
use LbcMessage on snackbars
2020-09-29 17:12:32 -04:00
Sean Yesmunt
672a79cc09
1 column
2020-09-29 17:12:32 -04:00
Sean Yesmunt
110ba59ea0
link style cleanup + tile mode on channels
2020-09-29 17:12:32 -04:00
Sean Yesmunt
4f770ec83e
redirect to channel page if no channels when trying to repost
2020-09-29 17:12:32 -04:00
Sean Yesmunt
bf9be7c46d
keep header on regular discover page
2020-09-29 17:12:32 -04:00
Sean Yesmunt
51d8d85c60
re-enable reposts for SIMPLE_SITE
2020-09-29 17:12:32 -04:00
Sean Yesmunt
fa2d69f943
clean up description style
2020-09-29 17:12:32 -04:00
Sean Yesmunt
40d32a6065
fix LbcMessage for single digit integers
2020-09-29 17:12:32 -04:00
Sean Yesmunt
6b8a38b894
add spinner to web upload message and fix double card issue
2020-09-29 17:12:32 -04:00
Sean Yesmunt
23f218a568
use backout mode on publish page
2020-09-29 17:12:32 -04:00
Sean Yesmunt
7d8277b4db
fix homepage layout on windows/linux
2020-09-29 17:12:32 -04:00
Sean Yesmunt
299301b633
make channel/tag follow intro optional
2020-09-29 17:12:32 -04:00
Sean Yesmunt
4e1076e01b
make category header clickable
2020-09-29 17:12:32 -04:00
Sean Yesmunt
f8e01c7c99
fix target for notification for daily_watch_remind type
2020-09-29 17:12:32 -04:00
Sean Yesmunt
c6e2b54d33
hide top page behind SIMPLE_SITE flag
2020-09-29 17:12:32 -04:00
Sean Yesmunt
6ed57822d6
create <LbcMessage /> to inject lbc symbols in text from IAPIS
2020-09-29 17:12:32 -04:00
Sean Yesmunt
c1e6e90896
large claim-grid header text + optional icon
2020-09-29 17:12:32 -04:00
Sean Yesmunt
1a3e1ba003
move sync password to it's own page
2020-09-29 17:12:32 -04:00
Sean Yesmunt
cc0b1aea65
add backout option for youtube sync and fix scroll reset
2020-09-29 17:12:32 -04:00
Sean Yesmunt
0b0e92d250
add timed out message for tile view
2020-09-29 17:12:32 -04:00
Sean Yesmunt
93c2e753b2
link to following page for daily watch reward notification
2020-09-29 17:12:32 -04:00
Sean Yesmunt
ac770518bf
remove old syncSettings usage
2020-09-29 17:12:32 -04:00
Sean Yesmunt
db43769cbb
use LBRY Credits on RewardTile
2020-09-29 17:12:32 -04:00
Sean Yesmunt
29f524981f
table alignment fixes
2020-09-29 17:12:32 -04:00
Sean Yesmunt
dd5636c2b3
prevent multiple claim_search's happening on the homepage
2020-09-29 17:12:32 -04:00
Sean Yesmunt
707abdd280
move lbc symbol to left of amount
2020-09-29 17:12:32 -04:00
Sean Yesmunt
4facd12c7c
dont' show youtube intro for abandoned youtube syncs
2020-09-29 17:12:32 -04:00
Sean Yesmunt
65dfd54cdd
icon tweaks
2020-09-29 17:12:32 -04:00
Sean Yesmunt
edc30ce8bd
fix icon shrinking on snackbars with a lot of text
2020-09-29 17:12:32 -04:00
Sean Yesmunt
86003c73a3
handle comment reply notifications
2020-09-29 17:12:32 -04:00
Sean Yesmunt
b3d8a82897
fix page size for large screen tile layout
2020-09-29 17:12:32 -04:00
Sean Yesmunt
30e18a2d99
fix rebase
2020-09-29 17:12:32 -04:00
Sean Yesmunt
35d959208a
fix first comment on claim not showing instantly
2020-09-29 17:12:32 -04:00
Sean Yesmunt
cdd0a3c96f
no max width on comment channel selector
2020-09-29 17:12:32 -04:00
Sean Yesmunt
0bb129e7a6
keep 'hide replies' button always
2020-09-29 17:12:32 -04:00
Sean Yesmunt
acea7d75fb
fix double card on related content
2020-09-29 17:12:32 -04:00
Sean Yesmunt
3b9f5c17f7
fix mobile wrapping on claim list header
2020-09-29 17:12:32 -04:00
Sean Yesmunt
c049274e0e
improve comment reply spacing
2020-09-29 17:12:32 -04:00
Sean Yesmunt
f547053ebc
add yotube sync to initial sign up flow
2020-09-29 17:12:32 -04:00
Sean Yesmunt
baafd60f4f
add back help margin
2020-09-29 17:12:32 -04:00
Sean Yesmunt
295fec0370
copy changes
2020-09-29 17:12:32 -04:00
Sean Yesmunt
bc89d774ba
add youtube sync to first run
2020-09-29 17:12:32 -04:00
Sean Yesmunt
dec63d7a2e
fix lbc svg rendering issues on chrome mobile
2020-09-29 17:12:32 -04:00
Sean Yesmunt
28e27e937d
new lbc icon
2020-09-29 17:12:32 -04:00
Sean Yesmunt
83a6589cd0
new lbc icon
2020-09-29 17:12:32 -04:00
Sean Yesmunt
c9d7b46372
alignment fixes
2020-09-29 17:12:32 -04:00
Sean Yesmunt
d3a8cb31ae
allow continue from channel follow intro with 1 channel
2020-09-29 17:12:32 -04:00
Sean Yesmunt
5014b1a027
fix notification linking to channel page
2020-09-29 17:12:32 -04:00
Sean Yesmunt
37f18abb26
copy
2020-09-29 17:12:32 -04:00
Sean Yesmunt
e0914c68e3
copy
2020-09-29 17:12:32 -04:00
Sean Yesmunt
b26b143c31
fix comment redirect for unauth users
2020-09-29 17:12:32 -04:00
Sean Yesmunt
37383953fa
use fake input for channel creation prompt in comments
2020-09-29 17:12:32 -04:00
Sean Yesmunt
6e80dbba04
use check icon on snackbars with no errors
2020-09-29 17:12:32 -04:00
Sean Yesmunt
11c797fa0c
Get x LBC => Claim x LBC
2020-09-29 17:12:32 -04:00
Sean Yesmunt
7e8b2bb184
first run improvements + kill first follow modal
2020-09-29 17:12:32 -04:00
Sean Yesmunt
61b6c19320
add empty comments message
2020-09-29 17:12:32 -04:00
Sean Yesmunt
d434e62673
ensure close button always does something on authPage
2020-09-29 17:12:32 -04:00
Sean Yesmunt
3f32f5a0ca
make sure notifications aren't hidden
2020-09-29 17:12:32 -04:00
Sean Yesmunt
14355ed966
fix copy
2020-09-29 17:12:32 -04:00
Sean Yesmunt
49a7f30f45
fix loading state for tile layout
2020-09-29 17:12:32 -04:00
Sean Yesmunt
a386b4dc7e
make sure auto subscribe works with empty value in config
2020-09-29 17:12:32 -04:00
Sean Yesmunt
8af8a97344
fix typo
2020-09-29 17:12:32 -04:00
Sean Yesmunt
6602f0505e
copy
2020-09-29 17:12:32 -04:00
Sean Yesmunt
1f2fabe81b
Use sentence case for all card titles
2020-09-29 17:12:32 -04:00
Sean Yesmunt
7f6ab894d1
create YrblWalletEmpty for generic yrbl with empty wallet message
2020-09-29 17:12:32 -04:00
Sean Yesmunt
391cc76bd8
use consitent style for 'empty wallet' message on pages that require LBC
2020-09-29 17:12:32 -04:00
Sean Yesmunt
a5107f075c
wip with channel prompts on comments
2020-09-29 17:12:32 -04:00
Sean Yesmunt
5beb219ff6
fix notification link to comment not working in some cases
...
the router scroll handling was interefering. I turned that off if exists as a search param
2020-09-29 17:12:32 -04:00
Sean Yesmunt
87247feb23
copy
2020-09-29 17:12:32 -04:00
Sean Yesmunt
88fac1b30b
copy changes
2020-09-29 17:12:32 -04:00
Sean Yesmunt
b8430e34bf
fix slim channel selector size
2020-09-29 17:12:32 -04:00
Sean Yesmunt
5ac404c01a
comment cleanup
2020-09-29 17:12:32 -04:00
Sean Yesmunt
2dee81b624
Sign In => Log in
2020-09-29 17:12:32 -04:00
Sean Yesmunt
248e578422
new comments
2020-09-29 17:12:32 -04:00
Sean Yesmunt
b4106b1a65
fix library page for new ClaimListDiscover styling
2020-09-29 17:12:32 -04:00
Sean Yesmunt
61b1ca89d3
first run cleanup + sync first run acknowledgements
2020-09-29 17:12:32 -04:00
Sean Yesmunt
19fb7d7f06
new layout 🕺
2020-09-29 17:12:32 -04:00
infiinte-persistence
02d2962004
MarkdownPreview: Replace 'lbry://' link with a stub when previewing an edit.
...
## Issue
4797: Markdown preview breaks when using a lbry link in angle brackets
This is similar to the Embed case in commit dbcd677e
.
## Change
Replaced it with a dummy link that looks like what the final outcome would be, but would not be clickable.
Again, similar to the embed case, unless there is a way to pass the store over, I don't have an alternative that makes sense: Adding a dummy router or replacing it as a regular <a> will just make React spew security errors.
Not being able to click it is not ideal as we (as a user) can't verify our links, but it's better than the current case of not rendering anything at all.
2020-09-29 12:11:25 -04:00
jessop
389fce161c
advise users to check email folders on sign in
2020-09-25 11:16:09 -04:00
Sean Yesmunt
14113f3c35
handle external pinned links
2020-09-23 11:01:56 -04:00
Sean Yesmunt
51214bd246
add back pinned sidebar links
2020-09-22 18:35:13 -04:00
Sean Yesmunt
65f1339630
bump lbry-redux/inc + bring in fix from release branch
2020-09-21 14:11:25 -04:00
jessop
2403187917
clearer preference merge code?
2020-09-21 14:11:25 -04:00
jessop
df13f97588
sync error messaging
2020-09-21 14:11:25 -04:00
jessop
ee1a37a806
password error handling
2020-09-21 14:11:25 -04:00
jessop
9127266956
get sync password out of signing flow
2020-09-21 14:11:25 -04:00
jessop
99955ba59c
password fix 2
2020-09-21 14:11:25 -04:00
jessop
5f54469971
fix race condition
2020-09-21 14:11:25 -04:00
jessop
3b23f09bed
fix sync clean wallet bug
...
remove previous changes,keep syncpref in wallet, change anon wallet pref key to local
sync choices wip
dont relocate syncenable setting
bump
no prefs on web unauth
bugfix redux bump
pull after sync change
bump
2020-09-21 14:11:25 -04:00
Sean Yesmunt
2ad7088553
Revert "bump lbry-redux/inc + bring in fix from release branch"
...
This reverts commit 70284e5dfd
.
2020-09-21 13:07:09 -04:00
Sean Yesmunt
70284e5dfd
bump lbry-redux/inc + bring in fix from release branch
2020-09-21 13:06:29 -04:00
infiinte-persistence
6a73e02bf1
Fix "Price=free" giving 0 results in Following query
...
## Issue
Fixes 4477: `Price="free" yields nothing`
## Remarks
I didn't consult the documentation, but simply did a trial-and-error.
"=0" -- didn't work
"<=0" -- works
2020-09-21 12:22:33 -04:00
kasramp
0d3d3f49e4
Add Persian language to upload menu language dropdown
2020-09-21 12:13:21 -04:00
infiinte-persistence
631b069f9a
Missing translation in the Discover page.
2020-09-21 11:57:16 -04:00
Sean Yesmunt
ccd1cabe04
add option for light background on embeds
2020-09-21 11:38:56 -04:00
Sean Yesmunt
153a17af72
bring in websocket reconnect code from 'release' branch
2020-09-17 12:40:08 -04:00
infiinte-persistence
dbcd677e69
MDE: Replace the iframe with a stub in "edit + preview" mode.
...
## Issue
4644: Markdown Preview breaks when <iframe> is present
Error: "Invariant violation: could not find 'store' ..."
## Change
Until we figure out a way to pass the store to the SimpleMDE preview formatter, just replace the embed with a stub region.
2020-09-16 16:15:27 -04:00
infiinte-persistence
5106ba59f6
FloatingPlayer: Run clamp-to-screen code when going into floating mode.
...
## Issue
The previous code only handled the clamping if the FP is already floating when the main window is resized.
1. In fresh Odysee session, the floating player is always clipped on the right.
2. If you resize the desktop while not floating, the FP could be clipped when you go into floating mode.
## Changes
- Factor out the clamping code.
- Add another effect to handle 'isFloating' changes.
2020-09-15 12:55:12 -04:00
infiinte-persistence
6f515ac5f4
String update
2020-09-15 12:55:12 -04:00
infiinte-persistence
4fc5a018e5
Clear 'passwordSet*' flags too in USER_PASSWORD_SET_CLEAR
...
## Issue
4749: "Password updated successfully" kept showing up
## Change
In addition to the `passwordReset*` variables, reset the `passwordSet*` variables as well for `USER_PASSWORD_SET_CLEAR`.
2020-09-15 12:52:12 -04:00
infiinte-persistence
ebdf9c1b11
Fix incorrect icon for 'Sign Up' and 'Sign In'
2020-09-15 12:50:49 -04:00
Jeremy Kauffman
9c6b7bd280
add languages parameter to ClaimTilesDiscover
2020-09-11 14:21:02 -04:00
Sean Yesmunt
a8c19818ed
add back sign in link on desktop
2020-09-11 12:41:04 -04:00
jessop
b5dccced6d
bugfix
2020-09-10 14:20:02 -04:00
jessop
6c4842a111
sync changes
2020-09-10 14:20:02 -04:00
ioancole
bb9bde1c19
Encode automplete search string and don't autocomplete for empty query
2020-09-10 13:36:33 -04:00
ioancole
055a476d2f
Hide search page URI header for invalid channel/stream name
2020-09-10 13:36:33 -04:00
ioancole
4add1f7200
Refactor wunderbar index/view and encode search query
2020-09-10 13:36:33 -04:00
Sean Yesmunt
c80b28ade9
Revert "Hiding URIs header for invalid URIs"
...
This reverts commit 8f407a36d4
.
2020-09-10 11:30:55 -04:00
Sean Yesmunt
80707a37df
Revert "Refactor wunderbar index/view and encode search query"
...
This reverts commit 323ab43889
.
2020-09-10 11:30:55 -04:00
Sean Yesmunt
813ef0e960
Revert "Encode autocomplete search query"
...
This reverts commit 7f8d084fa4
.
2020-09-10 11:30:55 -04:00
Sean Yesmunt
cb0918726e
Revert "Don't autocomplete for empty string search"
...
This reverts commit 72187ca51e
.
2020-09-10 11:30:55 -04:00
ioancole
72187ca51e
Don't autocomplete for empty string search
2020-09-10 11:08:22 -04:00
ioancole
7f8d084fa4
Encode autocomplete search query
2020-09-10 11:08:22 -04:00
ioancole
323ab43889
Refactor wunderbar index/view and encode search query
2020-09-10 11:08:22 -04:00
ioancole
8f407a36d4
Hiding URIs header for invalid URIs
2020-09-10 11:08:22 -04:00
infiinte-persistence
e784107a0b
FloatingPlayer: Stay within screen when window is resized
...
## Issue
4741: `Pop out player disappears or is cut off`
## Approach:
- When dragging stops, determine the location of the floating player with respect to the main window in terms of percentage.
- When window is resized, roughly re-position based on the stored percentage.
2020-09-10 11:06:35 -04:00
infiinte-persistence
ddfc2a54b8
FloatingPlayer: Minor function-renaming for clarity
2020-09-10 11:06:35 -04:00
infiinte-persistence
8e76fee162
String: Usual updates
2020-09-10 11:06:35 -04:00
Sean Yesmunt
bba539f846
Revert "Revert "add logging of player point of presence""
...
This reverts commit 4067e1ffd8
.
2020-09-09 14:55:16 -04:00
Sean Yesmunt
799c0c1f11
quick comment fix while waiting for release branch to be merged into master
2020-09-09 14:54:29 -04:00
Sean Yesmunt
4067e1ffd8
Revert "add logging of player point of presence"
...
This reverts commit fb142f7699
.
2020-09-09 14:40:43 -04:00
Jeremy Kauffman
fb142f7699
add logging of player point of presence
2020-09-09 10:48:15 -04:00
jessop
f04cebd7b5
custom share domain defaults to url
2020-09-08 15:09:21 -04:00
infiinte-persistence
dd73e4a164
Translator-found missing strings
2020-09-08 12:17:38 -04:00
infiinte-persistence
202269ebeb
Web: Fix 'Download' not triggering until second attempt
...
## Issue
4669: `Download doesn't trigger on web until 2nd attempt`
The issue only happens when _Autoplay_ is disabled in the User Settings and the video hasn't been loaded when _Download_ is clicked.
The following code:
`if (didClickDownloadButton && streamingUrl)`
didn't triggered because:
1. `streamingUrl` has not resolved yet when the Effect ran.
2. When it did resolve, the parent component was also notified and unmounted things, causing `didClickDownloadButton` to reset.
## Approach
Avoid the unnecessary unmounting by not using a conditional section wrapper within a return statement. React probably couldn't do the diffs when the conditional is at a section level.
2020-09-04 11:52:38 -04:00
infiinte-persistence
d1db6fb3b3
Block Toast untranslated strings
2020-09-04 11:51:31 -04:00
infiinte-persistence
7edd9f7c92
Fix partially untranslated text in the Upgrade Modal
...
## Issue
- "See the" was not encapsulated with the translation macro.
- Split-strings are not translatable for some languages.
## Change
Combine the entire sentence into a single string with variable.
2020-09-04 11:51:31 -04:00
infiinte-persistence
a0df0a0e0a
Sidebar: Bring back the "Followed Tags" list
...
## Issue
4708: Bring back tag list in side bar when Tags view selected
## Approach
- Instead of displaying either Channels or Tags, both will now be displayed.
- The tags will simply be a the same button component as the "channels", but with a "#" prefix. This simplifies the CSS-side changes, and looks better overall as well.
2020-09-04 11:50:02 -04:00
Mark Beamer Jr
6485e1af82
Add lbry apis to config
2020-09-03 12:58:29 -04:00
Sean Yesmunt
404f0dc195
fix first comment on post failing even when it is created successfully
2020-09-01 20:27:52 -04:00
Thomas Zarebczan
20f932f935
add comment stats to creator analytics
...
+ fix up other minor issues and added weekly change figure to recent content
app strings
2020-08-31 14:34:41 -04:00
jessop
ee217404da
provide share domain url configuration
2020-08-31 11:51:25 -04:00
ioan.cole
254a2f5138
Refactor search.js
...
Calling 'normalizeURI' then 'parseURI' needlessly runs the 'parseURI' function twice. This is a better way of doing it.
2020-08-31 11:25:32 -04:00
ioancole
3f598f76d1
Fix search suggestions 'View Channel' Bug
2020-08-31 11:25:32 -04:00
jessopb
3a69f47347
quick fix for sync ( #4718 )
2020-08-28 11:25:47 -04:00
Sean Yesmunt
df9a19a9b4
always send integers to buffer api
2020-08-27 14:18:45 -04:00
infiinte-persistence
2e1d7fde1a
Fix floating player being paused after dragging.
...
## Issue
Fixes 4709 `Dragging floating player via video section pauses video`
## Changes
Don't propagate the key-up action if the window was dragged. Hopefully there isn't another sub-component that relies on the action being propagated.
## Note
If you drag at exactly the "Play" icon the control bar, the issue still happens.
2020-08-27 13:59:25 -04:00
infiinte-persistence
de780a1fd8
Remove strings with trailing spaces as it's not obvious in Transifex.
...
## Issue
Fixes 4665 `Translated strings with trailing spaces not shown correctly`
## Changes
While there are other strings with trailing spaces, "Trending for " was the only one that mattered. The rest are standalone paragragphs or used in a single line, so it doesn't matter if the translation included the space or not.
2020-08-27 13:58:44 -04:00
Sean Yesmunt
6377dc86e0
fix side navigation scroll behavior on mobile
2020-08-26 11:01:33 -04:00
jessop
4a86d25891
fix react dom warning passing hideForUnauth
2020-08-26 10:25:36 -04:00
Sean Yesmunt
bae146205c
fix card width on rewards page
2020-08-25 14:07:12 -04:00
Sean Yesmunt
23dfddefa1
fix extra padding on unseen notifications
2020-08-25 12:25:25 -04:00
Sean Yesmunt
a28ce2d3b8
pass 'only_if_expired: true' so clicking 'resend link' doesn't expire old tokens
2020-08-25 12:25:25 -04:00
Sean Yesmunt
4035c18f8e
Publishes => Uploads
2020-08-25 12:25:25 -04:00
Sean Yesmunt
b9fd01d7b3
fix 'Related' title size on small/medium screens
2020-08-25 12:25:25 -04:00
Sean Yesmunt
22586c802c
revert redirect after signin until we can signin users from verfication token
2020-08-25 12:25:25 -04:00
jessop
c78e1e2970
patch null blocked error
2020-08-25 09:53:22 -04:00
btzr-io
353c57a568
fix #4686
2020-08-25 09:51:13 -04:00
Jeremy Kauffman
f201039772
copy changes made on call
2020-08-24 18:23:38 -04:00
Thomas Zarebczan
a1f5292e57
Increase polling interval (makes app lag)
2020-08-24 16:08:14 -04:00
Jeremy Kauffman
aff2ddd04d
adjust account validation text
2020-08-24 15:39:59 -04:00
Sean Yesmunt
9ee4b256fb
add mark as seen to notifications
2020-08-21 16:04:27 -04:00
sanabhass
2ae3484363
Support for auto-detection of direction for component with varying content
2020-08-21 11:50:40 -04:00
Sean Yesmunt
cf98e65a3f
redirect to homepage after signing in
2020-08-21 11:47:41 -04:00
Sean Yesmunt
e0e33eb148
additional copy changes
2020-08-21 11:47:41 -04:00
Sean Yesmunt
7e35de3760
Register => Sign Up
2020-08-21 11:47:41 -04:00
Sean Yesmunt
764af3a5db
wrap IS_MAC statements inside app ifdef
2020-08-21 11:47:41 -04:00
Sean Yesmunt
ea2d040c22
increase side nav width and give extra bottom padding to deal with link preview
2020-08-20 22:33:13 -04:00
Sean Yesmunt
b688fc1cc0
use 'Library' label instead of 'Purchased' on desktop
2020-08-20 22:33:13 -04:00
Sean Yesmunt
3ca847ece3
show lbry link on share dialog for channels
2020-08-20 22:33:13 -04:00
Sean Yesmunt
082ee187da
hide side navigation scrollbar until hover
2020-08-20 22:33:13 -04:00
Sean Yesmunt
7b23126379
fix side navigation on mac
...
mac has an extra header height to handle the top level menu buttons
2020-08-20 22:33:13 -04:00
Sean Yesmunt
fd778adf99
remove 2020protests from the homepage
2020-08-20 11:31:35 -04:00
Sean Yesmunt
84084a7c41
use limit_claims_per_channel on homepage
2020-08-20 11:31:35 -04:00
Sean Yesmunt
17feef93df
add back sign out link on mobile
2020-08-20 11:14:51 -04:00
Sean Yesmunt
4ebb463508
add back sign in link on desktop
2020-08-20 11:14:51 -04:00
Sean Yesmunt
33d47d1d6d
default sync to false on desktop
2020-08-20 01:38:48 -04:00
Sean Yesmunt
cc1a8ca4e8
fix navigation button spacing
2020-08-20 01:38:48 -04:00
Franco Montenegro
cbfed97853
Add app closing behavior setting
2020-08-20 01:16:11 -04:00
Sean Yesmunt
005cf1d52b
fix url creation typo
2020-08-19 17:40:12 -04:00
Sean Yesmunt
6ca0796c8a
handle google webcache urls
2020-08-19 17:28:08 -04:00
Sean Yesmunt
f5de744641
only show notification bubble in menu button on mobile
2020-08-19 12:50:12 -04:00
Sean Yesmunt
c0053a772b
fix mobile video alignment
2020-08-19 10:02:00 -04:00
Sean Yesmunt
3b4ac976b6
Revert "full width homepage"
...
This reverts commit 0018fdaebc
.
2020-08-18 12:53:07 -04:00
Sean Yesmunt
36067417f5
Revert "move click listener to app only for external links"
...
This reverts commit b58c9709e2
.
2020-08-18 12:53:07 -04:00
Sean Yesmunt
f688402748
align page contents with header width
2020-08-18 10:17:53 -04:00
infiinte-persistence
f3362c4e59
Publish: Make 'Channel' setting persistent.
...
## Issue
Users are annoyed with the constant reset of the 'channel' setting in the Publish page.
## Changes
1. Revert the previous attempt in ff7b4092
. The `usePersistedState` method is bad, as it will clash with the Redux value.
2. Implemented the persistence in Redux -- requires "https://github.com/lbryio/lbry-redux/pull/347 ".
2020-08-18 09:25:57 -04:00
Sean Yesmunt
b58c9709e2
move click listener to app only for external links
2020-08-18 09:25:36 -04:00
Sean Yesmunt
0018fdaebc
full width homepage
2020-08-18 09:25:36 -04:00
Sean Yesmunt
0ec569f020
only redirect on show page if in lbry.tv land
...
Fixes crash when app is served from webcache.googleusercontent.com
2020-08-17 23:42:16 -04:00
Baltazar Gomez
d2ca72e246
remove debug comment
2020-08-13 11:11:23 -04:00
Baltazar Gomez
c397297dfb
remove debug comment
2020-08-13 11:11:23 -04:00
btzr-io
f881f3b1c6
fix WebFile flow type
2020-08-13 11:11:23 -04:00
btzr-io
2d47dd1780
fix fileReader flow errors
2020-08-13 11:11:23 -04:00
btzr-io
334f582a4d
fix publishForm flow errors
2020-08-13 11:11:23 -04:00
infiinte-persistence
b49df1fc0a
Fix translation failure on the Sidebar
...
## Issue
The sidebar text stuck in English despite already translated.
I'm guessing the i18n macro only ran once for the global object.
## Change
Run the macro on the label when passing it to the `Button`.
2020-08-13 11:10:08 -04:00
Sean Yesmunt
717de53eb1
force footer to sit below file page contents
2020-08-12 17:23:04 -04:00
Sean Yesmunt
abbaa8bf78
always batch resolve search results
2020-08-12 13:03:00 -04:00
Sean Yesmunt
2db2b870ff
fix document layout and remove WaitUntilOnPage wrapper for related content
2020-08-12 11:47:00 -04:00
jessopb
1471511c03
Revert "check matomo and disable if necessary"
...
This reverts commit f88b98ea62
.
2020-08-12 11:04:38 -04:00
Sean Yesmunt
a31f14b016
cleanup
2020-08-11 17:04:14 -04:00
Sean Yesmunt
692862c769
collapsable sidebar initial commit
2020-08-11 17:04:14 -04:00
jessop
f88b98ea62
check matomo and disable if necessary
2020-08-11 16:47:56 -04:00
Thomas Zarebczan
7b504b5fa7
update invalid symbols
2020-08-11 11:30:23 -04:00
jessop
c0be817960
support sdk feature for fast comments
2020-08-10 14:52:17 -04:00
Sean Yesmunt
2f995be794
use new buffer analytics api
2020-08-07 22:54:29 -04:00
infiinte-persistence
e5b1177644
Patch 37a1fd88
: Sync selectedChannel only if the channel doesn't exist
...
## Issue
The previous commit was over-doing the manual syncing, causing other usages like the Repost Modal to always reset to a different channel.
## Fix
Only do the manual syncing when the channel does not exist.
At this point, we could also just take `channel[0]` as the new value.
2020-08-07 16:28:41 -04:00
Sean Yesmunt
e64d925086
fix alignment
2020-08-07 16:28:09 -04:00
Sean Yesmunt
1854710093
fix app crash when file name can't be found
2020-08-07 16:28:09 -04:00
Sean Yesmunt
c4e6605ada
use button group as publish file header instead of title for better app parity
2020-08-07 16:28:09 -04:00
Baltazar Gomez
3da4df6b8f
increase max chars limit of post editor
2020-08-05 21:37:00 -04:00
Baltazar Gomez
2089a0064f
add new chars limit for post
2020-08-05 21:37:00 -04:00
jessop
5f5203a211
put file properties such as type and duration over thumb
2020-08-05 14:59:04 -04:00
infiinte-persistence
c75bab5979
Tip Modal: Don't do final submit when the intention is to create New Channel.
...
## Issue
Fixes `4544 Channel-creation in "Tip|Support" Modal shouldn't submit LBC immediately`
## Changes
`Form` seems to have already tried to stop the propagation of `onSubmit`, so I'm not sure why it was still propagated.
Fix by using the same method used in the `CommentCreate`, which is simply to check for `CHANNEL_NEW` as the current selection.
2020-08-05 13:01:29 -04:00
infiinte-persistence
37a1fd88e3
selectChannel: sync auto-resolved value during mounting.
...
## Issue
Fixes `4621 Can't create Comments if you recently deleted a channel`
The `channel` that the parent passes in is from a persisted state. If the channel has been deleted, `<select>` will automatically resolve to another selectable value. However, `onChange` will not be called for this scenario, so we now have a mismatch.
## Changes
- Manually check if the value has been auto-resolved and report it to the parent.
- An extra `setTimeout` was needed. It seems like `onChannelChange` needs to be called after the first `useEffect` of the parent, otherwise the call has no effect.
2020-08-05 12:59:54 -04:00
Baltazar Gomez
d64d278676
fix metadata not updating if post content doesn't change
2020-08-05 12:57:49 -04:00
jessop
ab56633eed
prevent specific settings sync in config
2020-08-04 12:00:20 -04:00
Sean Yesmunt
42e989d0cc
always use markdown editor for text posts
2020-08-04 11:49:12 -04:00
btzr-io
036aedd88d
use redux to load post content
2020-08-04 11:49:12 -04:00
btzr-io
80e1965e46
prevent name change while editing and more fixes
2020-08-04 11:49:12 -04:00
btzr-io
8067793379
fix reselect file error
2020-08-04 11:49:12 -04:00
btzr-io
0f757bc101
fix typo
2020-08-04 11:49:12 -04:00
btzr-io
d93d97882b
fix auto populate title logic
2020-08-04 11:49:12 -04:00
btzr-io
0b3fe001d0
autopopulate name from title
2020-08-04 11:49:12 -04:00
btzr-io
a565f7c5df
fix labeling and rename some strings
2020-08-04 11:49:12 -04:00
btzr-io
18a6e7c7c1
generate temporal file for published story
2020-08-04 11:49:12 -04:00
btzr-io
c47c6f6034
fix story validation and content loading on web
2020-08-04 11:49:12 -04:00
btzr-io
c7ea2a14ad
fix web version build
2020-08-04 11:49:12 -04:00
btzr-io
9fc2384649
fix changes not saving on edit mode
2020-08-04 11:49:12 -04:00
btzr-io
2ff1fc024c
load story content from streaming url and improve form validation + minor fixes
2020-08-04 11:49:12 -04:00