├── .all-contributorsrc ├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── media ├── icon.png ├── screenshot.png └── screenshot2.png ├── package.json ├── resources ├── dark │ ├── logo.svg │ └── refresh.svg └── light │ └── refresh.svg ├── src ├── actions │ ├── actions.ts │ └── common.ts ├── auth │ └── server │ │ └── local.ts ├── commands.ts ├── components │ ├── spotify-controls.ts │ ├── spotify-status.ts │ ├── tree-albums.ts │ ├── tree-playlists.ts │ └── tree-track.ts ├── config │ └── spotify-config.ts ├── consts │ └── consts.ts ├── extension.ts ├── info │ └── info.ts ├── isAlbum.ts ├── lyrics │ └── lyrics.ts ├── reducers │ └── root-reducer.ts ├── request │ └── request.ts ├── spotify-status-controller.ts ├── spotify │ ├── common.ts │ ├── linux-spotify-client.ts │ ├── os-agnostic-spotify-client.ts │ ├── osx-spotify-client.ts │ ├── spotify-client.ts │ ├── utils.ts │ └── web-api-spotify-client.ts ├── state │ └── state.ts ├── store │ ├── storage │ │ └── vscode-storage.ts │ └── store.ts ├── types │ └── spotify-node-applescript.d.ts └── utils │ └── utils.ts └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/README.md -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/media/icon.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /media/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/media/screenshot2.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/package.json -------------------------------------------------------------------------------- /resources/dark/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/resources/dark/logo.svg -------------------------------------------------------------------------------- /resources/dark/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/resources/dark/refresh.svg -------------------------------------------------------------------------------- /resources/light/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/resources/light/refresh.svg -------------------------------------------------------------------------------- /src/actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/actions/actions.ts -------------------------------------------------------------------------------- /src/actions/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/actions/common.ts -------------------------------------------------------------------------------- /src/auth/server/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/auth/server/local.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/components/spotify-controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/components/spotify-controls.ts -------------------------------------------------------------------------------- /src/components/spotify-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/components/spotify-status.ts -------------------------------------------------------------------------------- /src/components/tree-albums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/components/tree-albums.ts -------------------------------------------------------------------------------- /src/components/tree-playlists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/components/tree-playlists.ts -------------------------------------------------------------------------------- /src/components/tree-track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/components/tree-track.ts -------------------------------------------------------------------------------- /src/config/spotify-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/config/spotify-config.ts -------------------------------------------------------------------------------- /src/consts/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/consts/consts.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/info/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/info/info.ts -------------------------------------------------------------------------------- /src/isAlbum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/isAlbum.ts -------------------------------------------------------------------------------- /src/lyrics/lyrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/lyrics/lyrics.ts -------------------------------------------------------------------------------- /src/reducers/root-reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/reducers/root-reducer.ts -------------------------------------------------------------------------------- /src/request/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/request/request.ts -------------------------------------------------------------------------------- /src/spotify-status-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify-status-controller.ts -------------------------------------------------------------------------------- /src/spotify/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/common.ts -------------------------------------------------------------------------------- /src/spotify/linux-spotify-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/linux-spotify-client.ts -------------------------------------------------------------------------------- /src/spotify/os-agnostic-spotify-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/os-agnostic-spotify-client.ts -------------------------------------------------------------------------------- /src/spotify/osx-spotify-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/osx-spotify-client.ts -------------------------------------------------------------------------------- /src/spotify/spotify-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/spotify-client.ts -------------------------------------------------------------------------------- /src/spotify/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/utils.ts -------------------------------------------------------------------------------- /src/spotify/web-api-spotify-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/spotify/web-api-spotify-client.ts -------------------------------------------------------------------------------- /src/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/state/state.ts -------------------------------------------------------------------------------- /src/store/storage/vscode-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/store/storage/vscode-storage.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/types/spotify-node-applescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/types/spotify-node-applescript.d.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShyykoSerhiy/vscode-spotify/HEAD/tsconfig.json --------------------------------------------------------------------------------