Skip to content

Commit

Permalink
SVG waveform (#13)
Browse files Browse the repository at this point in the history
* Highlight current sample player
* Move upload button to navbar
* Use svg to render stereo waveform
* Add sample dropzones onto pads (no touch support)
* Add toggle button for sample explorer
* Set explorer collapsed by default
  • Loading branch information
grddavies authored Apr 23, 2023
1 parent 1f8a59b commit 422fa8a
Show file tree
Hide file tree
Showing 25 changed files with 1,426 additions and 1,090 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ root: true
rules:
# Non-null assertions used for refs in solidJS
'@typescript-eslint/no-non-null-assertion': 0
'@typescript-eslint/no-unused-vars': 'error'
'@typescript-eslint/no-unused-vars':
- error
- varsIgnorePattern: ^_
'@typescript-eslint/explicit-function-return-type':
- error
- allowExpressions: true
Expand Down
28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,33 @@
"lint": "eslint src"
},
"dependencies": {
"@solid-primitives/pointer": "^0.2.5",
"@solid-primitives/pointer": "^0.2.11",
"@solid-primitives/reducer": "^0.0.101",
"@solid-primitives/resize-observer": "^2.0.15",
"assert": "^2.0.0",
"dexie": "^3.2.2",
"dexie": "^3.2.3",
"primeflex": "^3.3.0",
"solid-dexie": "^0.0.5",
"solid-icons": "^1.0.4",
"solid-js": "^1.6.9"
"solid-js": "^1.7.3"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-solid": "^0.9.4",
"eslint-plugin-tsdoc": "^0.2.17",
"postcss": "^8.4.21",
"postcss": "^8.4.23",
"postcss-nesting": "^10.2.0",
"prettier": "^2.8.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-checker": "^0.5.5",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vite-plugin-checker": "^0.5.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-solid": "^2.5.0",
"vite-tsconfig-paths": "^4.0.5"
"vite-plugin-solid": "^2.7.0",
"vite-tsconfig-paths": "^4.2.0"
},
"postcss": {
"plugins": {
Expand Down
Loading

0 comments on commit 422fa8a

Please sign in to comment.