-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #762 from weather-gov/mgwalker/api-proxy-thing-again
Proxy bundles, take 2
- Loading branch information
Showing
41 changed files
with
117 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,18 @@ | ||
let bundling = false; | ||
let bundleID = false; | ||
let localService = true; | ||
let recording = false; | ||
let play = "testing"; | ||
|
||
export default { | ||
get bundling() { | ||
return bundling; | ||
}, | ||
set bundling(v) { | ||
bundling = v; | ||
if (v === false) { | ||
console.log(`CONFIG: bundle ${bundleID} finished`); | ||
bundleID = false; | ||
} | ||
}, | ||
|
||
get bundleID() { | ||
return bundleID; | ||
get play() { | ||
return play; | ||
}, | ||
set bundleID(v) { | ||
if (bundling && !bundleID) { | ||
bundleID = v; | ||
console.log(`CONFIG: starting bundle ${bundleID}`); | ||
} | ||
}, | ||
|
||
get localService() { | ||
return localService; | ||
}, | ||
set localService(v) { | ||
localService = v; | ||
}, | ||
|
||
get recording() { | ||
return recording; | ||
}, | ||
toggleRecording() { | ||
recording = !recording; | ||
set play(v) { | ||
play = v; | ||
}, | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.