├── .gitignore ├── .vscode └── settings.json ├── README.md ├── config ├── env.js ├── externals.js ├── jest │ ├── cssTransform.js │ ├── fileTransform.js │ └── typescriptTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js └── webpack.config.prod.js ├── declares ├── declarations.d.ts ├── react-motion.d.ts └── react-router-dom.d.ts ├── package.json ├── public ├── favicon.ico ├── images │ ├── divemusic.png │ ├── glass.jpg │ └── preload.jpg └── index.html ├── push.sh ├── screens ├── screen1.png ├── screen2.png ├── screen3.png ├── screen4.png └── screen5.png ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── Hoc │ ├── Loadable.tsx │ ├── __test__ │ │ ├── __makeImageLazyLoad.spec.tsx │ │ └── __snapshots__ │ │ │ └── __makeImageLazyLoad.spec.tsx.snap │ ├── makeBackToTop.tsx │ ├── makeCatchoutside.tsx │ ├── makeDumbProps.ts │ ├── makeImageLazyLoad.tsx │ ├── makeLoadingSpiner.tsx │ ├── makeOpacityMotion.tsx │ ├── makeOpacityTransition.tsx │ ├── makeTransition.tsx │ ├── makeTranslateXMotion.tsx │ └── makeTranslateXStragged.tsx ├── SoundCloudMobx.tsx ├── components │ ├── Activities │ │ ├── Activities.tsx │ │ ├── activities.scss │ │ └── index.ts │ ├── ArtWork │ │ ├── ArtWork.tsx │ │ ├── __ArtWork.spec.tsx │ │ ├── __snapshots__ │ │ │ └── __ArtWork.spec.tsx.snap │ │ ├── artwork.scss │ │ └── index.ts │ ├── Browse │ │ ├── Browse.tsx │ │ ├── browse.scss │ │ └── index.ts │ ├── ButtonGhost │ │ ├── ButtonGhost.tsx │ │ ├── btghost.scss │ │ └── index.tsx │ ├── ButtonInline │ │ ├── ButtonInline.tsx │ │ ├── btinline.scss │ │ └── index.ts │ ├── ButtonMore │ │ ├── ButtonMore.tsx │ │ ├── __ButtomMore.spec.tsx │ │ ├── btmore.scss │ │ └── index.ts │ ├── Callback.tsx │ ├── Comments │ │ ├── Comments.tsx │ │ ├── comments.scss │ │ └── index.ts │ ├── Community │ │ ├── BigUserIcon.tsx │ │ ├── Community.tsx │ │ ├── __BigUserIcon.spec.tsx │ │ ├── community.scss │ │ └── index.ts │ ├── DashBoard │ │ ├── DashBoard.tsx │ │ ├── dashboard.scss │ │ └── index.ts │ ├── FavoritesPanel │ │ ├── FavoritesPanel.tsx │ │ ├── favorites.scss │ │ └── index.ts │ ├── FilterActivities │ │ ├── FilterActivities.tsx │ │ ├── filteractivities.scss │ │ └── index.ts │ ├── FilterPanel │ │ ├── FilterPanel.tsx │ │ ├── __FilterPanel.spec.tsx │ │ ├── filterpanel.scss │ │ └── index.ts │ ├── FollowsPanel │ │ ├── FollowsPanel.tsx │ │ ├── __FollowsPanel.spec.tsx │ │ ├── followers.scss │ │ └── index.ts │ ├── Header │ │ ├── AuthImage.tsx │ │ ├── Header.tsx │ │ ├── __Header.tsx │ │ ├── header.scss │ │ └── index.ts │ ├── HocLoadingMore │ │ ├── HocLoadingEmitLimit.tsx │ │ ├── HocLoadingMore.tsx │ │ ├── HocMounted.tsx │ │ └── index.ts │ ├── HoverActions │ │ ├── HoverActions.tsx │ │ ├── hoveractions.scss │ │ └── index.ts │ ├── InfoList │ │ ├── InfoList.tsx │ │ ├── index.ts │ │ └── infolist.scss │ ├── InputRange │ │ ├── InputRange.tsx │ │ ├── __InputRange.spec.tsx │ │ ├── index.ts │ │ └── style.scss │ ├── Links │ │ ├── HomeLink.tsx │ │ ├── PlaylistLink.tsx │ │ ├── StreamLink.tsx │ │ ├── UserLink.tsx │ │ ├── homelink.scss │ │ ├── index.ts │ │ └── stylelink.scss │ ├── LoadingSpinner │ │ ├── LoadingSpinner.tsx │ │ ├── index.ts │ │ └── loadingspinner.scss │ ├── MiniTrack │ │ ├── MiniTrack.tsx │ │ ├── index.ts │ │ └── minitrack.scss │ ├── MiniUser │ │ ├── MiniUser.tsx │ │ ├── index.ts │ │ └── user.scss │ ├── Operators │ │ ├── Operators.tsx │ │ ├── index.ts │ │ └── operators.scss │ ├── Player │ │ ├── Player.tsx │ │ ├── __Playser.spec.tsx │ │ ├── index.ts │ │ └── player.scss │ ├── Playerlist │ │ ├── Playerlist.tsx │ │ ├── index.ts │ │ └── playerlist.scss │ ├── Playlist │ │ ├── Playlist.tsx │ │ ├── PlaylistInfo.tsx │ │ ├── index.ts │ │ ├── playlist.scss │ │ └── playlistInfo.scss │ ├── Profile │ │ ├── Profile.tsx │ │ └── profile.scss │ ├── Route │ │ └── TransitionRoute.tsx │ ├── SearchPanel │ │ ├── SearchPanel.tsx │ │ ├── index.ts │ │ └── searchpanel.scss │ ├── SidebarItem │ │ ├── SidebarItem.tsx │ │ └── index.ts │ ├── Stream │ │ ├── Stream.tsx │ │ ├── StreamExtends.tsx │ │ ├── StreamMain.tsx │ │ ├── index.ts │ │ └── stream.scss │ ├── Switch │ │ ├── OpacityTransitionSwitch.tsx │ │ ├── Switch.tsx │ │ ├── SwitchContainer.tsx │ │ └── index.ts │ ├── Tabs │ │ ├── Tab.tsx │ │ ├── Tabs.tsx │ │ ├── index.ts │ │ └── tabs.scss │ ├── TrackPager │ │ ├── TrackPager.tsx │ │ ├── index.ts │ │ └── track.scss │ ├── TrackProfile │ │ ├── TrackProfile.tsx │ │ ├── __TrackProfile.spec.tsx │ │ ├── index.ts │ │ └── trackprofile.scss │ ├── TrackTitleView │ │ ├── TrackTitleView.tsx │ │ ├── __TrackTitleVIew.spec.tsx │ │ ├── index.ts │ │ └── ttview.scss │ ├── Tracklist │ │ ├── Tracklist.tsx │ │ ├── index.ts │ │ └── tracklist.scss │ ├── ViewAll │ │ ├── ViewAll.tsx │ │ ├── __ViewAll.spec.tsx │ │ ├── index.ts │ │ └── viewall.scss │ ├── index.tsx │ └── soundcloud.scss ├── constants │ ├── authentification.ts │ ├── fetchTypes.ts │ ├── requestTypes.ts │ ├── sidebarItemType.ts │ ├── sortTypes.ts │ ├── storeTypes.ts │ └── trackTypes.ts ├── interfaces │ └── interface.ts ├── services │ ├── ColorThief.ts │ ├── EventHelper.ts │ ├── Fetch.ts │ ├── SmoothWindowScrollPollyfill.ts │ ├── __mocks__ │ │ └── Fetch.ts │ ├── docMethos.ts │ ├── logger.ts │ ├── soundcloundApi.ts │ └── utils.ts ├── store │ ├── ActivitiesStore.ts │ ├── BaseStreamStore.ts │ ├── CommentStore.ts │ ├── PerformanceStore.ts │ ├── PlayerStore.ts │ ├── SessionStore.ts │ ├── TrackStore.ts │ ├── UserStore.spec.ts │ ├── UserStore.ts │ ├── __test__ │ │ ├── __ActivitiesStore.spec.ts │ │ └── __CommentStore.spec.ts │ └── index.ts └── styles │ ├── app.scss │ ├── index.scss │ ├── medias.scss │ └── variable.scss ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/env.js -------------------------------------------------------------------------------- /config/externals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/externals.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/jest/typescriptTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/jest/typescriptTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /declares/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/declares/declarations.d.ts -------------------------------------------------------------------------------- /declares/react-motion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/declares/react-motion.d.ts -------------------------------------------------------------------------------- /declares/react-router-dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/declares/react-router-dom.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/divemusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/public/images/divemusic.png -------------------------------------------------------------------------------- /public/images/glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/public/images/glass.jpg -------------------------------------------------------------------------------- /public/images/preload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/public/images/preload.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/public/index.html -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/push.sh -------------------------------------------------------------------------------- /screens/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/screens/screen1.png -------------------------------------------------------------------------------- /screens/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/screens/screen2.png -------------------------------------------------------------------------------- /screens/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/screens/screen3.png -------------------------------------------------------------------------------- /screens/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/screens/screen4.png -------------------------------------------------------------------------------- /screens/screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/screens/screen5.png -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/Hoc/Loadable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/Loadable.tsx -------------------------------------------------------------------------------- /src/Hoc/__test__/__makeImageLazyLoad.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/__test__/__makeImageLazyLoad.spec.tsx -------------------------------------------------------------------------------- /src/Hoc/__test__/__snapshots__/__makeImageLazyLoad.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/__test__/__snapshots__/__makeImageLazyLoad.spec.tsx.snap -------------------------------------------------------------------------------- /src/Hoc/makeBackToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeBackToTop.tsx -------------------------------------------------------------------------------- /src/Hoc/makeCatchoutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeCatchoutside.tsx -------------------------------------------------------------------------------- /src/Hoc/makeDumbProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeDumbProps.ts -------------------------------------------------------------------------------- /src/Hoc/makeImageLazyLoad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeImageLazyLoad.tsx -------------------------------------------------------------------------------- /src/Hoc/makeLoadingSpiner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeLoadingSpiner.tsx -------------------------------------------------------------------------------- /src/Hoc/makeOpacityMotion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeOpacityMotion.tsx -------------------------------------------------------------------------------- /src/Hoc/makeOpacityTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeOpacityTransition.tsx -------------------------------------------------------------------------------- /src/Hoc/makeTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeTransition.tsx -------------------------------------------------------------------------------- /src/Hoc/makeTranslateXMotion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeTranslateXMotion.tsx -------------------------------------------------------------------------------- /src/Hoc/makeTranslateXStragged.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/Hoc/makeTranslateXStragged.tsx -------------------------------------------------------------------------------- /src/SoundCloudMobx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/SoundCloudMobx.tsx -------------------------------------------------------------------------------- /src/components/Activities/Activities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Activities/Activities.tsx -------------------------------------------------------------------------------- /src/components/Activities/activities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Activities/activities.scss -------------------------------------------------------------------------------- /src/components/Activities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Activities/index.ts -------------------------------------------------------------------------------- /src/components/ArtWork/ArtWork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ArtWork/ArtWork.tsx -------------------------------------------------------------------------------- /src/components/ArtWork/__ArtWork.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ArtWork/__ArtWork.spec.tsx -------------------------------------------------------------------------------- /src/components/ArtWork/__snapshots__/__ArtWork.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ArtWork/__snapshots__/__ArtWork.spec.tsx.snap -------------------------------------------------------------------------------- /src/components/ArtWork/artwork.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ArtWork/artwork.scss -------------------------------------------------------------------------------- /src/components/ArtWork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ArtWork/index.ts -------------------------------------------------------------------------------- /src/components/Browse/Browse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Browse/Browse.tsx -------------------------------------------------------------------------------- /src/components/Browse/browse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Browse/browse.scss -------------------------------------------------------------------------------- /src/components/Browse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Browse/index.ts -------------------------------------------------------------------------------- /src/components/ButtonGhost/ButtonGhost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonGhost/ButtonGhost.tsx -------------------------------------------------------------------------------- /src/components/ButtonGhost/btghost.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonGhost/btghost.scss -------------------------------------------------------------------------------- /src/components/ButtonGhost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonGhost/index.tsx -------------------------------------------------------------------------------- /src/components/ButtonInline/ButtonInline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonInline/ButtonInline.tsx -------------------------------------------------------------------------------- /src/components/ButtonInline/btinline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonInline/btinline.scss -------------------------------------------------------------------------------- /src/components/ButtonInline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonInline/index.ts -------------------------------------------------------------------------------- /src/components/ButtonMore/ButtonMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonMore/ButtonMore.tsx -------------------------------------------------------------------------------- /src/components/ButtonMore/__ButtomMore.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonMore/__ButtomMore.spec.tsx -------------------------------------------------------------------------------- /src/components/ButtonMore/btmore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonMore/btmore.scss -------------------------------------------------------------------------------- /src/components/ButtonMore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ButtonMore/index.ts -------------------------------------------------------------------------------- /src/components/Callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Callback.tsx -------------------------------------------------------------------------------- /src/components/Comments/Comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Comments/Comments.tsx -------------------------------------------------------------------------------- /src/components/Comments/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Comments/comments.scss -------------------------------------------------------------------------------- /src/components/Comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Comments/index.ts -------------------------------------------------------------------------------- /src/components/Community/BigUserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Community/BigUserIcon.tsx -------------------------------------------------------------------------------- /src/components/Community/Community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Community/Community.tsx -------------------------------------------------------------------------------- /src/components/Community/__BigUserIcon.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Community/__BigUserIcon.spec.tsx -------------------------------------------------------------------------------- /src/components/Community/community.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Community/community.scss -------------------------------------------------------------------------------- /src/components/Community/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Community/index.ts -------------------------------------------------------------------------------- /src/components/DashBoard/DashBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/DashBoard/DashBoard.tsx -------------------------------------------------------------------------------- /src/components/DashBoard/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/DashBoard/dashboard.scss -------------------------------------------------------------------------------- /src/components/DashBoard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/DashBoard/index.ts -------------------------------------------------------------------------------- /src/components/FavoritesPanel/FavoritesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FavoritesPanel/FavoritesPanel.tsx -------------------------------------------------------------------------------- /src/components/FavoritesPanel/favorites.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FavoritesPanel/favorites.scss -------------------------------------------------------------------------------- /src/components/FavoritesPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FavoritesPanel/index.ts -------------------------------------------------------------------------------- /src/components/FilterActivities/FilterActivities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FilterActivities/FilterActivities.tsx -------------------------------------------------------------------------------- /src/components/FilterActivities/filteractivities.scss: -------------------------------------------------------------------------------- 1 | @import '../../styles/variable.scss'; 2 | 3 | .types{ 4 | display: flex; 5 | } -------------------------------------------------------------------------------- /src/components/FilterActivities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FilterActivities/index.ts -------------------------------------------------------------------------------- /src/components/FilterPanel/FilterPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FilterPanel/FilterPanel.tsx -------------------------------------------------------------------------------- /src/components/FilterPanel/__FilterPanel.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FilterPanel/__FilterPanel.spec.tsx -------------------------------------------------------------------------------- /src/components/FilterPanel/filterpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FilterPanel/filterpanel.scss -------------------------------------------------------------------------------- /src/components/FilterPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FilterPanel/index.ts -------------------------------------------------------------------------------- /src/components/FollowsPanel/FollowsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FollowsPanel/FollowsPanel.tsx -------------------------------------------------------------------------------- /src/components/FollowsPanel/__FollowsPanel.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FollowsPanel/__FollowsPanel.spec.tsx -------------------------------------------------------------------------------- /src/components/FollowsPanel/followers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FollowsPanel/followers.scss -------------------------------------------------------------------------------- /src/components/FollowsPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/FollowsPanel/index.ts -------------------------------------------------------------------------------- /src/components/Header/AuthImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Header/AuthImage.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/__Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Header/__Header.tsx -------------------------------------------------------------------------------- /src/components/Header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Header/header.scss -------------------------------------------------------------------------------- /src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Header/index.ts -------------------------------------------------------------------------------- /src/components/HocLoadingMore/HocLoadingEmitLimit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HocLoadingMore/HocLoadingEmitLimit.tsx -------------------------------------------------------------------------------- /src/components/HocLoadingMore/HocLoadingMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HocLoadingMore/HocLoadingMore.tsx -------------------------------------------------------------------------------- /src/components/HocLoadingMore/HocMounted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HocLoadingMore/HocMounted.tsx -------------------------------------------------------------------------------- /src/components/HocLoadingMore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HocLoadingMore/index.ts -------------------------------------------------------------------------------- /src/components/HoverActions/HoverActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HoverActions/HoverActions.tsx -------------------------------------------------------------------------------- /src/components/HoverActions/hoveractions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HoverActions/hoveractions.scss -------------------------------------------------------------------------------- /src/components/HoverActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/HoverActions/index.ts -------------------------------------------------------------------------------- /src/components/InfoList/InfoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InfoList/InfoList.tsx -------------------------------------------------------------------------------- /src/components/InfoList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InfoList/index.ts -------------------------------------------------------------------------------- /src/components/InfoList/infolist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InfoList/infolist.scss -------------------------------------------------------------------------------- /src/components/InputRange/InputRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InputRange/InputRange.tsx -------------------------------------------------------------------------------- /src/components/InputRange/__InputRange.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InputRange/__InputRange.spec.tsx -------------------------------------------------------------------------------- /src/components/InputRange/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InputRange/index.ts -------------------------------------------------------------------------------- /src/components/InputRange/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/InputRange/style.scss -------------------------------------------------------------------------------- /src/components/Links/HomeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/HomeLink.tsx -------------------------------------------------------------------------------- /src/components/Links/PlaylistLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/PlaylistLink.tsx -------------------------------------------------------------------------------- /src/components/Links/StreamLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/StreamLink.tsx -------------------------------------------------------------------------------- /src/components/Links/UserLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/UserLink.tsx -------------------------------------------------------------------------------- /src/components/Links/homelink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/homelink.scss -------------------------------------------------------------------------------- /src/components/Links/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/index.ts -------------------------------------------------------------------------------- /src/components/Links/stylelink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Links/stylelink.scss -------------------------------------------------------------------------------- /src/components/LoadingSpinner/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/LoadingSpinner/LoadingSpinner.tsx -------------------------------------------------------------------------------- /src/components/LoadingSpinner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/LoadingSpinner/index.ts -------------------------------------------------------------------------------- /src/components/LoadingSpinner/loadingspinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/LoadingSpinner/loadingspinner.scss -------------------------------------------------------------------------------- /src/components/MiniTrack/MiniTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/MiniTrack/MiniTrack.tsx -------------------------------------------------------------------------------- /src/components/MiniTrack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/MiniTrack/index.ts -------------------------------------------------------------------------------- /src/components/MiniTrack/minitrack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/MiniTrack/minitrack.scss -------------------------------------------------------------------------------- /src/components/MiniUser/MiniUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/MiniUser/MiniUser.tsx -------------------------------------------------------------------------------- /src/components/MiniUser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/MiniUser/index.ts -------------------------------------------------------------------------------- /src/components/MiniUser/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/MiniUser/user.scss -------------------------------------------------------------------------------- /src/components/Operators/Operators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Operators/Operators.tsx -------------------------------------------------------------------------------- /src/components/Operators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Operators/index.ts -------------------------------------------------------------------------------- /src/components/Operators/operators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Operators/operators.scss -------------------------------------------------------------------------------- /src/components/Player/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Player/Player.tsx -------------------------------------------------------------------------------- /src/components/Player/__Playser.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Player/__Playser.spec.tsx -------------------------------------------------------------------------------- /src/components/Player/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Player/index.ts -------------------------------------------------------------------------------- /src/components/Player/player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Player/player.scss -------------------------------------------------------------------------------- /src/components/Playerlist/Playerlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playerlist/Playerlist.tsx -------------------------------------------------------------------------------- /src/components/Playerlist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playerlist/index.ts -------------------------------------------------------------------------------- /src/components/Playerlist/playerlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playerlist/playerlist.scss -------------------------------------------------------------------------------- /src/components/Playlist/Playlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playlist/Playlist.tsx -------------------------------------------------------------------------------- /src/components/Playlist/PlaylistInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playlist/PlaylistInfo.tsx -------------------------------------------------------------------------------- /src/components/Playlist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playlist/index.ts -------------------------------------------------------------------------------- /src/components/Playlist/playlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playlist/playlist.scss -------------------------------------------------------------------------------- /src/components/Playlist/playlistInfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Playlist/playlistInfo.scss -------------------------------------------------------------------------------- /src/components/Profile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Profile/Profile.tsx -------------------------------------------------------------------------------- /src/components/Profile/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Profile/profile.scss -------------------------------------------------------------------------------- /src/components/Route/TransitionRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Route/TransitionRoute.tsx -------------------------------------------------------------------------------- /src/components/SearchPanel/SearchPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/SearchPanel/SearchPanel.tsx -------------------------------------------------------------------------------- /src/components/SearchPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/SearchPanel/index.ts -------------------------------------------------------------------------------- /src/components/SearchPanel/searchpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/SearchPanel/searchpanel.scss -------------------------------------------------------------------------------- /src/components/SidebarItem/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/SidebarItem/SidebarItem.tsx -------------------------------------------------------------------------------- /src/components/SidebarItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/SidebarItem/index.ts -------------------------------------------------------------------------------- /src/components/Stream/Stream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Stream/Stream.tsx -------------------------------------------------------------------------------- /src/components/Stream/StreamExtends.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Stream/StreamExtends.tsx -------------------------------------------------------------------------------- /src/components/Stream/StreamMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Stream/StreamMain.tsx -------------------------------------------------------------------------------- /src/components/Stream/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Stream/index.ts -------------------------------------------------------------------------------- /src/components/Stream/stream.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Stream/stream.scss -------------------------------------------------------------------------------- /src/components/Switch/OpacityTransitionSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Switch/OpacityTransitionSwitch.tsx -------------------------------------------------------------------------------- /src/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/components/Switch/SwitchContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Switch/SwitchContainer.tsx -------------------------------------------------------------------------------- /src/components/Switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Switch/index.ts -------------------------------------------------------------------------------- /src/components/Tabs/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tabs/Tab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/Tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tabs/index.ts -------------------------------------------------------------------------------- /src/components/Tabs/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tabs/tabs.scss -------------------------------------------------------------------------------- /src/components/TrackPager/TrackPager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackPager/TrackPager.tsx -------------------------------------------------------------------------------- /src/components/TrackPager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackPager/index.ts -------------------------------------------------------------------------------- /src/components/TrackPager/track.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackPager/track.scss -------------------------------------------------------------------------------- /src/components/TrackProfile/TrackProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackProfile/TrackProfile.tsx -------------------------------------------------------------------------------- /src/components/TrackProfile/__TrackProfile.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackProfile/__TrackProfile.spec.tsx -------------------------------------------------------------------------------- /src/components/TrackProfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackProfile/index.ts -------------------------------------------------------------------------------- /src/components/TrackProfile/trackprofile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackProfile/trackprofile.scss -------------------------------------------------------------------------------- /src/components/TrackTitleView/TrackTitleView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackTitleView/TrackTitleView.tsx -------------------------------------------------------------------------------- /src/components/TrackTitleView/__TrackTitleVIew.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackTitleView/__TrackTitleVIew.spec.tsx -------------------------------------------------------------------------------- /src/components/TrackTitleView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackTitleView/index.ts -------------------------------------------------------------------------------- /src/components/TrackTitleView/ttview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/TrackTitleView/ttview.scss -------------------------------------------------------------------------------- /src/components/Tracklist/Tracklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tracklist/Tracklist.tsx -------------------------------------------------------------------------------- /src/components/Tracklist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tracklist/index.ts -------------------------------------------------------------------------------- /src/components/Tracklist/tracklist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/Tracklist/tracklist.scss -------------------------------------------------------------------------------- /src/components/ViewAll/ViewAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ViewAll/ViewAll.tsx -------------------------------------------------------------------------------- /src/components/ViewAll/__ViewAll.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ViewAll/__ViewAll.spec.tsx -------------------------------------------------------------------------------- /src/components/ViewAll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ViewAll/index.ts -------------------------------------------------------------------------------- /src/components/ViewAll/viewall.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/ViewAll/viewall.scss -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/components/soundcloud.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/components/soundcloud.scss -------------------------------------------------------------------------------- /src/constants/authentification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/constants/authentification.ts -------------------------------------------------------------------------------- /src/constants/fetchTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/constants/fetchTypes.ts -------------------------------------------------------------------------------- /src/constants/requestTypes.ts: -------------------------------------------------------------------------------- 1 | export const POST_TARCK_COMMENT = 'post_track_comment'; 2 | -------------------------------------------------------------------------------- /src/constants/sidebarItemType.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/constants/sortTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/constants/sortTypes.ts -------------------------------------------------------------------------------- /src/constants/storeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/constants/storeTypes.ts -------------------------------------------------------------------------------- /src/constants/trackTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/constants/trackTypes.ts -------------------------------------------------------------------------------- /src/interfaces/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/interfaces/interface.ts -------------------------------------------------------------------------------- /src/services/ColorThief.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/ColorThief.ts -------------------------------------------------------------------------------- /src/services/EventHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/EventHelper.ts -------------------------------------------------------------------------------- /src/services/Fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/Fetch.ts -------------------------------------------------------------------------------- /src/services/SmoothWindowScrollPollyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/SmoothWindowScrollPollyfill.ts -------------------------------------------------------------------------------- /src/services/__mocks__/Fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/__mocks__/Fetch.ts -------------------------------------------------------------------------------- /src/services/docMethos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/docMethos.ts -------------------------------------------------------------------------------- /src/services/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/logger.ts -------------------------------------------------------------------------------- /src/services/soundcloundApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/soundcloundApi.ts -------------------------------------------------------------------------------- /src/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/services/utils.ts -------------------------------------------------------------------------------- /src/store/ActivitiesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/ActivitiesStore.ts -------------------------------------------------------------------------------- /src/store/BaseStreamStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/BaseStreamStore.ts -------------------------------------------------------------------------------- /src/store/CommentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/CommentStore.ts -------------------------------------------------------------------------------- /src/store/PerformanceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/PerformanceStore.ts -------------------------------------------------------------------------------- /src/store/PlayerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/PlayerStore.ts -------------------------------------------------------------------------------- /src/store/SessionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/SessionStore.ts -------------------------------------------------------------------------------- /src/store/TrackStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/TrackStore.ts -------------------------------------------------------------------------------- /src/store/UserStore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/UserStore.spec.ts -------------------------------------------------------------------------------- /src/store/UserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/UserStore.ts -------------------------------------------------------------------------------- /src/store/__test__/__ActivitiesStore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/__test__/__ActivitiesStore.spec.ts -------------------------------------------------------------------------------- /src/store/__test__/__CommentStore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/__test__/__CommentStore.spec.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/medias.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/styles/medias.scss -------------------------------------------------------------------------------- /src/styles/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/src/styles/variable.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dive2Pro/SoundCloudMobx/HEAD/yarn.lock --------------------------------------------------------------------------------