cordis 4.0.0-rc.6, plugin-loader, -include, -group, -timer, -hmr, -logger-console, cosmokit 1.8.1, schemastery 3.18.0 — copied from the cordis-workspace checkout, flattened under vendor/, original npm names, private: true. vendor/README.md is the manifest: upstream repos + commit SHAs, local-modification log, sync procedure. Local modification: hmr's locale YAML imports and .i18n() call removed (avoids a runtime YAML import hook we don't vendor).
91 lines
2.5 KiB
TypeScript
91 lines
2.5 KiB
TypeScript
import { Context, Service } from 'cordis'
|
|
import { Entry, EntryOptions } from './entry.ts'
|
|
import { EntryTree } from './tree.ts'
|
|
|
|
/** Runtime owner for a list of child loader entries. */
|
|
export class EntryGroup {
|
|
static readonly key = Symbol.for('cordis.group')
|
|
|
|
public data: EntryOptions[] = []
|
|
|
|
constructor(public ctx: Context, public tree: EntryTree) {
|
|
const entry = ctx.fiber.entry
|
|
if (entry) entry.subgroup = this
|
|
}
|
|
|
|
get context(): Context {
|
|
return this.ctx
|
|
}
|
|
|
|
async create(options: Omit<EntryOptions, 'id'>) {
|
|
const id = this.tree.ensureId(options)
|
|
const entry: Entry = this.tree.store[id] ??= new Entry(this.ctx.loader)
|
|
// Entry may be moved from another group,
|
|
// so we need to update the parent reference.
|
|
entry.parent = this
|
|
// Use `create: true` to replace existing entry.options.
|
|
await entry.update(options, true, true)
|
|
return entry.id
|
|
}
|
|
|
|
unlink(options: EntryOptions) {
|
|
const config = this.data
|
|
const index = config.indexOf(options)
|
|
if (index >= 0) config.splice(index, 1)
|
|
}
|
|
|
|
remove(id: string, isDispose = false) {
|
|
const entry = this.tree.store[id]
|
|
if (!entry) return
|
|
entry.fiber?.dispose()
|
|
if (!isDispose) {
|
|
this.unlink(entry.options)
|
|
}
|
|
delete this.tree.store[id]
|
|
this.context.emit('loader/partial-dispose', entry, entry.options, false)
|
|
}
|
|
|
|
async update(config: EntryOptions[]) {
|
|
const oldConfig = this.data as EntryOptions[]
|
|
this.data = config
|
|
const oldMap = Object.fromEntries(oldConfig.map(options => [options.id, options]))
|
|
const newMap = Object.fromEntries(config.map(options => [options.id ?? Symbol('anonymous'), options]))
|
|
|
|
// update inner plugins
|
|
const ids = Reflect.ownKeys({ ...oldMap, ...newMap }) as string[]
|
|
await Promise.all(ids.map(async (id) => {
|
|
if (newMap[id]) {
|
|
await this.create(newMap[id]).catch((error) => {
|
|
this.ctx.logger.error(error)
|
|
})
|
|
} else {
|
|
this.remove(id)
|
|
}
|
|
}))
|
|
}
|
|
|
|
stop() {
|
|
for (const options of this.data) {
|
|
this.remove(options.id, true)
|
|
}
|
|
}
|
|
}
|
|
|
|
/** Plugin that mounts a nested loader entry group. */
|
|
export class Group extends EntryGroup {
|
|
static initial: Omit<EntryOptions, 'id'>[] = []
|
|
static readonly [EntryGroup.key] = true
|
|
|
|
constructor(public ctx: Context, public config: EntryOptions[]) {
|
|
super(ctx, ctx.fiber.entry!.parent.tree)
|
|
ctx.on('internal/update', (config) => {
|
|
this.update(config)
|
|
})
|
|
}
|
|
|
|
async* [Service.init]() {
|
|
yield () => this.stop()
|
|
await this.update(this.config)
|
|
}
|
|
}
|