Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/uix-core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ export * from "./cross-realm-object";
export * from "./logging-formatters";
export * from "./promises";
export * from "./tunnel";
export * from "./store";
export type { Asynced } from "./object-walker";
27 changes: 27 additions & 0 deletions packages/uix-core/src/store/data-store.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
interface DataStoreInterface {
[key: string]: unknown;
}

export class DataStore {
private readonly store: DataStoreInterface;
private static instance: DataStore;

constructor() {
this.store = {};
}

public static getInstance(): DataStore {
if (!DataStore.instance) {
DataStore.instance = new DataStore();
}
return DataStore.instance;
}

public set(key: string, value: unknown) {
this.store[key] = value;
}

public get(key: string): unknown {
return this.store[key];
}
}
1 change: 1 addition & 0 deletions packages/uix-core/src/store/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./store-manager";
47 changes: 47 additions & 0 deletions packages/uix-core/src/store/pubsub.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
export type SubscriptionType = (
value: unknown,
metadata?: { [key: string]: unknown; subscriptionProp: string }
) => void;
export type SubscriptionsListType = SubscriptionType[];
export type EventSubscriptionsType = { [key: string]: SubscriptionsListType };

export class PublishSubscribe {
private readonly subscriptions: EventSubscriptionsType;
private static instance: PublishSubscribe;

constructor() {
this.subscriptions = { "*": [] };
}

public static getInstance(): PublishSubscribe {
if (!PublishSubscribe.instance) {
PublishSubscribe.instance = new PublishSubscribe();
}
return PublishSubscribe.instance;
}

public subscribe(property: string, callback: SubscriptionType) {
if (!this.subscriptions[property]) {
this.subscriptions[property] = [];
}
this.subscriptions[property].push(callback);
}

public unsubscribe(property: string, callback: SubscriptionType) {
this.subscriptions[property] = this.subscriptions[property]?.filter(
(sub) => sub !== callback
);
}

public publish(property: string, value: unknown) {
if (!this.subscriptions[property]) {
this.subscriptions[property] = [];
}

[...this.subscriptions[property], ...this.subscriptions["*"]].forEach(
(subscription: SubscriptionType) => {
subscription(value, { subscriptionProp: property });
}
);
}
}
80 changes: 80 additions & 0 deletions packages/uix-core/src/store/store-manager.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
import { DataStore } from "./data-store";
import { PublishSubscribe, SubscriptionType } from "./pubsub";

export interface ExtensibleStoreManagerInterface {
set: (key: string, value: unknown, scope?: string) => void;
get: (key: string, scope?: string) => unknown;
subscribe: (
property: string,
callback: SubscriptionType,
scope?: string
) => void;
unsubscribe: (
property: string,
callback: SubscriptionType,
scope?: string
) => void;
publish: (property: string, value: unknown) => void;
}

interface StoreInterface {
set(key: string, value: unknown): void;
get(key: string): unknown;
}

