brick-0.46: A declarative terminal user interface library

Safe HaskellNone
LanguageHaskell2010

Brick.Widgets.FileBrowser

Contents

Description

This module provids a file browser widget that allows users to navigate directory trees, search for files and directories, and select entries of interest. For a complete working demonstration of this module, see programs/FileBrowserDemo.hs.

To use this module:

File browsers have a built-in user-configurable function to limit the entries displayed that defaults to showing all files. For example, an application might want to limit the browser to just directories and XML files. That is accomplished by setting the filter with setFileBrowserEntryFilter and some examples are provided in this module: fileTypeMatch and fileExtensionMatch.

File browsers are styled using the provided collection of attribute names, so add those to your attribute map to get the appearance you want. File browsers also make use of a List internally, so the List attributes will affect how the list appears.

File browsers catch IOExceptions when changing directories. If a call to setWorkingDirectory triggers an IOException while reading the working directory, the resulting IOException is stored in the file browser and is accessible with fileBrowserException. The setWorkingDirectory function clears the exception field if the working directory is read successfully. The caller is responsible for deciding when and whether to display the exception to the user. In the event that an IOException is raised as described here, the file browser will always present .. as a navigation option to allow the user to continue navigating up the directory tree. It does this even if the current or parent directory does not exist or cannot be read, so it is always safe to present a file browser for any working directory. Bear in mind that the .. entry is always subjected to filtering and searching.

Synopsis

Types

data FileBrowser n Source #

A file browser's state. Embed this in your application state and transform it with handleFileBrowserEvent and the functions included in this module.

data FileInfo Source #

Information about a file entry in the browser.

Constructors

FileInfo 

Fields

Instances
Eq FileInfo Source # 
Instance details

Defined in Brick.Widgets.FileBrowser

Show FileInfo Source # 
Instance details

Defined in Brick.Widgets.FileBrowser

data FileStatus Source #

File status information.

Constructors

FileStatus 

Fields

Instances
Eq FileStatus Source # 
Instance details

Defined in Brick.Widgets.FileBrowser

Show FileStatus Source # 
Instance details

Defined in Brick.Widgets.FileBrowser

data FileType Source #

The type of file entries in the browser.

Constructors

RegularFile

A regular disk file.

BlockDevice

A block device.

CharacterDevice

A character device.

NamedPipe

A named pipe.

Directory

A directory.

SymbolicLink

A symbolic link.

UnixSocket

A Unix socket.

Making a new file browser

newFileBrowser Source #

Arguments

:: (FileInfo -> Bool)

The function used to determine what kinds of entries can be selected (see handleFileBrowserEvent). A good default is selectNonDirectories. This can be changed at 'any time with fileBrowserSelectable or its 'corresponding lens.

-> n

The resource name associated with the browser's entry listing.

-> Maybe FilePath

The initial working directory that the browser displays. If not provided, this defaults to the executable's current working directory.

-> IO (FileBrowser n) 

Make a new file browser state. The provided resource name will be used to render the List viewport of the browser.

By default, the browser will show all files and directories in its working directory. To change that behavior, see setFileBrowserEntryFilter.

selectNonDirectories :: FileInfo -> Bool Source #

A file entry selector that permits selection of all file entries except directories. Use this if you want users to be able to navigate directories in the browser. If you want users to be able to select only directories, use selectDirectories.

selectDirectories :: FileInfo -> Bool Source #

A file entry selector that permits selection of directories only. This prevents directory navigation and only supports directory selection.

Manipulating a file browser's state

setWorkingDirectory :: FilePath -> FileBrowser n -> IO (FileBrowser n) Source #

Set the working directory of the file browser. This scans the new directory and repopulates the browser while maintaining any active search string and/or entry filtering.

If the directory scan raises an IOException, the exception is stored in the browser and is accessible with fileBrowserException. If no exception is raised, the exception field is cleared. Regardless of whether an exception is raised, .. is always presented as a valid option in the browser.

getWorkingDirectory :: FileBrowser n -> FilePath Source #

Get the working directory of the file browser.

updateFileBrowserSearch Source #

Arguments

:: (Maybe Text -> Maybe Text)

The search transformation. Nothing indicates that search mode should be off; Just indicates that it should be on and that the provided search string should be used.

-> FileBrowser n

The browser to modify.

-> FileBrowser n 

Modify the file browser's active search string. This causes the browser's displayed entries to change to those in its current directory that match the search string, if any. If a search string is provided, it is matched case-insensitively anywhere in file or directory names.

setFileBrowserEntryFilter :: Maybe (FileInfo -> Bool) -> FileBrowser n -> FileBrowser n Source #

Set the filtering function used to determine which entries in the browser's current directory appear in the browser. Nothing indicates no filtering, meaning all entries will be shown. Just indicates a function that should return True for entries that should be permitted to appear.

Handling events

handleFileBrowserEvent :: Ord n => Event -> FileBrowser n -> EventM n (FileBrowser n) Source #

Handle a Vty input event. Note that event handling can cause a directory change so the caller should be aware that fileBrowserException may need to be checked after handling an event in case an exception was triggered while scanning the working directory.

