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

Added FileInput component #343

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open

Commits on Aug 1, 2021

  1. Create FileInput.js

    File Upload component that display the name of the file selected by user.
    fung-csf authored Aug 1, 2021
    Configuration menu
    Copy the full SHA
    1c6caff View commit details
    Browse the repository at this point in the history
  2. Update index.ts

    added the line:
    
     import { FileInput } from './FileInput';
    
    Edited the line:
    
     export { UploadProps, FileInput };
    fung-csf authored Aug 1, 2021
    Configuration menu
    Copy the full SHA
    1fa3116 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2021

  1. Update FileInput.js

    Change function parameters for FileInput.js  for integration with UploadAlt.js
    fung-csf authored Aug 24, 2021
    Configuration menu
    Copy the full SHA
    cec3965 View commit details
    Browse the repository at this point in the history
  2. Update Dependencies

    added   "antd": "^4.16.13"   as dependency
    fung-csf authored Aug 24, 2021
    Configuration menu
    Copy the full SHA
    fd76bb6 View commit details
    Browse the repository at this point in the history
  3. Update index.ts

    import UploadAlt
    fung-csf authored Aug 24, 2021
    Configuration menu
    Copy the full SHA
    633b862 View commit details
    Browse the repository at this point in the history
  4. Add files via upload

    Create UploadAlt.js
    jytan9898u authored Aug 24, 2021
    Configuration menu
    Copy the full SHA
    686e508 View commit details
    Browse the repository at this point in the history
  5. Update FileInput.js

    Added new style to FileInput.js
    fung-csf authored Aug 24, 2021
    Configuration menu
    Copy the full SHA
    7e64a03 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2021

  1. Configuration menu
    Copy the full SHA
    32060c8 View commit details
    Browse the repository at this point in the history
  2. Update index.ts

    fung-csf authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    c81cb81 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7482723 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b8d1faf View commit details
    Browse the repository at this point in the history
  5. Update index.ts

    fung-csf authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    8062d66 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e959f30 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2021

  1. Delete FileInput.js

    In order to change extension from .js to .tsx
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    5f5ce80 View commit details
    Browse the repository at this point in the history
  2. Create FileInput.tsx

    create FileInput with .tsx extension
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    f74741f View commit details
    Browse the repository at this point in the history
  3. Update index.ts

    style formatting to conform to linting requirements
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    6dce9c2 View commit details
    Browse the repository at this point in the history
  4. Update FileInput.tsx

    change function name from inputFileValue to FileContent
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    c407423 View commit details
    Browse the repository at this point in the history
  5. Update FileInput.tsx

    Change UseState Variable name from "input" to "content"
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    6396368 View commit details
    Browse the repository at this point in the history
  6. Update FileInput.tsx

     Update UseState variable "content" to  "filePresent"
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    9cc9cb4 View commit details
    Browse the repository at this point in the history
  7. Update index.ts

    Remove  braces in file import
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    cdd11eb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    77a354b View commit details
    Browse the repository at this point in the history
  9. Update UploadAlt.tsx

    jytan9898u authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    9fb3465 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #1 from jytan9898u/tanjingyu

    Update UploadAlt.tsx
    jytan9898u authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    7f5080d View commit details
    Browse the repository at this point in the history
  11. Merge pull request #3 from fung-csf/ChowSengFung

    Chow seng fung
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    8bafddb View commit details
    Browse the repository at this point in the history
  12. Update .eslintrc.js

    added the rules:
    
     "no-shadow": "off",
      "@typescript-eslint/no-shadow": ["error"]
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    77ccbb1 View commit details
    Browse the repository at this point in the history
  13. Update .eslintrc.js

    remove base rules in eslintrc.js
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    3f26eae View commit details
    Browse the repository at this point in the history
  14. Update .eslintrc.js

    remove   line :
    
    ...base,
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    bc17a1a View commit details
    Browse the repository at this point in the history
  15. Update .eslintrc.js

    added new rules
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    40c0a90 View commit details
    Browse the repository at this point in the history
  16. Update .eslintrc.js

    
     "@typescript-eslint/no-shadow": 0,
         "no-shadow": 0,
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    3c9a782 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    8b21853 View commit details
    Browse the repository at this point in the history
  18. Update index.ts

    jytan9898u authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    4931035 View commit details
    Browse the repository at this point in the history
  19. Update UploadAlt.tsx

    jytan9898u authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    e4c6a2a View commit details
    Browse the repository at this point in the history
  20. Merge pull request #5 from jytan9898u/TanJingYu

    Create UpdateAlt.tsx and update index.ts
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    9340863 View commit details
    Browse the repository at this point in the history
  21. Update UploadAlt

    Add Upload Button to UploadAlt.tsx
    jackisgood13 authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    2c8efa1 View commit details
    Browse the repository at this point in the history
  22. Merge pull request #8 from jackisgood13/jackisgood13

    Update UploadAlt
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    1a58698 View commit details
    Browse the repository at this point in the history
  23. Added confirmation box

    eshan25 committed Aug 28, 2021
    Configuration menu
    Copy the full SHA
    f6872e7 View commit details
    Browse the repository at this point in the history
  24. Merge pull request #9 from eshan25/eshan

    Added confirmation box
    fung-csf authored Aug 28, 2021
    Configuration menu
    Copy the full SHA
    3cde813 View commit details
    Browse the repository at this point in the history