forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			632 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			632 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {UIEventSource} from "../UI/UIEventSource";
 | 
						|
 | 
						|
export class LocalStorageSource {
 | 
						|
 | 
						|
    static Get(key: string, defaultValue: string = undefined): UIEventSource<string> {
 | 
						|
        
 | 
						|
        //*
 | 
						|
            // ignore when running from the console
 | 
						|
            return new UIEventSource<string>(defaultValue);
 | 
						|
            /*/
 | 
						|
        const saved = localStorage.getItem(key);
 | 
						|
        const source = new UIEventSource<string>(saved ?? defaultValue);
 | 
						|
 | 
						|
        source.addCallback((data) => {
 | 
						|
            localStorage.setItem(key, data);
 | 
						|
            console.log("Wriging ", key, data)
 | 
						|
        });
 | 
						|
        return source;
 | 
						|
        //*/
 | 
						|
    }
 | 
						|
} |