export class ExtensibleStoreManager implements ExtensibleStoreManagerInterface {
private readonly store: StoreInterface;
private publishSubscriber: PublishSubscribe;
private static instance: ExtensibleStoreManagerInterface;
private readonly scope: string;

constructor() {
this.store = DataStore.getInstance();
this.publishSubscriber = PublishSubscribe.getInstance();
this.scope = "default";
}

public static getInstance(): ExtensibleStoreManagerInterface {
if (!ExtensibleStoreManager.instance) {
ExtensibleStoreManager.instance = new ExtensibleStoreManager();
}
return ExtensibleStoreManager.instance;
}

public set(key: string, value: unknown, scope?: string) {
const dataScope = scope ?? this.scope;
const current = this.store.get(`${dataScope}.${key}`);
if (current !== value) {
this.store.set(`${dataScope}.${key}`, value);
this.publishSubscriber.publish(`${dataScope}.${key}`, value);
}
}

public get(key: string, scope?: string): unknown {
const dataScope = scope ?? this.scope;
return this.store.get(`${dataScope}.${key}`);
}

public subscribe(
property: string,
callback: SubscriptionType,
scope?: string
) {
const dataScope = scope ?? this.scope;
const prop = property !== "*" ? `${dataScope}.${property}` : property;
this.publishSubscriber.subscribe(prop, callback);
}

public unsubscribe(
property: string,
callback: SubscriptionType,
scope?: string
) {
const dataScope = scope ?? this.scope;
this.publishSubscriber.unsubscribe(`${dataScope}.${property}`, callback);
}

public publish(property: string, value: unknown) {
this.publishSubscriber.publish(property, value);
}
}
79 changes: 79 additions & 0 deletions packages/uix-guest-react/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Adobe Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our project and community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contribute to a positive environment for our project and community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
* Focusing on what is best, not just for us as individuals but for the overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others’ private information, such as a physical or email address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for behaviors that they deem inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies when an individual is representing the project or its community both within project spaces and in public spaces. Examples of representing a project or community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by first contacting the project team. Oversight of Adobe projects is handled by the Adobe Open Source Office, which has final say in any violations and enforcement of this Code of Conduct and can be reached at Grp-opensourceoffice@adobe.com. All complaints will be reviewed and investigated promptly and fairly.

The project team must respect the privacy and security of the reporter of any incident.

Project maintainers who do not follow or enforce the Code of Conduct may face temporary or permanent repercussions as determined by other members of the project's leadership or the Adobe Open Source Office.

## Enforcement Guidelines

Project maintainers will follow these Community Impact Guidelines in determining the consequences for any action they deem to be in violation of this Code of Conduct:

**1. Correction**

Community Impact: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.

Consequence: A private, written warning from project maintainers describing the violation and why the behavior was unacceptable. A public apology may be requested from the violator before any further involvement in the project by violator.

**2. Warning**

Community Impact: A relatively minor violation through a single incident or series of actions.

Consequence: A written warning from project maintainers that includes stated consequences for continued unacceptable behavior. Violator must refrain from interacting with the people involved for a specified period of time as determined by the project maintainers, including, but not limited to, unsolicited interaction with those enforcing the Code of Conduct through channels such as community spaces and social media. Continued violations may lead to a temporary or permanent ban.

**3. Temporary Ban**

Community Impact: A more serious violation of community standards, including sustained unacceptable behavior.

Consequence: A temporary ban from any interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Failure to comply with the temporary ban may lead to a permanent ban.

**4. Permanent Ban**

Community Impact: Demonstrating a consistent pattern of violation of community standards or an egregious violation of community standards, including, but not limited to, sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.

Consequence: A permanent ban from any interaction with the community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1,
available at [http://contributor-covenant.org/version/2/1][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/2/1
19 changes: 19 additions & 0 deletions packages/uix-guest-react/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Contributing

Thanks for choosing to contribute!

The following are a set of guidelines to follow when contributing to this project.

## Code Of Conduct

This project adheres to the Adobe [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to [Grp-opensourceoffice@adobe.com](mailto:Grp-opensourceoffice@adobe.com).

## Contributor License Agreement

All third-party contributions to this project must be accompanied by a signed contributor license agreement. This gives Adobe permission to redistribute your contributions as part of the project. [Sign our CLA](http://opensource.adobe.com/cla.html). You only need to submit an Adobe CLA one time, so if you have submitted one previously, you are good to go!

## Code Reviews

All submissions should come in the form of pull requests and need to be reviewed by project committers. Read [GitHub's pull request documentation](https://help.github.com/articles/about-pull-requests/) for more information on sending pull requests.

Lastly, please follow the [pull request template](PULL_REQUEST_TEMPLATE.md) when submitting a pull request!
5 changes: 5 additions & 0 deletions packages/uix-guest-react/COPYRIGHT
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Copyright 2022 Adobe. All rights reserved.

Adobe holds the copyright for all the files found in this repository.

See the LICENSE file for licensing information.
Loading