0.0.33 • Published 3 years ago

@mometa/fs-handler v0.0.33

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

@mometa/fs-handler

NPM version NPM Downloads Prettier Conventional Commits

代码操作转换核心逻辑,如删除、移动、替换、插入等

Installation

npm install @mometa/fs-handler
# or use yarn
yarn add @mometa/fs-handler

Usage

const { createFsHandler, commonMiddlewares } = require('@mometa/fs-handler')
const handle = createFsHandler({
  middlewares: commonMiddlewares(),
  fs: require('fs')
})

handle(requestData).then(console.log)

RequestData

export interface CommonPreload extends Range {
  filename: string
  text: string
}

// 删除
export interface DelPreload extends CommonPreload {}
// 替换
export interface ReplacePreload extends CommonPreload {
  data: {
    // 替换为哪个文本
    newText: string
  }
}
// 移动
export interface MoveNodePreload extends CommonPreload {
  data: {
    // 移动到哪个位置
    to: Point
  }
}
// 插入
export interface InsertNodePreload {
  // 插入在哪个文件
  filename: string
  // 插入在哪个位置
  to: Point
  data: {
    // 插入文本
    newText?: string
    wrap?: {
      anotherTo: Point
      startStr: string
      endStr: string
    }
    // 插入物料
    material?: Asset['data']
  }
}

export type RequestData =
  | {
      type: OpType.DEL
      preload: DelPreload
    }
  | {
      type: OpType.REPLACE_NODE
      preload: ReplacePreload
    }
  | {
      type: OpType.MOVE_NODE
      preload: MoveNodePreload
    }
  | {
      type: OpType.INSERT_NODE
      preload: InsertNodePreload
    }

Contributing

  • Fork it!
  • Create your new branch:
    git checkout -b feature-new or git checkout -b fix-which-bug
  • Start your magic work now
  • Make sure npm test passes
  • Commit your changes:
    git commit -am 'feat: some description (close #123)' or git commit -am 'fix: some description (fix #123)'
  • Push to the branch: git push
  • Submit a pull request :)

Authors

This library is written and maintained by imcuttle.

License

MIT - imcuttle

0.0.33

3 years ago

0.0.32

3 years ago

0.0.31

3 years ago

0.0.30

3 years ago

0.0.29

3 years ago

0.0.28

3 years ago

0.0.27

3 years ago

0.0.25

3 years ago

0.0.24

3 years ago

0.0.23

3 years ago

0.0.22

3 years ago

0.0.21

3 years ago

0.0.20

3 years ago

0.0.19

3 years ago

0.0.18

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago