Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@quenty/blend

Package Overview
Dependencies
Maintainers
1
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@quenty/blend

Declarative UI system.

  • 1.1.1-canary.7d8baab.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
276
decreased by-65.84%
Maintainers
1
Weekly downloads
 
Created
Source

Blend

Documentation Discord Build and release status

Declarative UI system inspired by Fusion

Installation

npm install @quenty/blend --save

Attributes

This system is designed to be very similar to fusion, except that we do not having any global state management, do not rely upon weak references, works with my types, and is built on top of Rx types.

  • No global state
  • Extensible
  • No implicit reliance upon GC

Usage

See files in src/Client/Test that are stories. Blend returns an observable that will create/return one instance.

Note that subscribe function anchors everything into a maid/cleanup function that can be used to disconnect the whole tree.

local require = ... -- Nevermore import here
local Blend = require("Blend")
local Maid = require("Maid")

local maid = Maid.new()

local isVisible = Instance.new("BoolValue")
isVisible.Value = false

local percentVisible = Blend.Spring(Blend.Computed(isVisible, function(visible)
  return visible and 1 or 0
end), 35)

local transparency = Blend.Computed(percentVisible, function(percent)
  return 1 - percent
end)

maid:GiveTask((Blend.New "Frame" {
  Size = UDim2.new(0.5, 0, 0.5, 0);
  BackgroundColor3 = Color3.new(0.9, 0.9, 0.9);
  AnchorPoint = Vector2.new(0.5, 0.5);
  Position = UDim2.new(0.5, 0, 0.5, 0);
  BackgroundTransparency = transparency;
  Parent = parent; -- TODO: Assign parent

  [Blend.Children] = {
    Blend.New "UIScale" {
      Scale = Blend.Computed(percentVisible, function(percent)
        return 0.8 + 0.2*percent
      end);
    };
    Blend.New "UICorner" {
      CornerRadius = UDim.new(0.05, 0);
    };
  };
}):Subscribe())

Keywords

FAQs

Package last updated on 15 Dec 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc