| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import { App } from "../app/app"
- import { Bus } from "../bus"
- import { File } from "../file"
- import { Log } from "../util/log"
- import path from "path"
- import * as Formatter from "./formatter"
- export namespace Format {
- const log = Log.create({ service: "format" })
- const state = App.state("format", () => {
- const enabled: Record<string, boolean> = {}
- return {
- enabled,
- }
- })
- async function isEnabled(item: Formatter.Info) {
- const s = state()
- let status = s.enabled[item.name]
- if (status === undefined) {
- status = await item.enabled()
- s.enabled[item.name] = status
- }
- return status
- }
- async function getFormatter(ext: string) {
- const result = []
- for (const item of Object.values(Formatter)) {
- if (!item.extensions.includes(ext)) continue
- if (!isEnabled(item)) continue
- result.push(item)
- }
- return result
- }
- export function init() {
- log.info("init")
- Bus.subscribe(File.Event.Edited, async (payload) => {
- const file = payload.properties.file
- log.info("formatting", { file })
- const ext = path.extname(file)
- for (const item of await getFormatter(ext)) {
- log.info("running", { command: item.command })
- const proc = Bun.spawn({
- cmd: item.command.map((x) => x.replace("$FILE", file)),
- cwd: App.info().path.cwd,
- env: item.environment,
- stdout: "ignore",
- stderr: "ignore",
- })
- const exit = await proc.exited
- if (exit !== 0)
- log.error("failed", {
- command: item.command,
- ...item.environment,
- })
- }
- })
- }
- }
|