-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,855 additions
and
1,389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
SHELL = /bin/bash | ||
|
||
.PHONY: build | ||
build: docker-compose.override.yml | ||
docker-compose run --rm web npm run build | ||
build: node_modules | ||
npm run build | ||
|
||
.PHONY: test | ||
test: docker-compose.override.yml | ||
docker-compose run --rm test npm run test | ||
test: node_modules | ||
docker-compose run --rm -e BASE_URL=http://webdav test npm run test | ||
|
||
docker-compose.override.yml: | ||
@echo "version: '3'" > docker-compose.override.yml | ||
@echo >> docker-compose.override.yml | ||
@echo "services:" >> docker-compose.override.yml | ||
@echo " web:" >> docker-compose.override.yml | ||
@echo " user: `id -u`:`id -g`" >> docker-compose.override.yml | ||
|
||
dist/js/app.js: | ||
dist/js/app.js: build | ||
node_modules: | ||
npm install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
- [x] Add more unit tests for the UI | ||
- [x] Add end-to-end UI testing | ||
- [x] Move to TypeScript | ||
- [ ] Add drag and drop tests | ||
- [ ] Allow uploading of directories ([#48](https://github.com/dom111/webdav-js/issues/48)) | ||
- [ ] Add functionality for copying and moving files and directories | ||
- [ ] Add progress bar for file uploads | ||
- [ ] Add more unit tests for the UI | ||
- [ ] Add end-to-end UI testing (although it seems that drag and drop might be a problem) | ||
- [ ] Support keyboard navigation whilst overlay is visible | ||
- [ ] Improve code in `item.js` - maybe split out the functionality into each action? | ||
- [ ] Look into moving to TypeScript | ||
- [ ] ReactJS implementation | ||
- [ ] VueJS implementation | ||
- [ ] Native Web Components implementation | ||
- [ ] Angular implementation | ||
- [ ] Maybe a refactor... |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default { | ||
testMatch: ['**/tests/functional/**/*.ts'], | ||
preset: './tests/jest.ts-puppeteer.preset.ts', | ||
preset: './tests/jest.ts-puppeteer.preset.chrome.ts', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default { | ||
testMatch: ['**/tests/functional/**/*.ts'], | ||
preset: './tests/jest.ts-puppeteer.preset.firefox.ts', | ||
}; |
Oops, something went wrong.