├── .gitattributes ├── .github ├── cloudflare │ ├── deploy-app.sh │ ├── deploy-doc.sh │ └── deploy-typedoc.sh └── workflows │ ├── build-deploy.yml │ ├── build-hass-addon.yml │ ├── release.yml │ └── workflow-file-open-source.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── .storybook ├── globals.css ├── main.ts ├── manager-head.html ├── manager.ts ├── preview-head.html ├── preview.tsx └── storyTheme.ts ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TERMS.md ├── changelog.bat ├── craco.config.cjs ├── electron-builder.json ├── eslint.config.mjs ├── extraResources └── Readme.md ├── links.md ├── npm_dev.log ├── package.json ├── patches └── react-zoom-pan-pinch+3.7.0.patch ├── public ├── __init__.py ├── browserconfig.xml ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── frontend_config.json ├── icon.ico ├── icon.png ├── icon_16x16.png ├── icon_16x16a.png ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── serviceWorker.js ├── src ├── App.css ├── App.tsx ├── api │ ├── ledfx.ts │ ├── ledfx.types.ts │ └── typedoc.json ├── app-icon.png ├── app │ ├── app │ │ ├── handlers.mts │ │ ├── instances.mts │ │ ├── media.ts │ │ ├── otp.ts │ │ ├── protocol.mts │ │ ├── toast.ts │ │ └── utils │ │ │ ├── coreFile.mts │ │ │ ├── coreParams.mts │ │ │ ├── corePath.mts │ │ │ ├── createLedFxFolder.mts │ │ │ ├── defaultCoreParams.mts │ │ │ ├── getReduxPath.mts │ │ │ ├── isCC.mts │ │ │ ├── runCore.mts │ │ │ ├── startCore.mts │ │ │ ├── store.mts │ │ │ ├── tray.mts │ │ │ └── win.mts │ ├── electron.ts │ ├── preload.cts │ └── renderer.ts ├── assets │ ├── DMG_BG.jpg │ ├── blademod.svg │ ├── bottom-flip.svg │ ├── bottom-left.svg │ ├── bottom-right.svg │ ├── bottom-snake-flip.svg │ ├── bottom-snake.svg │ ├── bottom.svg │ ├── fireworks.jpg │ ├── fonts │ │ ├── MaterialIcons-Regular.woff2 │ │ ├── Nunito-Regular.ttf │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.woff │ │ └── materialdesignicons-webfont.woff2 │ ├── left-flip.svg │ ├── left-snake-flip.svg │ ├── left-snake.svg │ ├── left.svg │ ├── linkSuccessful.svg │ ├── logo.png │ ├── materialdesignicons.css │ ├── mixedContent1.jpeg │ ├── mixedContent2.jpeg │ ├── newyear.jpg │ ├── right-flip.svg │ ├── right-snake-flip.svg │ ├── right-snake.svg │ ├── right.svg │ ├── ring.png │ ├── top-flip.svg │ ├── top-left.svg │ ├── top-right.svg │ ├── top-snake-flip.svg │ ├── top-snake.svg │ ├── top.svg │ ├── transitions.gif │ ├── waves.svg │ └── xmas.png ├── components │ ├── AddButton │ │ ├── AddB.styles.tsx │ │ ├── AddButton.props.tsx │ │ └── AddButton.tsx │ ├── AssetPicker │ │ └── AssetPicker.tsx │ ├── Bars │ │ ├── BarBottom.tsx │ │ ├── BarLeft.styles.tsx │ │ ├── BarLeft.tsx │ │ ├── BarMessage.tsx │ │ ├── BarTop.tsx │ │ └── README.md │ ├── ButtonBar.styles.tsx │ ├── ButtonBar.tsx │ ├── CrashButton.tsx │ ├── Debug │ │ ├── BeautifulDiagWidget.tsx │ │ ├── DiagWidget.tsx │ │ └── VirtualDiag.tsx │ ├── Dialogs │ │ ├── AboutDialog.tsx │ │ ├── AddDeviceDialog.tsx │ │ ├── AddExistingSegmentDialog.tsx │ │ ├── AddIntegrationDialog.tsx │ │ ├── AddVirtualDialog.tsx │ │ ├── AddWledDialog.tsx │ │ ├── AssetManager.tsx │ │ ├── DeleteColors.tsx │ │ ├── Download.tsx │ │ ├── EffectTypeDialog.tsx │ │ ├── FrontendPixelsTooSmall.tsx │ │ ├── HostManager.tsx │ │ ├── Instances.tsx │ │ ├── IntroDialog.tsx │ │ ├── NoHostDialog.tsx │ │ ├── QrConnector.tsx │ │ ├── README.md │ │ ├── SceneDialogs │ │ │ ├── AddSceneDialog.tsx │ │ │ ├── EditSceneDialog.tsx │ │ │ ├── TooltipImage.tsx │ │ │ ├── TooltipMidi.tsx │ │ │ └── TooltipTags.tsx │ │ ├── SmartBar.tsx │ │ ├── Stepper.tsx │ │ └── _AddSegmentDialog.tsx │ ├── DnD │ │ ├── OrderList.tsx │ │ ├── OrderListBase.tsx │ │ └── OrderListDialog.tsx │ ├── FireTv │ │ ├── FireTv.props.tsx │ │ ├── FireTv.tsx │ │ ├── FireTvBar.tsx │ │ ├── FireTvDebugger.tsx │ │ ├── VirtualCursor.tsx │ │ ├── android.bridge.ts │ │ ├── android.d.ts │ │ ├── useAndroidUpdateChecker.ts │ │ ├── useFireTv.ts │ │ ├── useFireTvStore.ts │ │ └── useVirtualCursor.tsx │ ├── Gamepad │ │ ├── Assign.tsx │ │ ├── Gamepad.props.tsx │ │ ├── Gamepad.tsx │ │ ├── GamepadSvg.tsx │ │ ├── GamepadSvgPs3.tsx │ │ ├── GamepadSvgPs4.tsx │ │ ├── GamepadSvgPs5.tsx │ │ ├── OneEffect.tsx │ │ ├── OneShot.tsx │ │ ├── PadData.tsx │ │ └── PadTitle.tsx │ ├── GlobalActionBar.tsx │ ├── Icons │ │ ├── BladeIcon │ │ │ ├── BladeIcon.interface.tsx │ │ │ ├── BladeIcon.stories.tsx │ │ │ └── BladeIcon.tsx │ │ ├── FX.css │ │ ├── FX.svg │ │ ├── FX.tsx │ │ ├── HomeAssistant.tsx │ │ ├── Novation.tsx │ │ ├── RzrLogo.tsx │ │ ├── RzrMouse.tsx │ │ ├── Wled.tsx │ │ ├── YZ-Logo2.tsx │ │ ├── YZ-Logo3.tsx │ │ └── waves.tsx │ ├── Integrations │ │ ├── QLC │ │ │ ├── DialogAddEventListener.tsx │ │ │ ├── DialogAddEventListnerDropDown.tsx │ │ │ └── QLCTriggerTable.tsx │ │ ├── README.md │ │ ├── Spotify │ │ │ ├── SpotifyAuthButton.tsx │ │ │ ├── SpotifyFabFree.tsx │ │ │ ├── SpotifyFabPro.tsx │ │ │ ├── SpotifyProvider.tsx │ │ │ ├── Unsorted │ │ │ │ ├── AudioAnalysis │ │ │ │ │ ├── Chart.tsx │ │ │ │ │ ├── ChartSize.tsx │ │ │ │ │ ├── ChordButtons.tsx │ │ │ │ │ ├── Layout.tsx │ │ │ │ │ ├── PitchSelect.tsx │ │ │ │ │ └── SectionChart.tsx │ │ │ │ └── SpotifyFeatures.tsx │ │ │ └── Widgets │ │ │ │ ├── FpsViewer │ │ │ │ ├── FpsView.tsx │ │ │ │ └── FpsViewer.tsx │ │ │ │ ├── GlobalColorWidget │ │ │ │ ├── GlobalColorWidget.tsx │ │ │ │ └── GlobalColorWidgetFloating.tsx │ │ │ │ ├── Keybinding │ │ │ │ ├── Keybinding.styles.tsx │ │ │ │ ├── Keybinding.tsx │ │ │ │ ├── KeybindingComponents.tsx │ │ │ │ └── KeybindingFloating.tsx │ │ │ │ ├── MGraphFlotaing │ │ │ │ ├── MGraphFloating.tsx │ │ │ │ ├── MgFloating.styles.tsx │ │ │ │ └── MgFloating.tsx │ │ │ │ ├── Mp │ │ │ │ ├── Mp.styles.tsx │ │ │ │ ├── Mp.tsx │ │ │ │ └── MpFloating.tsx │ │ │ │ ├── PixelGraphSettings │ │ │ │ ├── PgsFloating.styles.tsx │ │ │ │ ├── PgsFloating.tsx │ │ │ │ └── PixelGraphSettingsFloating.tsx │ │ │ │ ├── SongDetector │ │ │ │ ├── SdFloating.styles.tsx │ │ │ │ ├── SdFloating.tsx │ │ │ │ ├── SongDetector.tsx │ │ │ │ └── SongDetectorFloating.tsx │ │ │ │ ├── SpotifyWidgetFree │ │ │ │ ├── SpotifyChangeURLDialog.tsx │ │ │ │ └── SpotifyWidgetFree.tsx │ │ │ │ └── SpotifyWidgetPro │ │ │ │ ├── SpAudioFeatures │ │ │ │ ├── SpAudioFeatures.tsx │ │ │ │ └── SpRadarChart.tsx │ │ │ │ ├── SpControls.tsx │ │ │ │ ├── SpFloating.tsx │ │ │ │ ├── SpLayoutButtons.tsx │ │ │ │ ├── SpPlaylist.tsx │ │ │ │ ├── SpSceneTrigger.tsx │ │ │ │ ├── SpTexter.tsx │ │ │ │ ├── SpTexterForm.tsx │ │ │ │ ├── SpTrack.tsx │ │ │ │ ├── SpTriggerTable.tsx │ │ │ │ ├── SpVolume.tsx │ │ │ │ ├── SpWidgetPro.styles.tsx │ │ │ │ ├── SpWidgetPro.tsx │ │ │ │ └── SpotifyUtil.tsx │ │ └── Youtube │ │ │ ├── ChangeYoutubeURLDialog.tsx │ │ │ ├── YoutubeWidget.tsx │ │ │ └── YoutubeWidgetBar.tsx │ ├── MGraph.tsx │ ├── Menu │ │ ├── BladeMenu.tsx │ │ └── BladeMenuItem.tsx │ ├── Midi │ │ ├── ColorTypePicker.tsx │ │ ├── LaunchpadButton.tsx │ │ ├── LaunchpadButtonMap.tsx │ │ ├── LaunchpadColors.tsx │ │ ├── LaunchpadSettings.tsx │ │ ├── LpColorPicker.tsx │ │ ├── MidiInputDialog.tsx │ │ └── MidiListener.tsx │ ├── MuiSwitch.tsx │ ├── NoYet.tsx │ ├── Number.tsx │ ├── OneTimePassword.tsx │ ├── PixelGraph │ │ ├── PixelGraph.tsx │ │ ├── PixelGraphBase.tsx │ │ ├── PixelGraphCanvas.tsx │ │ ├── PixelGraphCanvasOffscreen.tsx │ │ ├── PixelGraphCanvasOffscreenWebGL.tsx │ │ └── PixelGraphCanvasOffscreenWebGLSync.tsx │ ├── Popover │ │ ├── Popover.interface.tsx │ │ ├── Popover.stories.tsx │ │ └── Popover.tsx │ ├── QrScanner │ │ ├── QrCodeWithLogo.tsx │ │ ├── QrScanner.props.ts │ │ └── QrScanner.tsx │ ├── README.md │ ├── SchemaForm │ │ ├── EffectsSchemaForm │ │ │ ├── EffectSchemaForm.props.tsx │ │ │ ├── EffectSchemaForm.stories.tsx │ │ │ └── EffectSchemaForm.tsx │ │ ├── README.md │ │ ├── SchemaForm │ │ │ ├── SchemaForm.examples.stories.tsx │ │ │ ├── SchemaForm.props.tsx │ │ │ ├── SchemaForm.stories.tsx │ │ │ └── SchemaForm.tsx │ │ └── components │ │ │ ├── BladeFrame.tsx │ │ │ ├── Boolean │ │ │ ├── BBolean.tsx │ │ │ ├── BBoolean.props.tsx │ │ │ ├── BBoolean.stories.tsx │ │ │ ├── BladeBoolean.props.tsx │ │ │ ├── BladeBoolean.stories.tsx │ │ │ └── BladeBoolean.tsx │ │ │ ├── DropDown │ │ │ ├── DropDown.examples.stories.tsx │ │ │ ├── DropDown.props.tsx │ │ │ ├── DropDown.stories.tsx │ │ │ ├── DropDown.styles.tsx │ │ │ ├── DropDown.tsx │ │ │ └── DropDown.wrapper.tsx │ │ │ ├── Gif │ │ │ ├── GifFrame.tsx │ │ │ ├── GifFramePicker.tsx │ │ │ └── GifPicker.tsx │ │ │ ├── GradientPicker │ │ │ ├── GradientPicker.props.tsx │ │ │ ├── GradientPicker.stories.tsx │ │ │ ├── GradientPicker.styles.tsx │ │ │ ├── GradientPicker.tsx │ │ │ └── GradientPicker.wrapper.tsx │ │ │ ├── Number │ │ │ ├── BladeSlider.props.tsx │ │ │ ├── BladeSlider.stories.tsx │ │ │ ├── BladeSlider.styles.tsx │ │ │ ├── BladeSlider.tsx │ │ │ └── SliderInput.tsx │ │ │ ├── String │ │ │ ├── BladeSelect.props.tsx │ │ │ ├── BladeSelect.stories.tsx │ │ │ └── BladeSelect.tsx │ │ │ ├── Toggle.tsx │ │ │ ├── Tooltip.tsx │ │ │ └── VirtualPicker │ │ │ ├── VirtualPicker.tsx │ │ │ └── VirtualPickerSchemaForm.tsx │ ├── SeeDocs │ │ └── SeeDocs.tsx │ ├── Tours │ │ ├── README.md │ │ ├── Tour.tsx │ │ ├── Tour2dVirtual.tsx │ │ ├── TourDevice.tsx │ │ ├── TourDevices.tsx │ │ ├── TourEffect.tsx │ │ ├── TourHome.tsx │ │ ├── TourIntegrations.tsx │ │ ├── TourScenes.tsx │ │ └── TourSettings.tsx │ └── Webcam │ │ ├── Webcam.tsx │ │ ├── matrixUtils.ts │ │ ├── pixelMapper.ts │ │ ├── pixelUtils.ts │ │ └── utils │ │ ├── adjust.ts │ │ ├── calculateImageDifference.ts │ │ ├── calibrate.ts │ │ ├── createImageFromData.ts │ │ ├── decodeBase64ToImageData.ts │ │ ├── getLedCount.ts │ │ ├── initialize.ts │ │ ├── iterativeOnOnlyOne.ts │ │ ├── oneLed.ts │ │ ├── preadjust.ts │ │ ├── processImages.ts │ │ ├── setWledBrightness.ts │ │ ├── wait.ts │ │ ├── wled.ts │ │ └── wledGet.ts ├── electronsquirrelstartup.d..ts ├── icons │ ├── mac │ │ └── icon.icns │ ├── png │ │ ├── 1024x1024.png │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ ├── banner.png │ │ ├── launchpad.png │ │ ├── openrgb.png │ │ └── wled.png │ └── win │ │ └── icon.ico ├── index.css ├── index.tsx ├── launchpad.d.ts ├── pages │ ├── Device │ │ ├── Cloud │ │ │ ├── Cloud.tsx │ │ │ └── CloudComponents.tsx │ │ ├── Device.tsx │ │ ├── Effects.tsx │ │ ├── EffectsComplex.tsx │ │ ├── Frequencies.tsx │ │ ├── PresetButton.tsx │ │ ├── Presets.tsx │ │ ├── PresetsComplex.tsx │ │ ├── StreamTo.tsx │ │ ├── Transition.tsx │ │ ├── Troubleshoot.styles.tsx │ │ └── TroubleshootButton.tsx │ ├── Devices │ │ ├── DeviceCard │ │ │ ├── DeviceCard.interface.tsx │ │ │ ├── DeviceCard.stories.tsx │ │ │ ├── DeviceCard.styles.tsx │ │ │ ├── DeviceCard.tsx │ │ │ └── DeviceCard.wrapper.tsx │ │ ├── Devices.tsx │ │ └── EditVirtuals │ │ │ ├── EditMatrix │ │ │ ├── Actions │ │ │ │ ├── assignPixels.ts │ │ │ │ ├── hexColor.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── moveSelectedGroupDown.ts │ │ │ │ ├── moveSelectedGroupLeft.ts │ │ │ │ ├── moveSelectedGroupRight.ts │ │ │ │ └── moveSelectedGroupUp.ts │ │ │ ├── AssignPixelDialog.tsx │ │ │ ├── AssignPixelDialogContext.ts │ │ │ ├── Draggable.tsx │ │ │ ├── Droppable.tsx │ │ │ ├── M.styles.tsx │ │ │ ├── M.tsx │ │ │ ├── M.utils.tsx │ │ │ ├── MContextMenu.tsx │ │ │ ├── MControls │ │ │ │ ├── DimensionSliders.tsx │ │ │ │ ├── DnDModeTabs.tsx │ │ │ │ ├── GroupControls.tsx │ │ │ │ ├── LayoutTools.tsx │ │ │ │ ├── MActionBar.tsx │ │ │ │ └── MControls.tsx │ │ │ ├── MDialogTitle.tsx │ │ │ ├── MFillSelector.tsx │ │ │ ├── MSlider.tsx │ │ │ ├── MSwitch.tsx │ │ │ ├── MWrapper.tsx │ │ │ ├── MatrixEditorAPI.types.ts │ │ │ ├── MatrixEditorContext.ts │ │ │ ├── MatrixStudio.tsx │ │ │ ├── Pixel.tsx │ │ │ ├── processMatrix.ts │ │ │ ├── useAssignPixelDialog.ts │ │ │ └── useMatrixEditor.ts │ │ │ ├── EditVirtuals.styles.tsx │ │ │ ├── EditVirtuals.tsx │ │ │ ├── PixelSlider.tsx │ │ │ ├── Segment.styles.tsx │ │ │ └── Segment.tsx │ ├── Graph │ │ └── Graph.tsx │ ├── Home │ │ ├── BladeScene.tsx │ │ ├── Dashboard.tsx │ │ ├── DashboardDetailed.tsx │ │ ├── DbButton.tsx │ │ ├── DbConfig.tsx │ │ ├── DbDevices.tsx │ │ ├── DbGlobalActions.tsx │ │ ├── DbLinks.tsx │ │ ├── DbRow.tsx │ │ ├── DbScenes.tsx │ │ ├── DbScenesBackendPL.tsx │ │ ├── DbScenesPL.tsx │ │ ├── DbStats.tsx │ │ ├── Gauge.tsx │ │ └── Home.tsx │ ├── Integrations │ │ ├── IntegrationCard │ │ │ ├── IntegrationCard.styles.tsx │ │ │ ├── IntegrationCard.tsx │ │ │ ├── IntegrationCardQLC.tsx │ │ │ └── IntegrationCardSpotify.tsx │ │ ├── Integrations.tsx │ │ ├── QLCplus │ │ │ ├── EventTable.tsx │ │ │ └── QLCScreen │ │ │ │ ├── QLCScreen.props.tsx │ │ │ │ └── QLCScreen.tsx │ │ └── Spotify │ │ │ ├── SpotifyLoginRedirect.tsx │ │ │ └── SpotifyScreen │ │ │ ├── SpotifyScreen.props.tsx │ │ │ └── SpotifyScreen.tsx │ ├── Lock.tsx │ ├── Login │ │ └── LoginRedirect.tsx │ ├── Pages.tsx │ ├── ReactFlow │ │ ├── LedFxFlow.tsx │ │ ├── PlaylistNode.tsx │ │ ├── ReactFlowPage.tsx │ │ ├── Readme.md │ │ ├── SceneNode.tsx │ │ ├── SenderNodeEffect.tsx │ │ ├── SenderNodeOmni.tsx │ │ └── VirtualNode.tsx │ ├── Scenes │ │ ├── BackendPlaylist.tsx │ │ ├── BackendPlaylistPage.tsx │ │ ├── ExpanderCard.tsx │ │ ├── PlaylistCard.tsx │ │ ├── PlaylistCardMenu.tsx │ │ ├── SceneCard.tsx │ │ ├── Scenes.styles.tsx │ │ ├── Scenes.tsx │ │ ├── ScenesImage.tsx │ │ ├── ScenesMenu.tsx │ │ ├── ScenesMostUsed.tsx │ │ ├── ScenesPlaylist.tsx │ │ ├── ScenesPlaylistMenu.tsx │ │ ├── ScenesRecent.tsx │ │ └── ScenesTable.tsx │ ├── Settings │ │ ├── AlphaFeatures.tsx │ │ ├── AudioCard.tsx │ │ ├── BetaCoreFeatures.tsx │ │ ├── BetaFeatures.tsx │ │ ├── ClientAudioCard.tsx │ │ ├── DashboardCard.tsx │ │ ├── DevicesSection.tsx │ │ ├── EffectsCard.tsx │ │ ├── ExpertFeatures.tsx │ │ ├── GeneralCard.tsx │ │ ├── IntegrationsSection.tsx │ │ ├── LogFilterSelect.tsx │ │ ├── MidiCard.tsx │ │ ├── PixelGraphsSettingsCard.tsx │ │ ├── ScenesSection.tsx │ │ ├── Settings.tsx │ │ ├── SettingsComponents.tsx │ │ ├── UICard.tsx │ │ ├── Webaudio.tsx │ │ └── WledCard.tsx │ └── User │ │ ├── AvatarPicker │ │ ├── AvatarPicker.interface.tsx │ │ ├── AvatarPicker.tsx │ │ └── avatarUtils.ts │ │ └── User.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── service-worker.ts ├── serviceWorkerRegistration.ts ├── store │ ├── api │ │ ├── storeActions.tsx │ │ ├── storeAssets.tsx │ │ ├── storeColors.tsx │ │ ├── storeConfig.tsx │ │ ├── storeDevices.tsx │ │ ├── storeIntegrations.tsx │ │ ├── storeIntegrationsSpotify.tsx │ │ ├── storePlaylist.tsx │ │ ├── storePresets.tsx │ │ ├── storeScenes.tsx │ │ └── storeVirtuals.tsx │ ├── migrate.ts │ ├── ui-persist │ │ ├── storeUIpersist.tsx │ │ └── storeUIpersistActions.tsx │ ├── ui │ │ ├── SpState.tsx │ │ ├── SpotifyState.tsx │ │ ├── WebPlaybackTrack.tsx │ │ ├── storeCloud.tsx │ │ ├── storeDialogs.tsx │ │ ├── storeFeatures.tsx │ │ ├── storeGeneral.tsx │ │ ├── storeMatrix.tsx │ │ ├── storeMidi.tsx │ │ ├── storeNotifications.tsx │ │ ├── storePad.tsx │ │ ├── storeQLC.tsx │ │ ├── storeQLCActions.tsx │ │ ├── storeSongDectector.tsx │ │ ├── storeSpotify.tsx │ │ ├── storeSpotifyActions.tsx │ │ ├── storeTours.tsx │ │ ├── storeUI.tsx │ │ ├── storeUser.tsx │ │ ├── storeVideo.tsx │ │ ├── storeWebAudio.tsx │ │ └── storeYoutube.tsx │ └── useStore.ts ├── stories │ ├── AppStructure.mdx │ ├── Doc │ │ ├── Api.stories.tsx │ │ ├── Doc.tsx │ │ └── configApiYaml.ts │ ├── GettingStarted.mdx │ ├── Guides.mdx │ └── assets │ │ ├── component.png │ │ ├── components.png │ │ ├── fonts │ │ ├── MaterialIcons-Regular.woff2 │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.woff │ │ └── materialdesignicons-webfont.woff2 │ │ ├── pageComponents.png │ │ ├── pages.png │ │ └── src.png ├── themes │ └── AppThemes.tsx ├── utils │ ├── ErrorBoundary.tsx │ ├── FiledropProvider.tsx │ ├── MidiDevices │ │ ├── BaseDevice.ts │ │ ├── LaunchPadDevice.ts │ │ ├── LaunchkeyDevice.ts │ │ ├── LaunchkeyMK3 │ │ │ └── LaunchkeyMK3.ts │ │ ├── LaunchkeyMiniMK3 │ │ │ └── LaunchkeyMiniMK3.ts │ │ ├── LaunchpadMK2 │ │ │ └── LaunchpadMK2.ts │ │ ├── LaunchpadS │ │ │ ├── LaunchpadS.ts │ │ │ └── lpsColors.ts │ │ ├── LaunchpadX │ │ │ ├── LaunchpadX.ts │ │ │ └── lpColors.ts │ │ ├── MidiDevices.ts │ │ ├── colorHelper.ts │ │ └── fnFactory.ts │ ├── Websocket │ │ ├── WebSocketManager.tsx │ │ ├── WebSocketProvider.tsx │ │ └── websocket.config.ts │ ├── commandHandler.ts │ ├── commandIcons.ts │ ├── getBaseUrl.ts │ ├── helpers.ts │ ├── log.ts │ ├── login.ts │ ├── nameToIcon.ts │ ├── navigateToRoot.ts │ ├── scrollToTop.ts │ ├── spotifyConstants.ts │ ├── spotifyProxies.ts │ ├── useClickOutside.ts │ ├── useWakeLook.ts │ └── useWindowDimension.ts └── workers │ ├── pixelGraphWorker.ts │ ├── pixelGraphWorkerWebGL.ts │ └── timerWorker.ts ├── tsconfig.electron.json ├── tsconfig.json ├── yarn.lock ├── yarn_electron.log └── yarn_start.log /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/cloudflare/deploy-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/cloudflare/deploy-app.sh -------------------------------------------------------------------------------- /.github/cloudflare/deploy-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/cloudflare/deploy-doc.sh -------------------------------------------------------------------------------- /.github/cloudflare/deploy-typedoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/cloudflare/deploy-typedoc.sh -------------------------------------------------------------------------------- /.github/workflows/build-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/workflows/build-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/build-hass-addon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/workflows/build-hass-addon.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/workflow-file-open-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.github/workflows/workflow-file-open-source.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/globals.css -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/manager-head.html -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/manager.ts -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/storyTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.storybook/storyTheme.ts -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/README.md -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/TERMS.md -------------------------------------------------------------------------------- /changelog.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/changelog.bat -------------------------------------------------------------------------------- /craco.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/craco.config.cjs -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/electron-builder.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /extraResources/Readme.md: -------------------------------------------------------------------------------- 1 | LedFx_core.app -------------------------------------------------------------------------------- /links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/links.md -------------------------------------------------------------------------------- /npm_dev.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/npm_dev.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-zoom-pan-pinch+3.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/patches/react-zoom-pan-pinch+3.7.0.patch -------------------------------------------------------------------------------- /public/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/__init__.py -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/frontend_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/frontend_config.json -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/icon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/icon_16x16.png -------------------------------------------------------------------------------- /public/icon_16x16a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/icon_16x16a.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/public/serviceWorker.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/ledfx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/api/ledfx.ts -------------------------------------------------------------------------------- /src/api/ledfx.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/api/ledfx.types.ts -------------------------------------------------------------------------------- /src/api/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/api/typedoc.json -------------------------------------------------------------------------------- /src/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app-icon.png -------------------------------------------------------------------------------- /src/app/app/handlers.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/handlers.mts -------------------------------------------------------------------------------- /src/app/app/instances.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/instances.mts -------------------------------------------------------------------------------- /src/app/app/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/media.ts -------------------------------------------------------------------------------- /src/app/app/otp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/otp.ts -------------------------------------------------------------------------------- /src/app/app/protocol.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/protocol.mts -------------------------------------------------------------------------------- /src/app/app/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/toast.ts -------------------------------------------------------------------------------- /src/app/app/utils/coreFile.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/coreFile.mts -------------------------------------------------------------------------------- /src/app/app/utils/coreParams.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/coreParams.mts -------------------------------------------------------------------------------- /src/app/app/utils/corePath.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/corePath.mts -------------------------------------------------------------------------------- /src/app/app/utils/createLedFxFolder.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/createLedFxFolder.mts -------------------------------------------------------------------------------- /src/app/app/utils/defaultCoreParams.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/defaultCoreParams.mts -------------------------------------------------------------------------------- /src/app/app/utils/getReduxPath.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/getReduxPath.mts -------------------------------------------------------------------------------- /src/app/app/utils/isCC.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/isCC.mts -------------------------------------------------------------------------------- /src/app/app/utils/runCore.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/runCore.mts -------------------------------------------------------------------------------- /src/app/app/utils/startCore.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/startCore.mts -------------------------------------------------------------------------------- /src/app/app/utils/store.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/store.mts -------------------------------------------------------------------------------- /src/app/app/utils/tray.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/tray.mts -------------------------------------------------------------------------------- /src/app/app/utils/win.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/app/utils/win.mts -------------------------------------------------------------------------------- /src/app/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/electron.ts -------------------------------------------------------------------------------- /src/app/preload.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/preload.cts -------------------------------------------------------------------------------- /src/app/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/app/renderer.ts -------------------------------------------------------------------------------- /src/assets/DMG_BG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/DMG_BG.jpg -------------------------------------------------------------------------------- /src/assets/blademod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/blademod.svg -------------------------------------------------------------------------------- /src/assets/bottom-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/bottom-flip.svg -------------------------------------------------------------------------------- /src/assets/bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/bottom-left.svg -------------------------------------------------------------------------------- /src/assets/bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/bottom-right.svg -------------------------------------------------------------------------------- /src/assets/bottom-snake-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/bottom-snake-flip.svg -------------------------------------------------------------------------------- /src/assets/bottom-snake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/bottom-snake.svg -------------------------------------------------------------------------------- /src/assets/bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/bottom.svg -------------------------------------------------------------------------------- /src/assets/fireworks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/fireworks.jpg -------------------------------------------------------------------------------- /src/assets/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/left-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/left-flip.svg -------------------------------------------------------------------------------- /src/assets/left-snake-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/left-snake-flip.svg -------------------------------------------------------------------------------- /src/assets/left-snake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/left-snake.svg -------------------------------------------------------------------------------- /src/assets/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/left.svg -------------------------------------------------------------------------------- /src/assets/linkSuccessful.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/linkSuccessful.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/materialdesignicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/materialdesignicons.css -------------------------------------------------------------------------------- /src/assets/mixedContent1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/mixedContent1.jpeg -------------------------------------------------------------------------------- /src/assets/mixedContent2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/mixedContent2.jpeg -------------------------------------------------------------------------------- /src/assets/newyear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/newyear.jpg -------------------------------------------------------------------------------- /src/assets/right-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/right-flip.svg -------------------------------------------------------------------------------- /src/assets/right-snake-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/right-snake-flip.svg -------------------------------------------------------------------------------- /src/assets/right-snake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/right-snake.svg -------------------------------------------------------------------------------- /src/assets/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/right.svg -------------------------------------------------------------------------------- /src/assets/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/ring.png -------------------------------------------------------------------------------- /src/assets/top-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/top-flip.svg -------------------------------------------------------------------------------- /src/assets/top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/top-left.svg -------------------------------------------------------------------------------- /src/assets/top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/top-right.svg -------------------------------------------------------------------------------- /src/assets/top-snake-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/top-snake-flip.svg -------------------------------------------------------------------------------- /src/assets/top-snake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/top-snake.svg -------------------------------------------------------------------------------- /src/assets/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/top.svg -------------------------------------------------------------------------------- /src/assets/transitions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/transitions.gif -------------------------------------------------------------------------------- /src/assets/waves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/waves.svg -------------------------------------------------------------------------------- /src/assets/xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/assets/xmas.png -------------------------------------------------------------------------------- /src/components/AddButton/AddB.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/AddButton/AddB.styles.tsx -------------------------------------------------------------------------------- /src/components/AddButton/AddButton.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/AddButton/AddButton.props.tsx -------------------------------------------------------------------------------- /src/components/AddButton/AddButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/AddButton/AddButton.tsx -------------------------------------------------------------------------------- /src/components/AssetPicker/AssetPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/AssetPicker/AssetPicker.tsx -------------------------------------------------------------------------------- /src/components/Bars/BarBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Bars/BarBottom.tsx -------------------------------------------------------------------------------- /src/components/Bars/BarLeft.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Bars/BarLeft.styles.tsx -------------------------------------------------------------------------------- /src/components/Bars/BarLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Bars/BarLeft.tsx -------------------------------------------------------------------------------- /src/components/Bars/BarMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Bars/BarMessage.tsx -------------------------------------------------------------------------------- /src/components/Bars/BarTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Bars/BarTop.tsx -------------------------------------------------------------------------------- /src/components/Bars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Bars/README.md -------------------------------------------------------------------------------- /src/components/ButtonBar.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/ButtonBar.styles.tsx -------------------------------------------------------------------------------- /src/components/ButtonBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/ButtonBar.tsx -------------------------------------------------------------------------------- /src/components/CrashButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/CrashButton.tsx -------------------------------------------------------------------------------- /src/components/Debug/BeautifulDiagWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Debug/BeautifulDiagWidget.tsx -------------------------------------------------------------------------------- /src/components/Debug/DiagWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Debug/DiagWidget.tsx -------------------------------------------------------------------------------- /src/components/Debug/VirtualDiag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Debug/VirtualDiag.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AboutDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AboutDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AddDeviceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AddDeviceDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AddExistingSegmentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AddExistingSegmentDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AddIntegrationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AddIntegrationDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AddVirtualDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AddVirtualDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AddWledDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AddWledDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/AssetManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/AssetManager.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/DeleteColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/DeleteColors.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/Download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/Download.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/EffectTypeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/EffectTypeDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/FrontendPixelsTooSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/FrontendPixelsTooSmall.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/HostManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/HostManager.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/Instances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/Instances.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/IntroDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/IntroDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/NoHostDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/NoHostDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/QrConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/QrConnector.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/README.md -------------------------------------------------------------------------------- /src/components/Dialogs/SceneDialogs/AddSceneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/SceneDialogs/AddSceneDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/SceneDialogs/EditSceneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/SceneDialogs/EditSceneDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/SceneDialogs/TooltipImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/SceneDialogs/TooltipImage.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/SceneDialogs/TooltipMidi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/SceneDialogs/TooltipMidi.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/SceneDialogs/TooltipTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/SceneDialogs/TooltipTags.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/SmartBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/SmartBar.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/Stepper.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/_AddSegmentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Dialogs/_AddSegmentDialog.tsx -------------------------------------------------------------------------------- /src/components/DnD/OrderList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/DnD/OrderList.tsx -------------------------------------------------------------------------------- /src/components/DnD/OrderListBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/DnD/OrderListBase.tsx -------------------------------------------------------------------------------- /src/components/DnD/OrderListDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/DnD/OrderListDialog.tsx -------------------------------------------------------------------------------- /src/components/FireTv/FireTv.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/FireTv.props.tsx -------------------------------------------------------------------------------- /src/components/FireTv/FireTv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/FireTv.tsx -------------------------------------------------------------------------------- /src/components/FireTv/FireTvBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/FireTvBar.tsx -------------------------------------------------------------------------------- /src/components/FireTv/FireTvDebugger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/FireTvDebugger.tsx -------------------------------------------------------------------------------- /src/components/FireTv/VirtualCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/VirtualCursor.tsx -------------------------------------------------------------------------------- /src/components/FireTv/android.bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/android.bridge.ts -------------------------------------------------------------------------------- /src/components/FireTv/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/android.d.ts -------------------------------------------------------------------------------- /src/components/FireTv/useAndroidUpdateChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/useAndroidUpdateChecker.ts -------------------------------------------------------------------------------- /src/components/FireTv/useFireTv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/useFireTv.ts -------------------------------------------------------------------------------- /src/components/FireTv/useFireTvStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/useFireTvStore.ts -------------------------------------------------------------------------------- /src/components/FireTv/useVirtualCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/FireTv/useVirtualCursor.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/Assign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/Assign.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/Gamepad.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/Gamepad.props.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/Gamepad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/Gamepad.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/GamepadSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/GamepadSvg.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/GamepadSvgPs3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/GamepadSvgPs3.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/GamepadSvgPs4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/GamepadSvgPs4.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/GamepadSvgPs5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/GamepadSvgPs5.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/OneEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/OneEffect.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/OneShot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/OneShot.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/PadData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/PadData.tsx -------------------------------------------------------------------------------- /src/components/Gamepad/PadTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Gamepad/PadTitle.tsx -------------------------------------------------------------------------------- /src/components/GlobalActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/GlobalActionBar.tsx -------------------------------------------------------------------------------- /src/components/Icons/BladeIcon/BladeIcon.interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/BladeIcon/BladeIcon.interface.tsx -------------------------------------------------------------------------------- /src/components/Icons/BladeIcon/BladeIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/BladeIcon/BladeIcon.stories.tsx -------------------------------------------------------------------------------- /src/components/Icons/BladeIcon/BladeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/BladeIcon/BladeIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/FX.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/FX.css -------------------------------------------------------------------------------- /src/components/Icons/FX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/FX.svg -------------------------------------------------------------------------------- /src/components/Icons/FX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/FX.tsx -------------------------------------------------------------------------------- /src/components/Icons/HomeAssistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/HomeAssistant.tsx -------------------------------------------------------------------------------- /src/components/Icons/Novation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/Novation.tsx -------------------------------------------------------------------------------- /src/components/Icons/RzrLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/RzrLogo.tsx -------------------------------------------------------------------------------- /src/components/Icons/RzrMouse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/RzrMouse.tsx -------------------------------------------------------------------------------- /src/components/Icons/Wled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/Wled.tsx -------------------------------------------------------------------------------- /src/components/Icons/YZ-Logo2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/YZ-Logo2.tsx -------------------------------------------------------------------------------- /src/components/Icons/YZ-Logo3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/YZ-Logo3.tsx -------------------------------------------------------------------------------- /src/components/Icons/waves.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Icons/waves.tsx -------------------------------------------------------------------------------- /src/components/Integrations/QLC/DialogAddEventListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/QLC/DialogAddEventListener.tsx -------------------------------------------------------------------------------- /src/components/Integrations/QLC/DialogAddEventListnerDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/QLC/DialogAddEventListnerDropDown.tsx -------------------------------------------------------------------------------- /src/components/Integrations/QLC/QLCTriggerTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/QLC/QLCTriggerTable.tsx -------------------------------------------------------------------------------- /src/components/Integrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/README.md -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/SpotifyAuthButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/SpotifyAuthButton.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/SpotifyFabFree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/SpotifyFabFree.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/SpotifyFabPro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/SpotifyFabPro.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/SpotifyProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/SpotifyProvider.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/AudioAnalysis/Chart.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/AudioAnalysis/ChartSize.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/AudioAnalysis/ChordButtons.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/AudioAnalysis/Layout.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/AudioAnalysis/PitchSelect.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/AudioAnalysis/SectionChart.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Unsorted/SpotifyFeatures.tsx: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/FpsViewer/FpsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/FpsViewer/FpsView.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/FpsViewer/FpsViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/FpsViewer/FpsViewer.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/GlobalColorWidget/GlobalColorWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/GlobalColorWidget/GlobalColorWidget.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/GlobalColorWidget/GlobalColorWidgetFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/GlobalColorWidget/GlobalColorWidgetFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Keybinding/Keybinding.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Keybinding/Keybinding.styles.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Keybinding/Keybinding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Keybinding/Keybinding.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Keybinding/KeybindingComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Keybinding/KeybindingComponents.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Keybinding/KeybindingFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Keybinding/KeybindingFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/MGraphFlotaing/MGraphFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/MGraphFlotaing/MGraphFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/MGraphFlotaing/MgFloating.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/MGraphFlotaing/MgFloating.styles.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/MGraphFlotaing/MgFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/MGraphFlotaing/MgFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Mp/Mp.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Mp/Mp.styles.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Mp/Mp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Mp/Mp.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/Mp/MpFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/Mp/MpFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/PixelGraphSettings/PgsFloating.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/PixelGraphSettings/PgsFloating.styles.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/PixelGraphSettings/PgsFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/PixelGraphSettings/PgsFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/PixelGraphSettings/PixelGraphSettingsFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/PixelGraphSettings/PixelGraphSettingsFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SongDetector/SdFloating.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SongDetector/SdFloating.styles.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SongDetector/SdFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SongDetector/SdFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SongDetector/SongDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SongDetector/SongDetector.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SongDetector/SongDetectorFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SongDetector/SongDetectorFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetFree/SpotifyChangeURLDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetFree/SpotifyChangeURLDialog.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetFree/SpotifyWidgetFree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetFree/SpotifyWidgetFree.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpAudioFeatures/SpAudioFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpAudioFeatures/SpAudioFeatures.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpAudioFeatures/SpRadarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpAudioFeatures/SpRadarChart.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpControls.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpFloating.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpLayoutButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpLayoutButtons.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpPlaylist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpPlaylist.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpSceneTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpSceneTrigger.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTexter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTexter.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTexterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTexterForm.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTrack.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTriggerTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpTriggerTable.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpVolume.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpVolume.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpWidgetPro.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpWidgetPro.styles.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpWidgetPro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpWidgetPro.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Spotify/Widgets/SpotifyWidgetPro/SpotifyUtil.tsx: -------------------------------------------------------------------------------- 1 | export default function useSpotifyPro() { 2 | return [] 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Integrations/Youtube/ChangeYoutubeURLDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Youtube/ChangeYoutubeURLDialog.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Youtube/YoutubeWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Youtube/YoutubeWidget.tsx -------------------------------------------------------------------------------- /src/components/Integrations/Youtube/YoutubeWidgetBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Integrations/Youtube/YoutubeWidgetBar.tsx -------------------------------------------------------------------------------- /src/components/MGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/MGraph.tsx -------------------------------------------------------------------------------- /src/components/Menu/BladeMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Menu/BladeMenu.tsx -------------------------------------------------------------------------------- /src/components/Menu/BladeMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Menu/BladeMenuItem.tsx -------------------------------------------------------------------------------- /src/components/Midi/ColorTypePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/ColorTypePicker.tsx -------------------------------------------------------------------------------- /src/components/Midi/LaunchpadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/LaunchpadButton.tsx -------------------------------------------------------------------------------- /src/components/Midi/LaunchpadButtonMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/LaunchpadButtonMap.tsx -------------------------------------------------------------------------------- /src/components/Midi/LaunchpadColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/LaunchpadColors.tsx -------------------------------------------------------------------------------- /src/components/Midi/LaunchpadSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/LaunchpadSettings.tsx -------------------------------------------------------------------------------- /src/components/Midi/LpColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/LpColorPicker.tsx -------------------------------------------------------------------------------- /src/components/Midi/MidiInputDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/MidiInputDialog.tsx -------------------------------------------------------------------------------- /src/components/Midi/MidiListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Midi/MidiListener.tsx -------------------------------------------------------------------------------- /src/components/MuiSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/MuiSwitch.tsx -------------------------------------------------------------------------------- /src/components/NoYet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/NoYet.tsx -------------------------------------------------------------------------------- /src/components/Number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Number.tsx -------------------------------------------------------------------------------- /src/components/OneTimePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/OneTimePassword.tsx -------------------------------------------------------------------------------- /src/components/PixelGraph/PixelGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/PixelGraph/PixelGraph.tsx -------------------------------------------------------------------------------- /src/components/PixelGraph/PixelGraphBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/PixelGraph/PixelGraphBase.tsx -------------------------------------------------------------------------------- /src/components/PixelGraph/PixelGraphCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/PixelGraph/PixelGraphCanvas.tsx -------------------------------------------------------------------------------- /src/components/PixelGraph/PixelGraphCanvasOffscreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/PixelGraph/PixelGraphCanvasOffscreen.tsx -------------------------------------------------------------------------------- /src/components/PixelGraph/PixelGraphCanvasOffscreenWebGL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/PixelGraph/PixelGraphCanvasOffscreenWebGL.tsx -------------------------------------------------------------------------------- /src/components/PixelGraph/PixelGraphCanvasOffscreenWebGLSync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/PixelGraph/PixelGraphCanvasOffscreenWebGLSync.tsx -------------------------------------------------------------------------------- /src/components/Popover/Popover.interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Popover/Popover.interface.tsx -------------------------------------------------------------------------------- /src/components/Popover/Popover.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Popover/Popover.stories.tsx -------------------------------------------------------------------------------- /src/components/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Popover/Popover.tsx -------------------------------------------------------------------------------- /src/components/QrScanner/QrCodeWithLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/QrScanner/QrCodeWithLogo.tsx -------------------------------------------------------------------------------- /src/components/QrScanner/QrScanner.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/QrScanner/QrScanner.props.ts -------------------------------------------------------------------------------- /src/components/QrScanner/QrScanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/QrScanner/QrScanner.tsx -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/components/SchemaForm/EffectsSchemaForm/EffectSchemaForm.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/EffectsSchemaForm/EffectSchemaForm.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/EffectsSchemaForm/EffectSchemaForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/EffectsSchemaForm/EffectSchemaForm.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/EffectsSchemaForm/EffectSchemaForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/EffectsSchemaForm/EffectSchemaForm.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/README.md -------------------------------------------------------------------------------- /src/components/SchemaForm/SchemaForm/SchemaForm.examples.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/SchemaForm/SchemaForm.examples.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/SchemaForm/SchemaForm.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/SchemaForm/SchemaForm.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/SchemaForm/SchemaForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/SchemaForm/SchemaForm.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/SchemaForm/SchemaForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/SchemaForm/SchemaForm.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/BladeFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/BladeFrame.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Boolean/BBolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Boolean/BBolean.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Boolean/BBoolean.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Boolean/BBoolean.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Boolean/BBoolean.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Boolean/BBoolean.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Boolean/BladeBoolean.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Boolean/BladeBoolean.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Boolean/BladeBoolean.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Boolean/BladeBoolean.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Boolean/BladeBoolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Boolean/BladeBoolean.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/DropDown/DropDown.examples.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/DropDown/DropDown.examples.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/DropDown/DropDown.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/DropDown/DropDown.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/DropDown/DropDown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/DropDown/DropDown.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/DropDown/DropDown.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/DropDown/DropDown.styles.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/DropDown/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/DropDown/DropDown.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/DropDown/DropDown.wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/DropDown/DropDown.wrapper.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Gif/GifFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Gif/GifFrame.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Gif/GifFramePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Gif/GifFramePicker.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Gif/GifPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Gif/GifPicker.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/GradientPicker/GradientPicker.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/GradientPicker/GradientPicker.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/GradientPicker/GradientPicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/GradientPicker/GradientPicker.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/GradientPicker/GradientPicker.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/GradientPicker/GradientPicker.styles.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/GradientPicker/GradientPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/GradientPicker/GradientPicker.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/GradientPicker/GradientPicker.wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/GradientPicker/GradientPicker.wrapper.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Number/BladeSlider.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Number/BladeSlider.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Number/BladeSlider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Number/BladeSlider.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Number/BladeSlider.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Number/BladeSlider.styles.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Number/BladeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Number/BladeSlider.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Number/SliderInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Number/SliderInput.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/String/BladeSelect.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/String/BladeSelect.props.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/String/BladeSelect.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/String/BladeSelect.stories.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/String/BladeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/String/BladeSelect.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Toggle.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/VirtualPicker/VirtualPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/VirtualPicker/VirtualPicker.tsx -------------------------------------------------------------------------------- /src/components/SchemaForm/components/VirtualPicker/VirtualPickerSchemaForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SchemaForm/components/VirtualPicker/VirtualPickerSchemaForm.tsx -------------------------------------------------------------------------------- /src/components/SeeDocs/SeeDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/SeeDocs/SeeDocs.tsx -------------------------------------------------------------------------------- /src/components/Tours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/README.md -------------------------------------------------------------------------------- /src/components/Tours/Tour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/Tour.tsx -------------------------------------------------------------------------------- /src/components/Tours/Tour2dVirtual.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/Tour2dVirtual.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourDevice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourDevice.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourDevices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourDevices.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourEffect.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourHome.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourIntegrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourIntegrations.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourScenes.tsx -------------------------------------------------------------------------------- /src/components/Tours/TourSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Tours/TourSettings.tsx -------------------------------------------------------------------------------- /src/components/Webcam/Webcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/Webcam.tsx -------------------------------------------------------------------------------- /src/components/Webcam/matrixUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/matrixUtils.ts -------------------------------------------------------------------------------- /src/components/Webcam/pixelMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/pixelMapper.ts -------------------------------------------------------------------------------- /src/components/Webcam/pixelUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/pixelUtils.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/adjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/adjust.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/calculateImageDifference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/calculateImageDifference.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/calibrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/calibrate.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/createImageFromData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/createImageFromData.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/decodeBase64ToImageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/decodeBase64ToImageData.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/getLedCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/getLedCount.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/initialize.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/iterativeOnOnlyOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/iterativeOnOnlyOne.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/oneLed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/oneLed.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/preadjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/preadjust.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/processImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/processImages.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/setWledBrightness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/setWledBrightness.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/wait.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/wled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/wled.ts -------------------------------------------------------------------------------- /src/components/Webcam/utils/wledGet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/components/Webcam/utils/wledGet.ts -------------------------------------------------------------------------------- /src/electronsquirrelstartup.d..ts: -------------------------------------------------------------------------------- 1 | declare module 'electron-squirrel-startup' 2 | -------------------------------------------------------------------------------- /src/icons/mac/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/mac/icon.icns -------------------------------------------------------------------------------- /src/icons/png/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/1024x1024.png -------------------------------------------------------------------------------- /src/icons/png/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/128x128.png -------------------------------------------------------------------------------- /src/icons/png/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/16x16.png -------------------------------------------------------------------------------- /src/icons/png/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/24x24.png -------------------------------------------------------------------------------- /src/icons/png/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/256x256.png -------------------------------------------------------------------------------- /src/icons/png/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/32x32.png -------------------------------------------------------------------------------- /src/icons/png/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/48x48.png -------------------------------------------------------------------------------- /src/icons/png/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/512x512.png -------------------------------------------------------------------------------- /src/icons/png/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/64x64.png -------------------------------------------------------------------------------- /src/icons/png/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/banner.png -------------------------------------------------------------------------------- /src/icons/png/launchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/launchpad.png -------------------------------------------------------------------------------- /src/icons/png/openrgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/openrgb.png -------------------------------------------------------------------------------- /src/icons/png/wled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/png/wled.png -------------------------------------------------------------------------------- /src/icons/win/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/icons/win/icon.ico -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/launchpad.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'launchpad-webmidi' 2 | -------------------------------------------------------------------------------- /src/pages/Device/Cloud/Cloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Cloud/Cloud.tsx -------------------------------------------------------------------------------- /src/pages/Device/Cloud/CloudComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Cloud/CloudComponents.tsx -------------------------------------------------------------------------------- /src/pages/Device/Device.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Device.tsx -------------------------------------------------------------------------------- /src/pages/Device/Effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Effects.tsx -------------------------------------------------------------------------------- /src/pages/Device/EffectsComplex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/EffectsComplex.tsx -------------------------------------------------------------------------------- /src/pages/Device/Frequencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Frequencies.tsx -------------------------------------------------------------------------------- /src/pages/Device/PresetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/PresetButton.tsx -------------------------------------------------------------------------------- /src/pages/Device/Presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Presets.tsx -------------------------------------------------------------------------------- /src/pages/Device/PresetsComplex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/PresetsComplex.tsx -------------------------------------------------------------------------------- /src/pages/Device/StreamTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/StreamTo.tsx -------------------------------------------------------------------------------- /src/pages/Device/Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Transition.tsx -------------------------------------------------------------------------------- /src/pages/Device/Troubleshoot.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/Troubleshoot.styles.tsx -------------------------------------------------------------------------------- /src/pages/Device/TroubleshootButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Device/TroubleshootButton.tsx -------------------------------------------------------------------------------- /src/pages/Devices/DeviceCard/DeviceCard.interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/DeviceCard/DeviceCard.interface.tsx -------------------------------------------------------------------------------- /src/pages/Devices/DeviceCard/DeviceCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/DeviceCard/DeviceCard.stories.tsx -------------------------------------------------------------------------------- /src/pages/Devices/DeviceCard/DeviceCard.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/DeviceCard/DeviceCard.styles.tsx -------------------------------------------------------------------------------- /src/pages/Devices/DeviceCard/DeviceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/DeviceCard/DeviceCard.tsx -------------------------------------------------------------------------------- /src/pages/Devices/DeviceCard/DeviceCard.wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/DeviceCard/DeviceCard.wrapper.tsx -------------------------------------------------------------------------------- /src/pages/Devices/Devices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/Devices.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/assignPixels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/assignPixels.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/hexColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/hexColor.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/interfaces.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupDown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupDown.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupLeft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupLeft.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupRight.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Actions/moveSelectedGroupUp.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/AssignPixelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/AssignPixelDialog.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/AssignPixelDialogContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/AssignPixelDialogContext.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Draggable.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Droppable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Droppable.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/M.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/M.styles.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/M.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/M.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/M.utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/M.utils.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MControls/DimensionSliders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MControls/DimensionSliders.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MControls/DnDModeTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MControls/DnDModeTabs.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MControls/GroupControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MControls/GroupControls.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MControls/LayoutTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MControls/LayoutTools.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MControls/MActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MControls/MActionBar.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MControls/MControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MControls/MControls.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MDialogTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MDialogTitle.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MFillSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MFillSelector.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MSlider.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MSwitch.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MWrapper.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MatrixEditorAPI.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MatrixEditorAPI.types.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MatrixEditorContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MatrixEditorContext.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/MatrixStudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/MatrixStudio.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/Pixel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/Pixel.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/processMatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/processMatrix.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/useAssignPixelDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/useAssignPixelDialog.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditMatrix/useMatrixEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditMatrix/useMatrixEditor.ts -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditVirtuals.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditVirtuals.styles.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/EditVirtuals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/EditVirtuals.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/PixelSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/PixelSlider.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/Segment.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/Segment.styles.tsx -------------------------------------------------------------------------------- /src/pages/Devices/EditVirtuals/Segment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Devices/EditVirtuals/Segment.tsx -------------------------------------------------------------------------------- /src/pages/Graph/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Graph/Graph.tsx -------------------------------------------------------------------------------- /src/pages/Home/BladeScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/BladeScene.tsx -------------------------------------------------------------------------------- /src/pages/Home/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/Home/DashboardDetailed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DashboardDetailed.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbButton.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbConfig.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbDevices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbDevices.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbGlobalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbGlobalActions.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbLinks.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbRow.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbScenes.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbScenesBackendPL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbScenesBackendPL.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbScenesPL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbScenesPL.tsx -------------------------------------------------------------------------------- /src/pages/Home/DbStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/DbStats.tsx -------------------------------------------------------------------------------- /src/pages/Home/Gauge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/Gauge.tsx -------------------------------------------------------------------------------- /src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/IntegrationCard/IntegrationCard.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/IntegrationCard/IntegrationCard.styles.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/IntegrationCard/IntegrationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/IntegrationCard/IntegrationCard.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/IntegrationCard/IntegrationCardQLC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/IntegrationCard/IntegrationCardQLC.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/IntegrationCard/IntegrationCardSpotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/IntegrationCard/IntegrationCardSpotify.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/Integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/Integrations.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/QLCplus/EventTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/QLCplus/EventTable.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/QLCplus/QLCScreen/QLCScreen.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/QLCplus/QLCScreen/QLCScreen.props.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/QLCplus/QLCScreen/QLCScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/QLCplus/QLCScreen/QLCScreen.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/Spotify/SpotifyLoginRedirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/Spotify/SpotifyLoginRedirect.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/Spotify/SpotifyScreen/SpotifyScreen.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/Spotify/SpotifyScreen/SpotifyScreen.props.tsx -------------------------------------------------------------------------------- /src/pages/Integrations/Spotify/SpotifyScreen/SpotifyScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Integrations/Spotify/SpotifyScreen/SpotifyScreen.tsx -------------------------------------------------------------------------------- /src/pages/Lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Lock.tsx -------------------------------------------------------------------------------- /src/pages/Login/LoginRedirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Login/LoginRedirect.tsx -------------------------------------------------------------------------------- /src/pages/Pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Pages.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/LedFxFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/LedFxFlow.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/PlaylistNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/PlaylistNode.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/ReactFlowPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/ReactFlowPage.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/Readme.md -------------------------------------------------------------------------------- /src/pages/ReactFlow/SceneNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/SceneNode.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/SenderNodeEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/SenderNodeEffect.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/SenderNodeOmni.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/SenderNodeOmni.tsx -------------------------------------------------------------------------------- /src/pages/ReactFlow/VirtualNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/ReactFlow/VirtualNode.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/BackendPlaylist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/BackendPlaylist.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/BackendPlaylistPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/BackendPlaylistPage.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ExpanderCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ExpanderCard.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/PlaylistCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/PlaylistCard.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/PlaylistCardMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/PlaylistCardMenu.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/SceneCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/SceneCard.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/Scenes.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/Scenes.styles.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/Scenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/Scenes.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesImage.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesMenu.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesMostUsed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesMostUsed.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesPlaylist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesPlaylist.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesPlaylistMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesPlaylistMenu.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesRecent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesRecent.tsx -------------------------------------------------------------------------------- /src/pages/Scenes/ScenesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Scenes/ScenesTable.tsx -------------------------------------------------------------------------------- /src/pages/Settings/AlphaFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/AlphaFeatures.tsx -------------------------------------------------------------------------------- /src/pages/Settings/AudioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/AudioCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/BetaCoreFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/BetaCoreFeatures.tsx -------------------------------------------------------------------------------- /src/pages/Settings/BetaFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/BetaFeatures.tsx -------------------------------------------------------------------------------- /src/pages/Settings/ClientAudioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/ClientAudioCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/DashboardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/DashboardCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/DevicesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/DevicesSection.tsx -------------------------------------------------------------------------------- /src/pages/Settings/EffectsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/EffectsCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/ExpertFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/ExpertFeatures.tsx -------------------------------------------------------------------------------- /src/pages/Settings/GeneralCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/GeneralCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/IntegrationsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/IntegrationsSection.tsx -------------------------------------------------------------------------------- /src/pages/Settings/LogFilterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/LogFilterSelect.tsx -------------------------------------------------------------------------------- /src/pages/Settings/MidiCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/MidiCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/PixelGraphsSettingsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/PixelGraphsSettingsCard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/ScenesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/ScenesSection.tsx -------------------------------------------------------------------------------- /src/pages/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/pages/Settings/SettingsComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/SettingsComponents.tsx -------------------------------------------------------------------------------- /src/pages/Settings/UICard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/UICard.tsx -------------------------------------------------------------------------------- /src/pages/Settings/Webaudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/Webaudio.tsx -------------------------------------------------------------------------------- /src/pages/Settings/WledCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/Settings/WledCard.tsx -------------------------------------------------------------------------------- /src/pages/User/AvatarPicker/AvatarPicker.interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/User/AvatarPicker/AvatarPicker.interface.tsx -------------------------------------------------------------------------------- /src/pages/User/AvatarPicker/AvatarPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/User/AvatarPicker/AvatarPicker.tsx -------------------------------------------------------------------------------- /src/pages/User/AvatarPicker/avatarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/User/AvatarPicker/avatarUtils.ts -------------------------------------------------------------------------------- /src/pages/User/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/pages/User/User.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/service-worker.ts -------------------------------------------------------------------------------- /src/serviceWorkerRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/serviceWorkerRegistration.ts -------------------------------------------------------------------------------- /src/store/api/storeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeActions.tsx -------------------------------------------------------------------------------- /src/store/api/storeAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeAssets.tsx -------------------------------------------------------------------------------- /src/store/api/storeColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeColors.tsx -------------------------------------------------------------------------------- /src/store/api/storeConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeConfig.tsx -------------------------------------------------------------------------------- /src/store/api/storeDevices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeDevices.tsx -------------------------------------------------------------------------------- /src/store/api/storeIntegrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeIntegrations.tsx -------------------------------------------------------------------------------- /src/store/api/storeIntegrationsSpotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeIntegrationsSpotify.tsx -------------------------------------------------------------------------------- /src/store/api/storePlaylist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storePlaylist.tsx -------------------------------------------------------------------------------- /src/store/api/storePresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storePresets.tsx -------------------------------------------------------------------------------- /src/store/api/storeScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeScenes.tsx -------------------------------------------------------------------------------- /src/store/api/storeVirtuals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/api/storeVirtuals.tsx -------------------------------------------------------------------------------- /src/store/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/migrate.ts -------------------------------------------------------------------------------- /src/store/ui-persist/storeUIpersist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui-persist/storeUIpersist.tsx -------------------------------------------------------------------------------- /src/store/ui-persist/storeUIpersistActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui-persist/storeUIpersistActions.tsx -------------------------------------------------------------------------------- /src/store/ui/SpState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/SpState.tsx -------------------------------------------------------------------------------- /src/store/ui/SpotifyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/SpotifyState.tsx -------------------------------------------------------------------------------- /src/store/ui/WebPlaybackTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/WebPlaybackTrack.tsx -------------------------------------------------------------------------------- /src/store/ui/storeCloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeCloud.tsx -------------------------------------------------------------------------------- /src/store/ui/storeDialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeDialogs.tsx -------------------------------------------------------------------------------- /src/store/ui/storeFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeFeatures.tsx -------------------------------------------------------------------------------- /src/store/ui/storeGeneral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeGeneral.tsx -------------------------------------------------------------------------------- /src/store/ui/storeMatrix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeMatrix.tsx -------------------------------------------------------------------------------- /src/store/ui/storeMidi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeMidi.tsx -------------------------------------------------------------------------------- /src/store/ui/storeNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeNotifications.tsx -------------------------------------------------------------------------------- /src/store/ui/storePad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storePad.tsx -------------------------------------------------------------------------------- /src/store/ui/storeQLC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeQLC.tsx -------------------------------------------------------------------------------- /src/store/ui/storeQLCActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeQLCActions.tsx -------------------------------------------------------------------------------- /src/store/ui/storeSongDectector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeSongDectector.tsx -------------------------------------------------------------------------------- /src/store/ui/storeSpotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeSpotify.tsx -------------------------------------------------------------------------------- /src/store/ui/storeSpotifyActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeSpotifyActions.tsx -------------------------------------------------------------------------------- /src/store/ui/storeTours.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeTours.tsx -------------------------------------------------------------------------------- /src/store/ui/storeUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeUI.tsx -------------------------------------------------------------------------------- /src/store/ui/storeUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeUser.tsx -------------------------------------------------------------------------------- /src/store/ui/storeVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeVideo.tsx -------------------------------------------------------------------------------- /src/store/ui/storeWebAudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeWebAudio.tsx -------------------------------------------------------------------------------- /src/store/ui/storeYoutube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/ui/storeYoutube.tsx -------------------------------------------------------------------------------- /src/store/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/store/useStore.ts -------------------------------------------------------------------------------- /src/stories/AppStructure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/AppStructure.mdx -------------------------------------------------------------------------------- /src/stories/Doc/Api.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/Doc/Api.stories.tsx -------------------------------------------------------------------------------- /src/stories/Doc/Doc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/Doc/Doc.tsx -------------------------------------------------------------------------------- /src/stories/Doc/configApiYaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/Doc/configApiYaml.ts -------------------------------------------------------------------------------- /src/stories/GettingStarted.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/GettingStarted.mdx -------------------------------------------------------------------------------- /src/stories/Guides.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/Guides.mdx -------------------------------------------------------------------------------- /src/stories/assets/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/component.png -------------------------------------------------------------------------------- /src/stories/assets/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/components.png -------------------------------------------------------------------------------- /src/stories/assets/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /src/stories/assets/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/stories/assets/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/stories/assets/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/stories/assets/pageComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/pageComponents.png -------------------------------------------------------------------------------- /src/stories/assets/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/pages.png -------------------------------------------------------------------------------- /src/stories/assets/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/stories/assets/src.png -------------------------------------------------------------------------------- /src/themes/AppThemes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/themes/AppThemes.tsx -------------------------------------------------------------------------------- /src/utils/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/utils/FiledropProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/FiledropProvider.tsx -------------------------------------------------------------------------------- /src/utils/MidiDevices/BaseDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/BaseDevice.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchPadDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchPadDevice.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchkeyDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchkeyDevice.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchkeyMK3/LaunchkeyMK3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchkeyMK3/LaunchkeyMK3.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchkeyMiniMK3/LaunchkeyMiniMK3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchkeyMiniMK3/LaunchkeyMiniMK3.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchpadMK2/LaunchpadMK2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchpadMK2/LaunchpadMK2.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchpadS/LaunchpadS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchpadS/LaunchpadS.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchpadS/lpsColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchpadS/lpsColors.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchpadX/LaunchpadX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchpadX/LaunchpadX.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/LaunchpadX/lpColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/LaunchpadX/lpColors.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/MidiDevices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/MidiDevices.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/colorHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/colorHelper.ts -------------------------------------------------------------------------------- /src/utils/MidiDevices/fnFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/MidiDevices/fnFactory.ts -------------------------------------------------------------------------------- /src/utils/Websocket/WebSocketManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/Websocket/WebSocketManager.tsx -------------------------------------------------------------------------------- /src/utils/Websocket/WebSocketProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/Websocket/WebSocketProvider.tsx -------------------------------------------------------------------------------- /src/utils/Websocket/websocket.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/Websocket/websocket.config.ts -------------------------------------------------------------------------------- /src/utils/commandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/commandHandler.ts -------------------------------------------------------------------------------- /src/utils/commandIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/commandIcons.ts -------------------------------------------------------------------------------- /src/utils/getBaseUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/getBaseUrl.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/log.ts -------------------------------------------------------------------------------- /src/utils/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/login.ts -------------------------------------------------------------------------------- /src/utils/nameToIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/nameToIcon.ts -------------------------------------------------------------------------------- /src/utils/navigateToRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/navigateToRoot.ts -------------------------------------------------------------------------------- /src/utils/scrollToTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/scrollToTop.ts -------------------------------------------------------------------------------- /src/utils/spotifyConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/spotifyConstants.ts -------------------------------------------------------------------------------- /src/utils/spotifyProxies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/spotifyProxies.ts -------------------------------------------------------------------------------- /src/utils/useClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/useClickOutside.ts -------------------------------------------------------------------------------- /src/utils/useWakeLook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/useWakeLook.ts -------------------------------------------------------------------------------- /src/utils/useWindowDimension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/utils/useWindowDimension.ts -------------------------------------------------------------------------------- /src/workers/pixelGraphWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/workers/pixelGraphWorker.ts -------------------------------------------------------------------------------- /src/workers/pixelGraphWorkerWebGL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/workers/pixelGraphWorkerWebGL.ts -------------------------------------------------------------------------------- /src/workers/timerWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/src/workers/timerWorker.ts -------------------------------------------------------------------------------- /tsconfig.electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/tsconfig.electron.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/yarn.lock -------------------------------------------------------------------------------- /yarn_electron.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonV/LedFx-Frontend-v2/HEAD/yarn_electron.log -------------------------------------------------------------------------------- /yarn_start.log: -------------------------------------------------------------------------------- 1 | yarn run v1.22.22 2 | $ craco start 3 | --------------------------------------------------------------------------------