Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Student Submission Forms #142

Merged
merged 23 commits into from
Feb 13, 2018
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ea5c895
Fix Typo
billdybas Jan 31, 2018
8f9ca8a
Add Formik & Yup
billdybas Jan 31, 2018
4f6c5ce
Convert Student Submission to Formik
billdybas Jan 31, 2018
3202165
Add Create Entry Mutations & Rename Other -> OtherMedia
billdybas Jan 31, 2018
0461941
Add Containers for Video & Other Media Submission
billdybas Jan 31, 2018
2d613d9
Add Submission Form Chooser
billdybas Jan 31, 2018
ce1d654
Add More Fields to Photo Submission Form
billdybas Feb 1, 2018
a2cda6b
Add Video Submission Form
billdybas Feb 1, 2018
a3a3ce2
Add Initial Other Media Submission Form
billdybas Feb 1, 2018
478c380
Add SVG Support Back to Webpack
billdybas Feb 1, 2018
42edb41
Add Image & PDF Upload Dropzone to Other Media Submission Form
billdybas Feb 1, 2018
e613188
stylize form submission type chooser
robmcl4 Feb 1, 2018
41a3882
Update 'forSale' and 'moreCopies' Fields
billdybas Feb 4, 2018
10b915d
Add Group Submission Fields
billdybas Feb 4, 2018
fbd864d
Add Authorization Header to File Uploads
billdybas Feb 4, 2018
695b64e
Add Success Modal on Form Submission
billdybas Feb 5, 2018
a507150
Fix Rendering
billdybas Feb 10, 2018
259e875
Move Show ID & Name to Props
billdybas Feb 10, 2018
03c22bc
Update Wording & Other Media Icon
billdybas Feb 10, 2018
5c812d5
Add react-select
billdybas Feb 10, 2018
4e67c9b
Add Select Input for mediaType
billdybas Feb 10, 2018
7ce9b76
Increase Back / Submit Button Sizes
billdybas Feb 10, 2018
e39a823
Clear Dropzone Previews After Submission & On Location Change
billdybas Feb 10, 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
4 changes: 2 additions & 2 deletions backend/docker/test-saml-idp/authsources.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'eduPersonAffiliation' => array('group6'),
'email' => 'user6@example.com',
),
'user7:user6pass' => array(
'user7:user7pass' => array(
'uid' => array('7'),
'eduPersonAffiliation' => array('group7'),
'email' => 'user7@example.com',
Expand All @@ -46,4 +46,4 @@
'email' => 'user8@example.com',
),
),
);
);
4 changes: 4 additions & 0 deletions frontend/config/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ module.exports = {
{
test: /\.(gif|png|jpg|jpeg)(\?[a-z0-9]+)?$/,
loader: 'url-loader?limit=8192'
},
{
test: /\.svg(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
}
]
}
Expand Down
4 changes: 4 additions & 0 deletions frontend/config/webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ module.exports = {
{
test: /\.(gif|png|jpg|jpeg)(\?[a-z0-9]+)?$/,
loader: 'url-loader?limit=8192'
},
{
test: /\.svg(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
}
]
}
Expand Down
Loading