import { Opt } from 'lib/option'; import { Attribute, BoxWidget } from 'lib/types/widget'; import Wallpaper from 'services/Wallpaper'; export const wallpaperInputter = ( self: BoxWidget, opt: Opt, ): Attribute | void => { if (typeof opt.value === 'string') { return (self.child = Widget.FileChooserButton({ on_file_set: ({ uri }) => { const newValue: string = uri!.replace('file://', ''); opt.value = newValue as T; if (options.wallpaper.enable.value) { Wallpaper.set(newValue); } }, })); } };