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

Files #98

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ad807f9
Add files collection and pub-sub for prototyping.
Zodiase May 31, 2020
d585274
Implement file list view with meteor data hooks instead of HOC.
Zodiase May 31, 2020
349c3d3
Use Grommet/DataTable to render file list.
Zodiase May 31, 2020
a72193e
Set sizes to columns.
Zodiase May 31, 2020
1b8e53a
Resolve error "'BinaryType' is not defined".
Zodiase May 31, 2020
39d7ff3
Resolve errors regarding functions being used before defined.
Zodiase May 31, 2020
b6c99e8
Update File schema.
Zodiase May 31, 2020
9cdc8a0
Resolve eslint issue in parsing some TypeScript syntax.
Zodiase May 31, 2020
2077298
Allow JSX props spreading.
Zodiase May 31, 2020
bc3765b
Show upload tasks for dropped files.
Zodiase May 31, 2020
5e4a037
Update package typings and enable test file pattern matching.
Zodiase May 31, 2020
5f47ad6
Merge branch 'master' into api/files
Zodiase Jan 19, 2024
81505fd
Refactor and fix type errors.
Zodiase Jan 19, 2024
0cc9f5c
Use createRoot from react 18
Zodiase Jan 19, 2024
9f40d6e
Show upload state
Zodiase Jan 19, 2024
02d3bd5
Keeping 2-space indents for package manifest
Zodiase Jan 19, 2024
26771cd
Merge branch 'master' into api/files
Zodiase Jan 19, 2024
23ae48b
Remove snyk test in CI as it's already covered by Github integration.
Zodiase Jan 19, 2024
4088971
Add segmented file uploading scaffolding
Zodiase Jan 20, 2024
4099f39
Show dummy progress
Zodiase Jan 20, 2024
f48e005
Implement chunked file reading.
Zodiase Jan 20, 2024
170941f
Implement server APIs for uploading a file in chunks.
Zodiase Jan 21, 2024
572f35b
Fix minor bugs
Zodiase Jan 21, 2024
0ea308a
Use Enum to represent File states.
Zodiase Oct 4, 2024
364faa0
Fix typo
Zodiase Oct 4, 2024
ee420d0
Refactor abstract file APIs and add tests
Zodiase Oct 9, 2024
54506b8
Add utility Diagnostic Context
Zodiase Dec 29, 2024
86a1aa2
Use proper tsconfig file for type checks
Zodiase Dec 29, 2024
4496c1a
Merge pull request #107 from Zodiase/utility/diagnostic-context
Zodiase Dec 29, 2024
89f80b1
Fix type error
Zodiase Dec 29, 2024
2b784bf
Upgrade Meteor to v3 and fix other misc issues.
Zodiase Dec 30, 2024
612ecfb
Update CI config
Zodiase Dec 30, 2024
134744b
Check types now only covers the app. Fix a type error.
Zodiase Dec 30, 2024
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
Update package typings and enable test file pattern matching.
- With `"testModule": "tests/main.ts"`, test file pattern matching is disabled.
  • Loading branch information
Zodiase committed May 31, 2020
commit 5e4a0374ce617cdac0360e5469000a757bf1c3f8
44 changes: 32 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

105 changes: 52 additions & 53 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,56 +1,55 @@
{
"name": "media-archive",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "eslint . --ext .js,.ts,.tsx",
"pretest": "npm run lint --silent",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"filesize": "^6.1.0",
"grommet": "^2.13.0",
"meteor-node-stubs": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-use": "^15.1.1",
"snyk": "^1.320.3",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@types/meteor": "^1.4.30",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-meteor": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jquery": "^3.5.0",
"prettier": "^1.19.1",
"typescript": "^3.6.3"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
"name": "media-archive",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "eslint . --ext .js,.ts,.tsx",
"pretest": "npm run lint --silent",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"testModule": "tests/main.ts"
},
"snyk": true
"dependencies": {
"@babel/runtime": "^7.9.6",
"filesize": "^6.1.0",
"grommet": "^2.13.0",
"meteor-node-stubs": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-use": "^15.1.1",
"snyk": "^1.320.3",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@types/meteor": "^1.4.47",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-meteor": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jquery": "^3.5.0",
"prettier": "^1.19.1",
"typescript": "^3.6.3"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
}
},
"snyk": true
}