Demos | Installation | Getting Started | Templates | Components |
---|
Battleaxe's component library for every app, every theme, and every one
Make panels for After Effects, Illustrator, Photoshop, InDesign, Premiere Pro, Audition, Animate, InCopy, Prelude, Dreamweaver, Muse, Bridge and Rush like a pro even if you can't code like one.
Developing a panel for Adobe should be more about what your tool does, not just what your tool looks like. Brutalism is so quick you can make a panel in a few hours instead of a few months, and so flexible you can rely entirely on what it offers or take only the parts you need:
-
Blazing fast developer workflow with bombino lets you go from creating a panel to signing it as a ZXP in less than a minute.
-
Clean Battleaxe design built with Adobe in mind first, but still functional in browser and even mobile. Brutalism is the only design framework meant for Adobe programs and not needing to bend over backwards just to have them look out of place in the host app.
-
Components are designed to simplify your project and keep your logic clean, allowing you to create entire panels in a single page with less than 30 lines of HTML (AEUX demo is only 23!) and hardly any JS.
-
Host app themes, scrollbars, UI changes, and colors take care of themselves. You have access to over 40 colors specific to the current host and theme and you're free to let your own components and HTML blend in by using the corresponding CSS variables made available.
-
Script loading is dead simple and dynamic. You can easily use any number of scripts via the root
<Panel>
component'sscript-path
andutils
props, and you can keep them anywhere you want. -
Context and flyout menus are handled via props in a
<Menus>
component; completely reactive, dynamic, and in standard JS -- not some ludicrous XML. -
Typescript support for scripting is built in for supported apps, allowing you to see the application's DOM as you type code even if you have no idea how to use Typescript -- no need for dinosaur programs like ESTK or it's Object Model Viewer here.
-
Nearly all the hurdles and quirks of working with Adobe using with Vue, Webpack, and NodeJS taken care of for you and much more!
All of the above are made possible by this library's <Panelify>
component and dead simple to do.
npm i brutalism
If using bombino:
npm i -g bombino
# In any valid CEP directory:
bombino
# > Select a Brutalism template on prompt
# Skip above installation and invocation with a single command:
# npx bombino
// Import the desired components
import { Panel, Menus } from "brutalism";
// Assign them as global components to the Vue instance
Vue.component("Panel", Panel);
Vue.component("Menus", Menus);
// Be sure to do so before instantiating Vue:
new Vue({
router,
render: (h) => h(App),
}).$mount("#app");
- Kitchen sink (all components, no utility functions)
- Utilities only
<script>
// Import as many or few components as you need
import { Panel, Menus } from 'brutalism';
export default {
components: {
Panel,
Menus
}
}
Quickstart templates with bombino to get you up and running in less than a minute:
See all available components live on the documentation site here