-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify the SS sketches shown as a SB layer -- one layer, not split …
…by ATF/LCWIP.
- Loading branch information
1 parent
dd9d28d
commit 9f808cb
Showing
5 changed files
with
102 additions
and
194 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
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,37 +1,29 @@ | ||
import { writable, type Writable } from "svelte/store"; | ||
import type { Schemes } from "types"; | ||
|
||
// There are four variations -- main and local ATF and LCWIP schemes | ||
// There are three variations -- ATF, LCWIP, and local (any schema) | ||
|
||
// TODO Bundle this into one type, so it's easier to plumb around | ||
export const mainAtfSchemes: Writable<Schemes> = writable({ | ||
export const atfSchemes: Writable<Schemes> = writable({ | ||
type: "FeatureCollection", | ||
features: [], | ||
schemes: {}, | ||
}); | ||
export const filterMainAtfInterventionText: Writable<string> = writable(""); | ||
export const filterMainAtfSchemeText: Writable<string> = writable(""); | ||
export const filterAtfInterventionText: Writable<string> = writable(""); | ||
export const filterAtfSchemeText: Writable<string> = writable(""); | ||
|
||
export const mainLcwipSchemes: Writable<Schemes> = writable({ | ||
export const lcwipSchemes: Writable<Schemes> = writable({ | ||
type: "FeatureCollection", | ||
features: [], | ||
schemes: {}, | ||
}); | ||
export const filterMainLcwipInterventionText: Writable<string> = writable(""); | ||
export const filterMainLcwipSchemeText: Writable<string> = writable(""); | ||
export const filterLcwipInterventionText: Writable<string> = writable(""); | ||
export const filterLcwipSchemeText: Writable<string> = writable(""); | ||
|
||
export const localAtfSchemes: Writable<Schemes> = writable({ | ||
export const localSchemes: Writable<Schemes> = writable({ | ||
type: "FeatureCollection", | ||
features: [], | ||
schemes: {}, | ||
}); | ||
export const filterLocalAtfInterventionText: Writable<string> = writable(""); | ||
export const filterLocalAtfSchemeText: Writable<string> = writable(""); | ||
|
||
export const localLcwipSchemes: Writable<Schemes> = writable({ | ||
type: "FeatureCollection", | ||
features: [], | ||
schemes: {}, | ||
}); | ||
export const filterLocalLcwipInterventionText: Writable<string> = writable(""); | ||
export const filterLocalLcwipSchemeText: Writable<string> = writable(""); | ||
export const filterLocalInterventionText: Writable<string> = writable(""); | ||
export const filterLocalSchemeText: Writable<string> = writable(""); |
Oops, something went wrong.