import * as React from "react"; import { Queue as Entity, IQueueState as Data } from "@daostack/arc.js"; import { Arc as Protocol, ArcConfig as ProtocolConfig, Component, ComponentLogs, ComponentProps, DAO, DAOEntity, } from "../"; import { CreateContextFeed } from "../runtime/ContextFeed"; interface RequiredProps extends ComponentProps { // Address of the Queue Avatar id: string; dao?: string | DAOEntity; } interface InferredProps extends RequiredProps { config: ProtocolConfig; } class InferredQueue extends Component { protected createEntity(): Entity { const { config, id, dao } = this.props; if (!config) { throw Error( "Arc Config Missing: Please provide this field as a prop, or use the inference component." ); } if (!dao) { throw Error( "DAO Missing: Please provide this field as a prop, or use the inference component." ); } const daoEntity: DAOEntity = typeof dao === "string" ? new DAOEntity(config.connection, dao) : dao; return new Entity(config.connection, id, daoEntity); } public static get Entity() { return CreateContextFeed( this.EntityContext.Consumer, this.LogsContext.Consumer, "Queue" ); } public static get Data() { return CreateContextFeed( this.DataContext.Consumer, this.LogsContext.Consumer, "Queue" ); } public static get Logs() { return CreateContextFeed( this.LogsContext.Consumer, this.LogsContext.Consumer, "Queue" ); } public static EntityContext = React.createContext( undefined ); public static DataContext = React.createContext(undefined); public static LogsContext = React.createContext( undefined ); } function useQueue(): [Data | undefined, Entity | undefined] { const data = React.useContext(InferredQueue.DataContext); const entity = React.useContext( InferredQueue.EntityContext ); return [data, entity]; } class Queue extends React.Component { public render() { const { id, children, dao } = this.props; return ( {(config: ProtocolConfig) => { if (dao) { return ( {children} ); } else { return ( {(entity: DAOEntity) => ( {children} )} ); } }} ); } public static get Entity() { return InferredQueue.Entity; } public static get Data() { return InferredQueue.Data; } public static get Logs() { return InferredQueue.Logs; } } export default Queue; export { Queue, InferredQueue, Entity as QueueEntity, Data as QueueData, useQueue, };