* Post scheduling
Adds simple input for scheduling a post x minutes in the future.
Do you want to pull in a date picker library for this?
See https://github.com/LemmyNet/lemmy/pull/5025
* lint
* add date picker
* Adding i18n, and fixing some fields (#2694)
* fix edits
* cleanup
---------
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
* Fixing titleOnly, PostSort, and CommentSort.
* SortType, Tagline, Emojis (#2718)
* PostSortType
* Hide post sort types in comment view
* Tagline
* CustomEmoji
* Update lemmy-js-client to 0.20.0-alpha.17
* Prompt before leaving unsaved forms
* Add cancel buttons, only create taglines when saving
* Cleanup SortSelect
* Use markdown url for custom emojis
This prevent SSR and CSR from rendering different images after changing
the image of an emoji, already posted emojis will keep showing the old
image. This will also display the same image on different instances that
have overlapping custom emojis.
* Cleanup EmojisForm sorting
* Use existing CommentSortSelect
* Simpler sort type conversion
---------
Co-authored-by: matc-pub <161147791+matc-pub@users.noreply.github.com>
* Adding a post title only filter to the search page.
- Also fixing restore data on unban.
- Accounting for newly removed block views.
* Only show post title button for All and Post searches.
* Addressing PR comments.
* Fix tribute
* Group modals into common directory
* Make display modal
* Make registration applications viewable
* Remove potential crash
* Add translations
* Updating translations.
* Adding a link to view all a user's moderation history from an item.
- Also making moderation history strings more detailed.
* Fix.
* Adding admin view moderation history to profile page.
* Adding a torrent help message.
* Updating translations.
* Updating translations.
* Updating translations.
* Adding a link to view all a user's moderation history from an item.
- Also making moderation history strings more detailed.
* Fix.
* Adding admin view moderation history to profile page.
* Adding admin view moderation history to profile page.
* Remove trending communities card from home.
- This proved after time to be pointless. I thought about keeping the
create and explore communities buttons, but these are already in the
navbar, and so just take up more pointless space.
- Fixes#2027
- Fixes#2007
* Forgot to remove trending loading skeleton.
* Prevent broken logo from crashing site
* Cache icons in memory to make site less vulnerable to DOS attacks
* Swap try and if blocks for apple touch icon
Browsers without size property for URLSearchParams always returned an
empty string.
Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
* Allow create post page form inputs to be populated from query params
* Fix issue with cross post params.
---------
Co-authored-by: Dessalines <tyhou13@gmx.com>
* AdminSettings remove unused currentTab state
* Fix amAdmin check in reports fetchInitialData
* Make CreatePost render earlier
* Include children of auth and anonymous guard in first render.
* Convert DidMount to WillMount where things don't depend on the DOM
`componentDidMount` is called after the first render. A lot of
components used it to call `setState`, which causes a second render.
* Keep route components mounted during same route navigation
Not sure why this wasn't the case without this change. The only
difference here is that the same array is reused in every render.
* Disable mounted same route navigation by default
* Enable mounted same route navigation for some routes
* Render more while loading
* Prettier markup
* Make Post use query params and reload comments independently
* Fix issue with <Prompt /> for forms that remain mounted after "leaving".
* Make Search not rerender the results on every keystroke
* Discard old requests
These used to (mostly) arrive at the old already unmounted components.
Now they would render briefly until the latest response is received.
* Move non breaking space to modlog
* Make show optional for modals
* Fix leap year issue
* Show same cake day date independent of timezone (#2455)
* Show same cake day date independent of timezone
* Remove commented out assertions
---------
Co-authored-by: matc-pub <161147791+matc-pub@users.noreply.github.com>