1.0.1 • Published 5 years ago

file-section-manager v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Section Manager

Lightweight section management of Files. Wraps section-manager.

Installation

  • npm install file-section-manager, or
  • yarn add file-section-manager

Example

import * as fs from 'fs'

import { FileSectionManager } from 'file-section-manager'

const absoluteFilePath = '/my/package/dir/file.ts'

const fileSectionManager = new FileSectionManager(absoluteFilePath)

const updatedSection = ['One', 'Two', 'Three']

fileSectionManager.findAndUpdateSection('MySection', updatedSection)

fileSectionManager.writeSync() // This will write to the file on disk

console.log(fileSectionManager.toString())
/* Output
Hello
World!

<-- MySection

One
Two
Three

--> MySection

Bye!
*/

API

  • This module primarily exports FileSectionManager
  • This module also re-exports all exports of SectionManager

FileSectionManager

FileSectionManager(absolutePathFileName: string, options: SectionManagerOptions): FileSectionManager
type SectionManagerOptions = {
    padding?: boolean,
    sectionSyntax?: {
        start: (name) => string,
        end: (name) => string
    }
}
  • padding: controls whether or not there should be a new line after the section start and before the section end
    • This setting can be overridden on the update methods
  • sectionSyntax: gives the developer control over the syntax for delimiting each section
    • Defaults:
      • start: (name) => `<-- ${ name }`
      • end: (name) => `--> ${ name }`

Methods

findAndUpdateSection

findAndUpdateSection(section: string, sectionContentArray: string[], padding?: boolean): void

prependToSection

prependToSection(section: string, sectionContentArray: string[]): void

appendToSection

appendToSection(section: string, sectionContentArray: string[]): void

toString

toString(): string

The following are internal methods, but are exposed for cases that require manual control

findSection

findSection(section: string): {
    startSection: number,
    endSection: number,
    indentChars: number,
    section: string[]
}

updateSection

updateSection(options: UpdateSectionOptions): void
type UpdateSectionOptions = {
    startSection: number,
    endSection: number,
    indentChars: string,
    sectionContentArray: string[],
    padding?: boolean
}

setFileArray

setFileArray(fileArray: string[]): void

getFileArray

getFileArray(): string[]

Extending

You can extend the behavior by extending the base class SectionManager. For example, this module does just that:

import * as fs from 'fs'

import { SectionManager } from 'section-manager'

export class FileSectionManager extends SectionManager {
    absolutePathFileName: string

    constructor(absolutePathFileName: string, options: SectionManagerOptions) {
        super(options)

        if (!fs.existsSync(absolutePathFileName) ){
            throw new Error('File not found')
        }

        this.absolutePathFileName = absolutePathFileName

        this.readSync()
    }

    readSync() {
        const fileString = fs.readFileSync(this.absolutePathFileName).toString()

        this.setFileArray(fileString.split('\n'))
    }

    writeSync() {
        fs.writeFileSync(this.absolutePathFileName, this.getFileArray().join('\n'))
    }
}