update active compiled file based on active editor file.
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
			
		||||
import type monaco from "monaco-editor";
 | 
			
		||||
import { proxy, ref, subscribe } from "valtio";
 | 
			
		||||
import { devtools } from 'valtio/utils';
 | 
			
		||||
import { devtools, subscribeKey } from 'valtio/utils';
 | 
			
		||||
import { XrplClient } from "xrpl-client";
 | 
			
		||||
import { SplitSize } from "./actions/persistSplits";
 | 
			
		||||
 | 
			
		||||
@@ -173,6 +173,18 @@ if (typeof window !== "undefined") {
 | 
			
		||||
    const accountsNoLoading = accounts.map(acc => ({ ...acc, isLoading: false }))
 | 
			
		||||
    localStorage.setItem("hooksIdeAccounts", JSON.stringify(accountsNoLoading));
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  const updateActiveWat = () => {
 | 
			
		||||
    const filename = state.files[state.active]?.name
 | 
			
		||||
 | 
			
		||||
    const compiledFiles = state.files.filter(
 | 
			
		||||
      file => file.compiledContent)
 | 
			
		||||
    const idx = compiledFiles.findIndex(file => file.name === filename)
 | 
			
		||||
 | 
			
		||||
    if (idx !== -1) state.activeWat = idx
 | 
			
		||||
  }
 | 
			
		||||
  subscribeKey(state, 'active', updateActiveWat)
 | 
			
		||||
  subscribeKey(state, 'files', updateActiveWat)
 | 
			
		||||
}
 | 
			
		||||
export default state
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user