Toby Zerner
f820a62ec9
Remove core key reorganization comments
2015-09-24 14:22:32 +09:30
dcsjapan
cfb4406b55
Primary key renaming
...
Improved consistency for existing core translation key names.
See flarum/core#265
- Completely overhauled core en.yml
- Replaced existing key names in all core JS files to match
- Extracted a hardcoded string in IndexPage.js
- Combined two app.trans calls in DiscussionControls.js
- Removed hardcoded spaces from LogInModal.js and SignUpModal.js
- Added two new keys from DiscussionControls.js (soft delete)
- Created two new “reused keys” to YML to accommodate same
2015-09-23 14:58:33 +09:00
Toby Zerner
3ac9efde3e
Allow discussions to be hidden and restored
2015-09-22 17:48:21 +09:30
Toby Zerner
c61d2dfc27
Redraw old data after unsuccessful save
2015-09-22 17:23:28 +09:30
Toby Zerner
0cf973ced9
Patch Mithril with a route shortcut attribute
...
Instead of:
<a href={app.route.user(user)} config={m.route}>
We can use:
<a route={app.route.user(user)}>
2015-09-22 17:09:38 +09:30
Toby Zerner
a184577877
Keep post actions visible when controls dropdown is open
...
Also show without hover on touch devices
2015-09-22 17:05:14 +09:30
Toby Zerner
2976541d5c
Add "Debug" button to inspect the response of a failed AJAX request
...
Related to #118
2015-09-18 16:46:46 +09:30
Toby Zerner
362afd1bd2
Clean up
2015-09-18 13:29:50 +09:30
Toby Zerner
9544d7dd6a
Patch Mithril with a bidi attribute
...
Enables quick bidirectional bindings. So instead of this:
<input value={prop()} oninput={m.withAttr('value', prop)}/>
... we can do this:
<input bidi={prop}/>
2015-09-18 13:06:37 +09:30
Franz Liedke
80558401b1
Move dropdown mouseover to correct location
...
Related to #496 .
2015-09-16 09:00:33 +02:00
Franz Liedke
91a31e0149
Always use label as tooltip for header icons
...
Closes #496 .
2015-09-16 08:45:45 +02:00
Toby Zerner
60388236cf
Copy properties when monkey-patching
2015-09-16 16:03:25 +09:30
Toby Zerner
5cac0382b7
Don't use a default dropdown label
2015-09-16 10:12:49 +09:30
Toby Zerner
1059147e6c
Add external authenticator (social login) API
...
Allows registrations to be completed with a pre-confirmed email address
and no password.
2015-09-15 11:27:31 +09:30
Toby Zerner
27d020f86b
Improve API error handling
...
- Change 'path' key to 'source.pointer', as per spec
- Add 500 error detail if debug mode is on
2015-09-14 15:40:07 +09:30
Toby Zerner
41898f10d2
Only set XHR authorization header if token isn't empty
2015-09-14 14:49:11 +09:30
Toby Zerner
ca53a63fd8
Make unread discussion titles less overwhelming
2015-09-08 10:27:50 +09:30
Toby Zerner
76d0e7770c
Add init hook as a way to effectively monkey patch constructors
...
Related to #246
2015-09-08 10:27:02 +09:30
Toby Zerner
6cce84e8c1
Remove unused translations
2015-09-05 16:05:02 +09:30
Toby Zerner
ff993c99a4
Correct check that a translation is an object
...
typeof translation === 'object' returns true when translation is null
2015-09-04 12:19:02 +09:30
Toby Zerner
39c3b468dc
Prevent ItemList crash when item is a number
2015-09-04 12:17:01 +09:30
Toby Zerner
601f7adb0f
Allow non-array value to be passed into listItems
...
Useful in some scenarios when using JSX
2015-09-04 12:16:23 +09:30
Toby Zerner
c373065ab1
Move generic util into lib
...
Might come in handy for the admin section later on
2015-09-04 12:15:41 +09:30
Toby Zerner
4545673455
Make Dropdown and NotificationsDropdown components more extensible
2015-09-04 12:15:11 +09:30
Toby Zerner
9c8063ecf4
Make a copy of props passed into a component
...
Prevents some rare errors where the props object is read-only, and is
generally safer.
2015-09-04 12:13:55 +09:30
Franz Liedke
588dc96685
Add a first empty state to the discussion list
2015-09-03 09:59:33 +02:00
Toby Zerner
4ed5ff5608
Remove redundant call
2015-09-01 10:08:37 +09:30
Toby Zerner
6bad43e80b
Use GroupBadge component to display user badges
...
closes #277
2015-08-31 13:44:05 +09:30
Toby Zerner
71d3a1df33
Refactor start/endComputation into lazyRedraw method
2015-08-31 12:04:51 +09:30
Toby Zerner
ad3f4ff718
Remove <script> tags from plain post content
...
closes #362
2015-08-31 10:49:24 +09:30
Toby Zerner
616d3e30ee
Allow string primitives to be added to ItemLists
2015-08-29 15:25:36 +09:30
Toby Zerner
f331f1d07d
Fix JS docblock
2015-08-26 17:11:54 +09:30
Toby Zerner
941479edb8
Begin JavaScript cleanup
2015-08-26 16:56:33 +09:30
Toby Zerner
0979139d67
Monkey patch mithril so we can use JSX component syntax
...
<Alert foo="bar"/> instead of Alert.component({foo: 'bar'})
2015-08-26 16:56:32 +09:30
Toby Zerner
4d164d2e55
Fix some front-end bugs
2015-08-14 12:50:39 +09:30
Toby Zerner
ae57be6e4f
Prevent badge tooltips from being cut off
...
By overflow in the notifications dropdown. closes flarum/core#228
2015-08-13 13:01:13 +09:30
Toby Zerner
0e1948cd3a
Support running in subdirectory with base_path config
2015-08-13 12:58:59 +09:30
Toby Zerner
a34cebd94b
Improve extensions page
...
- Allow extensions to define an icon in their flarum.json
- Show a "please wait" modal when enabling/disabling an extension
- Styling tweaks
2015-08-07 08:51:03 +09:30
Toby Zerner
7afe25dbd5
Clean up
2015-08-06 16:00:22 +09:30
Toby Zerner
dd39a6b36b
Reload page on login
...
closes flarum/core#145
2015-08-06 15:04:20 +09:30
Toby Zerner
b42cbc761a
Remove blockquotes from post previews
...
Closes flarum/core#144
2015-08-06 13:28:26 +09:30
Toby Zerner
15019fc0ab
Tweak dropdown caret margins
2015-08-05 19:21:00 +09:30
Toby Zerner
d8a6c9be32
Allow extension of functions that may not be defined
2015-08-05 19:20:49 +09:30
Toby Zerner
cc13b97c4e
Focus on the first input too, in case it's not a text field
2015-08-05 16:07:43 +09:30
Toby Zerner
a323efa410
Disable "start discussion" button if no permission
2015-08-05 16:06:25 +09:30
Toby Zerner
ebf57c389e
Still set username if user is undefined
...
Fixes "Started 12 hours ago by undefined" on discussion author avatar
tooltip
2015-08-05 12:17:36 +09:30
Toby Zerner
4d2aac7645
Implement edit user modal
...
EditUserHandler is a bit rough
2015-08-05 11:49:37 +09:30
Toby Zerner
69726844d7
Allow locale to be selected in footer
2015-08-05 09:50:57 +09:30
Toby Zerner
145b0fb1dc
Add an API to show a count in the document title
2015-08-04 19:04:17 +09:30
Toby Zerner
d5296e9aa5
Radically simplify user activity system
...
The activity system we were using was built around a separate table.
Whenever the user posted something, or deleted a post, we would sync
the table. The advantage of this was that we could aggregate activity
of all different types very efficiently.
It turns out that it came with a huge disadvantage: there was no
efficient way to enforce permissions on activity. If a user posted
something in a private tag, everyone could still see it on their
activity feed. My stopgap solution was to only sync activity for posts
that are viewable by guests, but that was way too limited.
It also turns out that aggregating activity of different types is
really not that useful, especially considering most of it is the user
making posts. So I've gotten rid of that whole overly-complicated
system, and just made the user profile display separate lists of posts
and discussions, retrieved from those respective APIs. The discussions
page is an actual discussion list too, which is pretty cool.
It's still technically possible to aggregate different activity types
(basically just aggregate API responses together), but we can do that
later if there's a need for it.
This is probably my favourite commit of the day :)
2015-08-04 18:44:22 +09:30