A class that interfaces with the raw contents of a subreddit's toolbox wiki page, automatically handling schema checks and providing methods to read and modify subreddit configuration.

Constructors

Methods

  • Returns the usernote type matching the given key. Useful for looking up display information for a usernote from Usernote.noteType.

    Parameters

    • key: string

    Returns undefined | RawUsernoteType

    const toolbox = new ToolboxClient(reddit);
    const subreddit = 'mildlyinteresting';

    // Acquire a note somehow
    const usernotes = toolbox.getUsernotes(subreddit);
    const note = usernotes.get('eritbh')[0];

    // Look up information about the type of this note
    const subConfig = toolbox.getConfig(subreddit);
    const {color, text} = subConfig.getNoteType(note.noteType);
  • Stringifies the subreddit config data for writing back to the wiki.

    Parameters

    • Optionalindent: string | number

      Passed as the third argument of JSON.stringify. Useful for debugging; however, because wiki space is limited, never provide this parameter when actually saving config to the wiki.

    Returns string

    JSON string which can be saved as the contents of the toolbox wiki page