forked from OpenNeo/impress
Matchu
81b2a2b4a2
We add jsbuilding-rails to get esbuild running in the app, and then we copy-paste the files we need from impress-2020 into here! I stopped at the point where it was building successfully, but it's not running correctly: it's not sure about `process.env` in `next`, and I think the right next step is to delete the NextJS deps altogether and use React Router instead.
22 lines
749 B
JavaScript
22 lines
749 B
JavaScript
import { useLocalStorage } from "../util";
|
|
|
|
/**
|
|
* usePreferArchive helps the user choose to try using our archive before
|
|
* using images.neopets.com, when images.neopets.com is being slow and bleh!
|
|
*/
|
|
function usePreferArchive() {
|
|
const [preferArchiveSavedValue, setPreferArchive] = useLocalStorage(
|
|
"DTIPreferArchive",
|
|
null
|
|
);
|
|
|
|
// Oct 13 2022: I might default this back to on again if the lag gets
|
|
// miserable again, but it's okaaay right now? ish? Bad enough that I want to
|
|
// offer this option, but decent enough that I don't want to turn it on by
|
|
// default and break new items yet!
|
|
const preferArchive = preferArchiveSavedValue ?? false;
|
|
|
|
return [preferArchive, setPreferArchive];
|
|
}
|
|
|
|
export default usePreferArchive;
|