├── .env.sample ├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── API │ └── firebase.js ├── App.css ├── App.jsx ├── components │ ├── 404Page │ │ └── index.jsx │ ├── CreateFile │ │ └── index.jsx │ ├── CreateFolder │ │ └── index.jsx │ ├── Dashboard │ │ ├── BreadCrum.js │ │ │ └── index.jsx │ │ ├── FileComponent │ │ │ ├── FileComponent.css │ │ │ ├── Header.jsx │ │ │ └── index.jsx │ │ ├── FolderAdminComponent │ │ │ └── index.jsx │ │ ├── FolderComponent │ │ │ └── index.jsx │ │ ├── Home │ │ │ └── index.jsx │ │ ├── NavDashboard │ │ │ └── index.jsx │ │ ├── SubNav.js │ │ │ └── index.jsx │ │ └── index.jsx │ ├── DeleteButton │ │ └── index.jsx │ ├── Home │ │ └── index.jsx │ ├── Navbar │ │ └── index.jsx │ ├── UploadFile │ │ └── index.jsx │ └── authentication │ │ ├── Login │ │ └── index.jsx │ │ └── Register │ │ └── index.jsx ├── index.css ├── index.jsx ├── models │ ├── docs.js │ ├── files.js │ └── users.js └── redux │ ├── actionCreators │ ├── authActionCreators.js │ └── filefoldersActionCreators.js │ ├── actions │ ├── authActions.js │ └── filefoldersActions.js │ └── reducers │ ├── authReducer.js │ └── filefolderReducer.js └── vite.config.js /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/API/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/API/firebase.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/404Page/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/404Page/index.jsx -------------------------------------------------------------------------------- /src/components/CreateFile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/CreateFile/index.jsx -------------------------------------------------------------------------------- /src/components/CreateFolder/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/CreateFolder/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/BreadCrum.js/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/BreadCrum.js/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/FileComponent/FileComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/FileComponent/FileComponent.css -------------------------------------------------------------------------------- /src/components/Dashboard/FileComponent/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/FileComponent/Header.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/FileComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/FileComponent/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/FolderAdminComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/FolderAdminComponent/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/FolderComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/FolderComponent/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/Home/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/NavDashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/NavDashboard/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/SubNav.js/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/SubNav.js/index.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Dashboard/index.jsx -------------------------------------------------------------------------------- /src/components/DeleteButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/DeleteButton/index.jsx -------------------------------------------------------------------------------- /src/components/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Home/index.jsx -------------------------------------------------------------------------------- /src/components/Navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/Navbar/index.jsx -------------------------------------------------------------------------------- /src/components/UploadFile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/UploadFile/index.jsx -------------------------------------------------------------------------------- /src/components/authentication/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/authentication/Login/index.jsx -------------------------------------------------------------------------------- /src/components/authentication/Register/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/components/authentication/Register/index.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/models/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/models/docs.js -------------------------------------------------------------------------------- /src/models/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/models/files.js -------------------------------------------------------------------------------- /src/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/models/users.js -------------------------------------------------------------------------------- /src/redux/actionCreators/authActionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/redux/actionCreators/authActionCreators.js -------------------------------------------------------------------------------- /src/redux/actionCreators/filefoldersActionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/redux/actionCreators/filefoldersActionCreators.js -------------------------------------------------------------------------------- /src/redux/actions/authActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/redux/actions/authActions.js -------------------------------------------------------------------------------- /src/redux/actions/filefoldersActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/redux/actions/filefoldersActions.js -------------------------------------------------------------------------------- /src/redux/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/redux/reducers/authReducer.js -------------------------------------------------------------------------------- /src/redux/reducers/filefolderReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/src/redux/reducers/filefolderReducer.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamanSharma100/react-firebase-file-management-system/HEAD/vite.config.js --------------------------------------------------------------------------------