import { atom } from 'recoil'; import { logger } from '~/utils'; import type { Artifact } from '~/common'; export const artifactsState = atom | null>({ key: 'artifactsState', default: null, effects: [ ({ onSet, node }) => { onSet(async (newValue) => { logger.log('artifacts', 'Recoil Effect: Setting artifactsState', { key: node.key, newValue, }); }); }, ] as const, }); export const currentArtifactId = atom({ key: 'currentArtifactId', default: null, effects: [ ({ onSet, node }) => { onSet(async (newValue) => { logger.log('artifacts', 'Recoil Effect: Setting currentArtifactId', { key: node.key, newValue, }); }); }, ] as const, }); export const artifactsVisible = atom({ key: 'artifactsVisible', default: true, effects: [ ({ onSet, node }) => { onSet(async (newValue) => { logger.log('artifacts', 'Recoil Effect: Setting artifactsVisible', { key: node.key, newValue, }); }); }, ] as const, });