mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
Consolidate where the demo site reaches out into Webamp (#1056)
This commit is contained in:
parent
0c8e2fe4b0
commit
1809cc74e8
13 changed files with 45 additions and 17 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import WebampLazy from "../../js/webampLazy";
|
||||
import { WebampLazy } from "./Webamp";
|
||||
import { Suspense } from "react";
|
||||
import WebampIcon from "./WebampIcon";
|
||||
// import Mp3Icon from "./Mp3Icon";
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
import WebampLazy from "../../js/webampLazy";
|
||||
import { WebampLazy, loadPresets } from "./Webamp";
|
||||
import { useCallback } from "react";
|
||||
// @ts-ignore
|
||||
import iconLarge from "../images/manifest/icon-96x96.png";
|
||||
// @ts-ignore
|
||||
import iconSmall from "../images/manifest/icon-48x48.png";
|
||||
import DesktopIcon from "./DesktopIcon";
|
||||
import * as Actions from "../../js/actionCreators";
|
||||
|
||||
const iconUrl = window.devicePixelRatio > 1 ? iconLarge : iconSmall;
|
||||
|
||||
|
|
@ -25,7 +24,7 @@ const MilkIcon = ({ webamp, preset }: Props) => {
|
|||
},
|
||||
} as const;
|
||||
|
||||
webamp.store.dispatch(Actions.loadPresets([statePreset]));
|
||||
webamp.store.dispatch(loadPresets([statePreset]));
|
||||
}, [preset, webamp]);
|
||||
return (
|
||||
<DesktopIcon
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
import WebampLazy from "../../js/webampLazy";
|
||||
import { WebampLazy, URLTrack } from "./Webamp";
|
||||
import { useCallback } from "react";
|
||||
// @ts-ignore
|
||||
import iconLarge from "../images/manifest/icon-96x96.png";
|
||||
// @ts-ignore
|
||||
import iconSmall from "../images/manifest/icon-48x48.png";
|
||||
import DesktopIcon from "./DesktopIcon";
|
||||
import { URLTrack } from "../../js/types";
|
||||
|
||||
const iconUrl = window.devicePixelRatio > 1 ? iconLarge : iconSmall;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import WebampLazy from "../../js/webampLazy";
|
||||
import { WebampLazy } from "./Webamp";
|
||||
// @ts-ignore
|
||||
import iconSmall from "../images/icons/paint-file-32x32.png";
|
||||
import DesktopIcon from "./DesktopIcon";
|
||||
|
|
|
|||
30
packages/webamp/demo/js/Webamp.ts
Normal file
30
packages/webamp/demo/js/Webamp.ts
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
// This is a temporary module intended to collect all the places where the demo
|
||||
// site reaches out into Webamp code. The goal is to eventually have the demo
|
||||
// site consume the actual Webamp NPM module, so hopefully this module can go
|
||||
// away once we've figured out how to expose all the things that the demo site
|
||||
// needs, or reduce the things that the demo site needs access to.
|
||||
|
||||
export { default as WebampLazy } from "../../js/webampLazy";
|
||||
export {
|
||||
ButterchurnOptions,
|
||||
Track,
|
||||
AppState,
|
||||
URLTrack,
|
||||
FilePicker,
|
||||
Action,
|
||||
} from "../../js/types";
|
||||
export { WINDOWS } from "../../js/constants";
|
||||
export {
|
||||
STEP_MARQUEE,
|
||||
UPDATE_TIME_ELAPSED,
|
||||
UPDATE_WINDOW_POSITIONS,
|
||||
SET_VOLUME,
|
||||
SET_BALANCE,
|
||||
SET_BAND_VALUE,
|
||||
DISABLE_MARQUEE,
|
||||
TOGGLE_REPEAT,
|
||||
TOGGLE_SHUFFLE,
|
||||
SET_EQ_AUTO,
|
||||
SET_DUMMY_VIZ_DATA,
|
||||
} from "../../js/actionTypes";
|
||||
export { loadPresets } from "../../js/actionCreators";
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
import WebampLazy from "../../js/webampLazy";
|
||||
import { WebampLazy } from "./Webamp";
|
||||
import { useEffect, useState } from "react";
|
||||
// @ts-ignore
|
||||
import iconSmall from "../images/icons/winamp2-32x32.png";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { ButterchurnOptions } from "../../js/types";
|
||||
import { ButterchurnOptions } from "./Webamp";
|
||||
|
||||
const KNOWN_PRESET_URLS_REGEXES = [
|
||||
/^https:\/\/unpkg\.com\/butterchurn-presets\/.*\.json$/,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Track, AppState, URLTrack } from "../../js/types";
|
||||
import { Track, AppState, URLTrack } from "./Webamp";
|
||||
// @ts-ignore
|
||||
import llamaAudio from "../mp3/llama-2.91.mp3";
|
||||
import { DeepPartial } from "redux";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { FilePicker } from "../../js/types";
|
||||
import { FilePicker } from "./Webamp";
|
||||
|
||||
interface DropboxFile {
|
||||
link: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { log, GoogleAnalyticsEvent } from "./logger";
|
||||
import { Action } from "../../js/types";
|
||||
import { Action } from "./Webamp";
|
||||
|
||||
function logEventFromAction(action: Action): GoogleAnalyticsEvent | null {
|
||||
switch (action.type) {
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ import * as Sentry from "@sentry/browser";
|
|||
import ReactDOM from "react-dom";
|
||||
import createMiddleware from "redux-sentry-middleware";
|
||||
import isButterchurnSupported from "butterchurn/lib/isSupported.min";
|
||||
import { WINDOWS } from "../../js/constants";
|
||||
import { loggerMiddleware } from "./eventLogger";
|
||||
|
||||
import WebampLazy from "../../js/webampLazy";
|
||||
import {
|
||||
WebampLazy,
|
||||
WINDOWS,
|
||||
STEP_MARQUEE,
|
||||
UPDATE_TIME_ELAPSED,
|
||||
UPDATE_WINDOW_POSITIONS,
|
||||
|
|
@ -20,7 +20,7 @@ import {
|
|||
TOGGLE_SHUFFLE,
|
||||
SET_EQ_AUTO,
|
||||
SET_DUMMY_VIZ_DATA,
|
||||
} from "../../js/actionTypes";
|
||||
} from "./Webamp";
|
||||
|
||||
import { getButterchurnOptions } from "./butterchurnOptions";
|
||||
import dropboxFilePicker from "./dropboxFilePicker";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import WebampLazy from "../../js/webampLazy";
|
||||
import { WebampLazy } from "./Webamp";
|
||||
|
||||
export default function enableMediaSession(webamp: WebampLazy) {
|
||||
if ("mediaSession" in navigator) {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { DeepPartial } from "redux";
|
||||
import { AppState } from "../../js/types";
|
||||
import { AppState } from "./Webamp";
|
||||
|
||||
const defaultTracksState = {
|
||||
"0": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue