All Projects → battleaxedotco → brutalism

battleaxedotco / brutalism

Licence: MIT License
Battleaxe's component library for Adobe CEP panels

Programming Languages

HTML
75241 projects
CSS
56736 projects
Vue
7211 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to brutalism

ovid-editor
Adobe panel providing the most advanced scripting environment possible -- Typescript, app DOM autocomplete, full I/O features and more
Stars: ✭ 43 (+0%)
Mutual labels:  photoshop, illustrator, adobe, indesign, after-effects, audition, premiere-pro
adobe-discord-rpc
Discord Rich Presence extension for your adobe apps!
Stars: ✭ 383 (+790.7%)
Mutual labels:  photoshop, illustrator, adobe, after-effects, audition, premiere-pro
After-Effects-Fun
Expressions, scripts and projects for Adobe After Effects
Stars: ✭ 20 (-53.49%)
Mutual labels:  adobe, after-effects, adobe-after-effects
Make-This
Project files for the Make This video series and community challenges.
Stars: ✭ 16 (-62.79%)
Mutual labels:  photoshop, illustrator, after-effects
adobe-scripts
Drafts and unsorted JSX scripts for Adobe Illustrator, Photoshop
Stars: ✭ 29 (-32.56%)
Mutual labels:  adobe-illustrator, adobe, adobe-photoshop
SwiftyIllustrator
A tool for quickly converting Adobe Illustrator shapes into SwiftUI code.
Stars: ✭ 26 (-39.53%)
Mutual labels:  illustrator, adobe-illustrator, adobe
Photoshop-Export-Layers-to-Files-Fast
This script allows you to export your layers as individual files at a speed much faster than the built-in script from Adobe.
Stars: ✭ 1,127 (+2520.93%)
Mutual labels:  photoshop, adobe
ExtendScript
🍆 Getting started with ExtendScript ✨ by Jeff Davis
Stars: ✭ 23 (-46.51%)
Mutual labels:  photoshop, adobe
Duik-15
Duduf IK & Animation Tools for Adobe After Effects
Stars: ✭ 156 (+262.79%)
Mutual labels:  adobe, after-effects
open-type-features
Testing the OpenType features of installed fonts in Adobe InDesign
Stars: ✭ 40 (-6.98%)
Mutual labels:  adobe, indesign
illustrator-scripts
Set of scripts to improve Icons workflow
Stars: ✭ 26 (-39.53%)
Mutual labels:  illustrator, adobe-illustrator
react-adobe-animate
Component helping to embed animations from Adobe Animate
Stars: ✭ 21 (-51.16%)
Mutual labels:  adobe, adobe-animate
weather-icons
Free to use animated weather icons.
Stars: ✭ 341 (+693.02%)
Mutual labels:  adobe-illustrator, adobe-after-effects
whatsapp-jpeg-repair
A handy tool to fix jpeg files downloaded from WhatsApp and prevent errors upon opening these files in Adobe Photoshop.
Stars: ✭ 30 (-30.23%)
Mutual labels:  photoshop, adobe-photoshop
quickExp
a script for controlling expressions quickly in After Effects
Stars: ✭ 24 (-44.19%)
Mutual labels:  adobe, after-effects
ID-MultiPageImporter
Script for automating the placing (import) of PDF and InDesign files inside Adobe InDesign
Stars: ✭ 77 (+79.07%)
Mutual labels:  adobe, indesign
favicon
🖼 An attempt to capture all possible favicons for a web project.
Stars: ✭ 17 (-60.47%)
Mutual labels:  photoshop, illustrator
illustrator-point-exporter
✨ JSON exporter for Adobe Illustrator: get point coordinates from paths by layer.
Stars: ✭ 72 (+67.44%)
Mutual labels:  illustrator, adobe-illustrator
Indentz
Collection of InDesign scripts for simple and repetitive tasks.
Stars: ✭ 23 (-46.51%)
Mutual labels:  adobe, indesign
Apssistant
A Photoshop Tweak Tool on Windows. It can disable ALT to activate the menu bar.
Stars: ✭ 48 (+11.63%)
Mutual labels:  photoshop, illustrator

brutalism

Demos Installation Getting Started Templates Components

Battleaxe's component library for every app, every theme, and every one

Check out the documentation site

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's script-path and utils 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!


Demos

These are not screenshots, they're the real thing in browser:

All of the above are made possible by this library's <Panelify> component and dead simple to do.


Installation

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

Getting Started

Bombino takes care of all this for you. Only do the below if installing the library manually.

Within ./src/main.js (to use anywhere in project with no need to import per component file):

// 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");

Within App.vue or a given .vue file:

<script>
// Import as many or few components as you need
import { Panel, Menus } from 'brutalism';

export default {
  components: {
    Panel,
    Menus
  }
}

Templates

Quickstart templates with bombino to get you up and running in less than a minute:


Components

See all available components live on the documentation site here

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].