
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
appy-comps
Advanced tools
Appy Comps is a set of reusable minimal components for application-oriented react programs, rather than document oriented. The components are designed to be lightweight, very composable, and with no intrinsic style.
HBox and VBox
Renders the contents in a horizontal row, by default giving each component it's desired space. Anything left over is empty space. HBox uses FlexBox underneath. If you want one child to take up the remaining space, then set the grow attribute to true. To make the contents of the box scroll, set scroll to true. Normally the box will be positioned in it's natural place and default size. However, typically you want your top level box to fill the entire viewport. Set fill to true for this behavior. VBox is identical except it creates a vertical row.
Here's an example. To have an iTunes like layout with a toolbar at the top, a scrolling list on the left with a width of 300px, and make middle take up the rest of the available space: do this:
<VBox fill>
<HBox>
<button>prev</button>
<button>play</button>
<button>next</button>
<Spacer/>
<label>title of the current song</label>
<Spacer/>
<input type='search' placeholder='search for a song'>
</HBox>
<HBox grow>
<VBox scroll style={{width:'300px'}}>
list of playlists goes here
</VBox>
<VBox grow>
this is the main content here
</VBox>
</HBox>
</VBox>
The outermost vbox uses 'fill' to fill the window. The first HBox is the toolbar. The spacers suck up all extra space evenly, so the song title will be centered automatically with the other controls at the ends. The first inner VBox has a manually set width of 300px and will scroll it's contents. The second inner VBox will take up the rest of the available space.
The Spacer just takes up empty space. It's the equivalent of <div grow=true></div>
The Dialog will render a dialog centered in the viewport. It has a translucent scrim to hide the content behind. To ensure the dialog is above all other content you should place it at the end of your main div. Put the dialog contents inside of the Dialog. ex:
<div>
this is the main content
<!-- put all dialogs down here -->
<Dialog visible={this.state.dialogVisible}>
<p>do you want to save the document?</p>
<HBox>
<button onClick={()=>this.setState({dialogVisible:false})}>cancel</button>
<button onClick={this.doTheSaveAction}>Save</button>
</HBox>
</Dialog>
</div>
Popups like dropdown menus and color pickers may be called from anywhere in your document, but they need to always be rendered above all other content, even scrolling content.
First create a PopupManagerContext.Provider which wraps your entire application, like this:
return <PopupManagerContext.Provider value={new PopupManager()}>
<HBox>
<BufferEditor width={1280} height={768} initialZoom={6}/>
</HBox>
</PopupManagerContext.Provider>
Now add a PopupContainer. Place it at end of your main content, after the Dialogs, like this:
<div>
this is the main content
<!-- put all dialogs down here -->
<Dialog visible={this.state.dialogVisible}> ... </Dialog>
<PopupContainer/>
</div>
Note: only create one PopupContainer. It has no arguments.
To show a popup you must get a reference to the PopupManager context and call the show()
method in an event
handler somewhere. Pass in the contents of the popup along with the reference to the
component which triggered the popup (for placement).
const pm = useContext(PopupManagerContext.Consumer)
this.clickedShareButton = () => {
let contents = <div>
<button>Send to Twitter</button>
<button>Send to Facebook</button>
</div>;
pm.show(contents, this.refs.shareButton);
}
PopupContainer creates an invisible scrim behind the popup so any clicks outside of popup
contents will cancel the popup. To manually hide the popup, such as when the user selects an
item in the popup, call PopupManager.hide()
;
For the common case of a popup menu which lets you choose from a list of items, you can use
the PopupManager
class. This is an example which lets you choose the color of the button when
you click on it.
//this is the template for a single item in the popup
const ColorItemTemplate = (props) => {
return <label style={{backgroundColor:props.item}} onClick={props.onSelect}>some color</label>;
}
class ColorSelectorExample Component {
constructor(props) {
super(props);
// all possible colors
const colors = ['white','black',"red",'green','blue'];
// the current color
this.state = {
color:colors[0]
};
//handler to create and show the popup menu
this.chooseColor = (e) => {
e.preventDefault();
var contents = <PopupMenu
list={colors}
template={ColorItemTemplate}
onChange={this.changed}
/>;
PopupManager.show(contents, this.refs.button);
};
// called when the an item is selected in the menu
this.changed = (item) => {
console.log('changed to ',item);
PopupManager.hide();
this.setState({color:item})
};
}
render() {
return <HBox>
<button ref='button'
onClick={this.chooseColor}
style={{backgroundColor:this.state.color}}
>Choose</button>
</HBox>
}
}
These are for components which let the user choose one option from a set of possible options.
They all use the same pattern where you provide the model, state, and rendering template.
A scrolling vertical list of items
A group of mutually exclusive toggle buttons
HToggleGroup renders horizontally. use VToggleGroup for vertical
TagEditor
FAQs
React Components for Application-style webapps
The npm package appy-comps receives a total of 25 weekly downloads. As such, appy-comps popularity was classified as not popular.
We found that appy-comps demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.