1
0
Fork 0
freesewing/plugins/plugin-annotations/src/banner.mjs

64 lines
1.4 KiB
JavaScript
Raw Normal View History

/*
* Defaults for the bannner macro
*/
const macroDefaults = {
classes: 'center',
dy: -1,
force: false,
id: 'banner',
repeat: 10,
spaces: 12,
}
/*
* The rmbanner macro
*/
const rmbanner = (id = macroDefaults.id, { store, part }) =>
store.removeMacroNodes(id, 'banner', part)
2023-10-18 17:27:30 +02:00
const banner = function (config, { paths, store, complete }) {
/*
* Don't add a banner when complete is false, unless force is true
*/
if (!complete && !config.force) return
/*
* Merge macro defaults with user-provided config to create the macro config (mc)
*/
const mc = { ...macroDefaults, ...config }
/*
* Get the list of IDs
*/
const ids = store.generateMacroIds(['banner'], mc.id)
/*
* Prepare the path to hold the banner text
*/
paths[ids.banner] = mc.path
.clone()
.setClass('hidden')
.attr('data-text-dy', mc.dy)
.attr('data-text-class', mc.classes)
/*
* Construct the text string piece by piece so it gets translated
*/
const spacer = ' '.repeat(mc.spaces)
for (let i = 0; i < mc.repeat; i++) paths[ids.banner].addText(mc.text).addText(spacer)
paths[ids.banner].addText(mc.text)
/*
* Store all IDs in the store so we can remove this macro with rmbanner
*/
store.storeMacroIds(mc.id, { paths: ids })
2023-09-28 13:26:32 +02:00
/*
* Returning ids is a best practice for FreeSewing macros
*/
return store.getMacroIds(mc.id)
}
// Export macros
export const bannerMacros = { banner, rmbanner }