Events handled regardless of mode:

  • Enter, Space: set the file browser's selected entry (fileBrowserSelection) for use by the calling application, subject to fileBrowserSelectable.
  • Ctrl-n: select the next entry
  • Ctrl-p: select the previous entry
  • List navigation keys

Events handled only in normal mode:

  • /: enter search mode

Events handled only in search mode:

  • Esc, Ctrl-C: cancel search mode
  • Text input: update search string

Rendering

renderFileBrowser Source #

Arguments

:: (Show n, Ord n) 
=> Bool

Whether the file browser has input focus.

-> FileBrowser n

The browser to render.

-> Widget n 

Render a file browser. This renders a list of entries in the working directory, a cursor to select from among the entries, a header displaying the working directory, and a footer displaying information about the selected entry.

Note that if the most recent file browser operation produced an exception in fileBrowserException, that exception is not rendered by this function. That exception needs to be rendered (if at all) by the calling application.

The file browser is greedy in both dimensions.

Getting information

fileBrowserCursor :: FileBrowser n -> Maybe FileInfo Source #

Get the file information for the file under the cursor, if any.

fileBrowserIsSearching :: FileBrowser n -> Bool Source #

Returns whether the file browser is in search mode, i.e., the mode in which user input affects the browser's active search string and displayed entries. This is used to aid in event dispatching in the calling program.

fileBrowserSelection :: FileBrowser n -> [FileInfo] Source #

Get the entries chosen by the user, if any. Entries are chosen by an Enter or Space keypress; if you want the entry under the cursor, use fileBrowserCursor.

fileBrowserException :: FileBrowser n -> Maybe IOException Source #

The exception status of the latest directory change. If Nothing, the latest directory change was successful and all entries were read. Otherwise, this contains the exception raised by the latest directory change in case the calling application needs to inspect or present the error to the user.

fileBrowserSelectable :: FileBrowser n -> FileInfo -> Bool Source #

The function that determines what kinds of entries are selectable with in the event handler. Note that if this returns True for an entry, an Enter or Space keypress selects that entry rather than doing anything else; directory changes can only occur if this returns False for directories.

Note that this is a record field so it can be used to change the selection function.

fileInfoFileType :: FileInfo -> Maybe FileType Source #

Get the file type for this file info entry. If the file type could not be obtained due to an IOException, return Nothing.

Attributes

fileBrowserAttr :: AttrName Source #

The base attribute for all file browser attributes.

fileBrowserCurrentDirectoryAttr :: AttrName Source #

The attribute used for the current directory displayed at the top of the browser.

fileBrowserSelectionInfoAttr :: AttrName Source #

The attribute used for the entry information displayed at the bottom of the browser.

fileBrowserSelectedAttr :: AttrName Source #

The attribute used for selected entries in the file browser.

fileBrowserDirectoryAttr :: AttrName Source #

The attribute used to render directory entries.

fileBrowserBlockDeviceAttr :: AttrName Source #

The attribute used to render block device entries.

fileBrowserRegularFileAttr :: AttrName Source #

The attribute used to render regular file entries.

fileBrowserCharacterDeviceAttr :: AttrName Source #

The attribute used to render character device entries.

fileBrowserNamedPipeAttr :: AttrName Source #

The attribute used to render named pipe entries.

fileBrowserSymbolicLinkAttr :: AttrName Source #

The attribute used to render symbolic link entries.

fileBrowserUnixSocketAttr :: AttrName Source #

The attribute used to render Unix socket entries.

Example browser entry filters

fileTypeMatch :: [FileType] -> FileInfo -> Bool Source #

A file type filter for use with setFileBrowserEntryFilter. This filter permits entries whose file types are in the specified list.

fileExtensionMatch :: String -> FileInfo -> Bool Source #

A filter that matches any directory regardless of name, or any regular file with the specified extension. For example, an extension argument of "xml" would match regular files test.xml and TEST.XML and it will match directories regardless of name.

Lenses

Miscellaneous

prettyFileSize Source #

Arguments

:: Int64

A file size in bytes.

-> Text 

Generate a textual abbreviation of a file size, e.g. "10.2M" or "12 bytes".

Utilities

entriesForDirectory :: FilePath -> IO [FileInfo] Source #

Build a list of file info entries for the specified directory. This function does not catch any exceptions raised by calling makeAbsolute or listDirectory, but it does catch exceptions on a per-file basis. Any exceptions caught when inspecting individual files are stored in the fileInfoFileStatus field of each FileInfo.

The entries returned are all entries in the specified directory except for . and ... Directories are always given first. Entries are sorted in case-insensitive lexicographic order.

This function is exported for those who want to implement their own file browser using the types in this module.

getFileInfo Source #

Arguments

:: String

The name of the file to inspect. This filename is only used to set the fileInfoFilename and sanitized filename fields; the actual file to be inspected is referred to by the second argument. This is decomposed so that FileInfos can be used to represent information about entries like .., whose display names differ from their physical paths.

-> FilePath

The actual full path to the file or directory to inspect.

-> IO FileInfo 

Build a FileInfo for the specified file and path. If an IOException is raised while attempting to get the file information, the fileInfoFileStatus field is populated with the exception. Otherwise it is populated with the FileStatus for the file.