Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
6c4341e
Update GenericInput style
broskoski Jul 19, 2018
87eb2e3
Make a new authentication app
broskoski Jul 20, 2018
09c0137
Add AuthFormContainer
broskoski Jul 20, 2018
e6e336c
Add AuthLoginForm
broskoski Jul 20, 2018
31caf3d
Add AuthJoinForm
broskoski Jul 20, 2018
7803eb5
Add AuthForgotPasswordForm
broskoski Jul 20, 2018
98bb23f
Make stories
broskoski Jul 20, 2018
42ca447
Update Button and Input styles
broskoski Jul 20, 2018
e387862
Update fragmentTypes and schema
broskoski Jul 21, 2018
9357b1a
Make requestPasswordReset form functional
broskoski Jul 21, 2018
ce2ed29
Change generic button to actual button
broskoski Jul 21, 2018
dd06ef6
Delete old authentication app
broskoski Jul 22, 2018
add19ca
Add authentication app
broskoski Jul 22, 2018
cec325d
Make client-side js work and add pages
broskoski Jul 22, 2018
9b72230
Add forgot password link
broskoski Jul 22, 2018
bc639c3
Use react-router Link in forms
broskoski Jul 22, 2018
7e55752
Make storybook work with react-router
broskoski Jul 22, 2018
e20adad
Split confirmation routes into their own app
broskoski Jul 25, 2018
2bfec0a
Add server routing to authentication app
broskoski Jul 25, 2018
6c86cfa
Handle logouts
broskoski Jul 25, 2018
86e5026
Working mutation on AuthSignUp
broskoski Jul 25, 2018
acc78a9
Fix confirmation app js
broskoski Jul 25, 2018
d806f83
Add InputWithError
broskoski Jul 25, 2018
f77a774
Add per-field error formatting
broskoski Jul 25, 2018
899f4d3
Capitalize string
broskoski Jul 25, 2018
2fbd692
Updates to base UI components
dzucconi Aug 2, 2018
1b4e66e
Utility for dealing with error objects
dzucconi Aug 2, 2018
5caf738
Refactors auth forms
dzucconi Aug 2, 2018
59675de
Fix some of the fallout from UI changes
dzucconi Aug 2, 2018
2b4d3c1
Fixes whitespace
dzucconi Aug 2, 2018
acfb098
Removes example code
dzucconi Aug 2, 2018
418c918
Uses consistent naming
dzucconi Aug 2, 2018
2af20c9
Adds jest
dzucconi Aug 3, 2018
53cf2a2
Removes old folder
dzucconi Aug 3, 2018
03acf23
Adds compactObject
dzucconi Aug 3, 2018
f8d69b2
Fixes remaining UI issues
dzucconi Aug 3, 2018
082444f
Fixes refresh endpoint (and consequently follows)
dzucconi Aug 3, 2018
9d5eb1f
Handles network errors
dzucconi Aug 3, 2018
75aab8f
Fixes up routes to handle invitations
dzucconi Aug 3, 2018
d0e0032
Forces ssr to always resolve
dzucconi Aug 3, 2018
6d8a13b
Fixes rehydration
dzucconi Aug 3, 2018
0c18bb1
Implements invitation acceptance
dzucconi Aug 3, 2018
5d73863
Reset => Forgot
dzucconi Aug 6, 2018
7bcd33c
Roughs in actual password reset
dzucconi Aug 6, 2018
7aa3dbd
Object may not have extensions
dzucconi Aug 7, 2018
5f7ccdc
Makes development errors easier to read
dzucconi Aug 7, 2018
e58650b
Fixes confirmation app
dzucconi Aug 7, 2018
0470bec
Fixes a couple warnings with passed props
dzucconi Aug 7, 2018
f9367cb
Stories a focusable/ref input
dzucconi Aug 7, 2018
0c20fc2
Allows more flexible styling of inputs
dzucconi Aug 7, 2018
3ead31c
Unwrap search input
dzucconi Aug 7, 2018
3c6f4c0
Appropriate method of setting color conditionally
dzucconi Aug 7, 2018
8e2dcbb
Fixes propagation issues by having the default button export be a link
dzucconi Aug 7, 2018
84c0af0
Fixes incorrect prop type
dzucconi Aug 7, 2018
4f74d08
Adds analytics tracking events
dzucconi Aug 8, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes propagation issues by having the default button export be a link
  • Loading branch information
dzucconi committed Aug 7, 2018
commit 8e2dcbb87693b5ee83cf75298e145f2378c3d39d
2 changes: 1 addition & 1 deletion react/components/ForgotPasswordForm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Link } from 'react-router-dom';

import mapErrors from 'react/util/mapErrors';

import Button from 'react/components/UI/GenericButton';
import { GenericButton as Button } from 'react/components/UI/GenericButton';
import Text from 'react/components/UI/Text';
import AuthForm from 'react/components/AuthForm';
import { Input, ErrorMessage } from 'react/components/UI/Inputs';
Expand Down
2 changes: 1 addition & 1 deletion react/components/LoginForm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Link } from 'react-router-dom';
import axios from 'axios';

import AuthForm from 'react/components/AuthForm';
import Button from 'react/components/UI/GenericButton';
import { GenericButton as Button } from 'react/components/UI/GenericButton';
import { mixin as textMixin } from 'react/components/UI/Text';
import { Input, ErrorMessage } from 'react/components/UI/Inputs';

Expand Down
2 changes: 1 addition & 1 deletion react/components/ResetPasswordForm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Link } from 'react-router-dom';

import mapErrors from 'react/util/mapErrors';

import Button from 'react/components/UI/GenericButton';
import { GenericButton as Button } from 'react/components/UI/GenericButton';
import AuthForm from 'react/components/AuthForm';
import { Input, ErrorMessage } from 'react/components/UI/Inputs';

Expand Down
4 changes: 2 additions & 2 deletions react/components/UI/GenericButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ export const GenericButtonLink = styled.a`
${mixin}
`;

const GenericButton = styled.button`
export const GenericButton = styled.button`
${mixin}
`;

export default GenericButton;
export default GenericButtonLink;