Update create collection dialog

This commit is contained in:
Vishnu Mohandas 2021-02-15 19:15:48 +05:30
parent f3097a67c3
commit b0937d1a7e
2 changed files with 15 additions and 12 deletions

View file

@ -4,6 +4,7 @@ import { createAlbum } from 'services/collectionService';
import UploadService from 'services/uploadService';
import { CollectionAndItsLatestFile } from 'services/collectionService';
import { getToken } from 'utils/common/key';
import constants from 'utils/strings/constants';
export default function CreateCollection(props) {
const {
@ -78,17 +79,17 @@ export default function CreateCollection(props) {
}
};
return (
<Modal show={modalView} onHide={closeModal} centered backdrop="static">
<Modal show={modalView} onHide={closeModal} centered backdrop="static"
style={{ background: 'rgba(0, 0, 0, 0.8)' }}>
<Modal.Header closeButton>
<Modal.Title>Create Collection</Modal.Title>
<Modal.Title>{constants.CREATE_COLLECTION}</Modal.Title>
</Modal.Header>
<Modal.Body>
<Form onSubmit={handleSubmit}>
<Form.Group controlId="formBasicEmail">
<Form.Label>Album Name:</Form.Label>
<Form.Control
type="text"
placeholder="Enter Album Name"
placeholder={constants.ALBUM_NAME}
value={albumName}
onChange={handleChange}
/>
@ -98,7 +99,7 @@ export default function CreateCollection(props) {
type="submit"
style={{ width: '100%' }}
>
Submit
{constants.CREATE}
</Button>
</Form>
</Modal.Body>

View file

@ -49,25 +49,27 @@ const englishConstants = {
CONSOLE_WARNING_DESC: `This is a browser feature intended for developers. Please don't copy-paste unverified code here.`,
SELECT_COLLECTION: `select an album to upload to`,
CREATE_COLLECTION: `create album`,
CLOSE: 'Close',
CLOSE: 'close',
NOTHING_HERE: `nothing to see here! 👀`,
UPLOAD: {
0: 'Preparing to upload',
1: 'Encryting your files',
2: 'Uploading your Files',
3: 'Files Uploaded Successfully !!!',
0: 'preparing to upload',
1: 'encrypting your files',
2: 'uploading your files',
3: 'files uploaded successfully!',
},
OF: 'of',
SUBSCRIPTION_EXPIRED:
"You don't have a active subscription plan!! Please get one in the mobile app",
"your subscription has expired, please renew it form the mobile app",
STORAGE_QUOTA_EXCEEDED:
'You have exceeded your designated storage Quota, please upgrade your plan to add more files',
'you have exceeded your storage quota, please upgrade your plan from the mobile app',
WEB_SIGNUPS_DISABLED: () => (
<div>sorry signups are possibly only on the <a href="https://ente.io/app" target="_blank">mobile app</a></div>
),
USER_DOES_NOT_EXIST: 'sorry, could not find a user with that email',
UPLOAD_BUTTON_TEXT: 'upload',
NO_ACCOUNT: 'don\'t have an account?',
ALBUM_NAME: 'album name',
CREATE: 'create',
};
export default englishConstants;