components#CenteredCard JavaScript Examples
The following examples show how to use
components#CenteredCard.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.jsx From apps with GNU Affero General Public License v3.0 | 5 votes |
Dashboard = ({
route: {
handler: {
props: { tab, action, secondaryAction, id },
},
},
}) => {
const settings = useSettings();
const mediator = useMediator();
let content, modal;
if (mediator.keyPairs === null) {
modal = <UploadKeyPairsModal />;
}
if (mediator.keyPairs !== null) {
switch (tab) {
case 'settings':
content = (
<Settings
action={action}
secondaryAction={secondaryAction}
id={id}
/>
);
break;
case 'providers':
content = <Providers action={action} id={secondaryAction} />;
break;
case 'stats':
content = (
<Stats
action={action}
secondaryAction={secondaryAction}
id={id}
/>
);
break;
}
}
let invalidKeyMessage;
// to do: implement validation flow
/*
if (mediator.validKeyPairs !== undefined && validKeyPairs.valid === false) {
invalidKeyMessage = (
<Message type="danger">
<T t={t} k="invalidKey" />
</Message>
);
}
*/
return (
<CenteredCard size="fullwidth" tight>
<CardHeader>
<Tabs>
<Tab
active={tab === 'providers'}
href="/mediator/providers"
>
<T t={t} k="providers.title" />
</Tab>
<Tab active={tab === 'stats'} href="/mediator/stats">
<T t={t} k="stats.title" />
</Tab>
<Tab active={tab === 'settings'} href="/mediator/settings">
<T t={t} k="settings.title" />
</Tab>
</Tabs>
</CardHeader>
{modal}
{content}
</CenteredCard>
);
}
Example #2
Source File: index.jsx From apps with GNU Affero General Public License v3.0 | 5 votes |
Dashboard = ({
route: {
handler: {
props: { tab, action, secondaryAction, id },
},
},
route,
}) => {
const provider = useProvider();
useInterval(async () => {
const response = await provider.checkData().get();
}, 10000);
let content;
switch (tab) {
case 'settings':
content = <Settings key="settings" action={action} />;
break;
case 'schedule':
content = (
<Schedule
action={action}
route={route}
secondaryAction={secondaryAction}
id={id}
key="schedule"
/>
);
break;
}
let invalidKeyMessage;
if (provider.verifiedData === null) {
invalidKeyMessage = (
<Message waiting type="warning">
<T t={t} k="invalid-key" />
</Message>
);
}
return (
<CenteredCard size="fullwidth" tight>
<CardHeader>
<Tabs>
<Tab active={tab === 'schedule'} href="/provider/schedule">
<T t={t} k="schedule.title" />
</Tab>
<Tab active={tab === 'settings'} href="/provider/settings">
<T t={t} k="settings.title" />
</Tab>
<Tab
last
icon={<Icon icon="sign-out-alt" />}
active={tab === 'log-out'}
href="/provider/settings/logout"
>
<T t={t} k="log-out" />
</Tab>
</Tabs>
</CardHeader>
{invalidKeyMessage}
{content}
</CenteredCard>
);
}
Example #3
Source File: wizard.jsx From apps with GNU Affero General Public License v3.0 | 4 votes |
Wizard = ({ route, router, page, status }) => {
const pageRef = useRef(null);
const checkPage = () => {
return true;
};
const index = pages.indexOf(page);
const canShow = (_page) => {
return pages.indexOf(_page) <= index;
};
if (!page) page = pages[0];
// we always
useEffect(() => {
if (pageRef.current !== undefined)
pageRef.current.scrollIntoView({
behavior: 'smooth',
block: 'start',
});
});
const renderLoaded = () => {
const { app } = route.handler;
const components = new Map([]);
let i = 1;
if (!checkPage()) return <div />;
for (const p of pages)
components.set(
p,
<a key={`${p}Link`} ref={p === page ? pageRef : undefined}>
<CardNav
key={p}
disabled={!canShow(p)}
onClick={() => {
if (canShow(p))
router.navigateToUrl(`/provider/setup/${p}`);
}}
active={page === p}
>
{i++}. <T t={t} k={`wizard.steps.${p}`} />
</CardNav>
</a>
);
const populate = (p, component) => {
const existingComponent = components.get(p);
const newComponent = (
<React.Fragment key={p}>
{existingComponent}
{component}
</React.Fragment>
);
components.set(p, newComponent);
};
switch (page) {
case 'hi':
populate('hi', <Hi key="hiNotice" />);
break;
case 'enter-provider-data':
populate(
'enter-provider-data',
<ProviderData key="enterProviderData" />
);
break;
case 'store-secrets':
populate(
'store-secrets',
<StoreSecrets key="storeSecrets" status={status} />
);
break;
case 'verify':
populate('verify', <Verify key="verify" />);
break;
}
return (
<React.Fragment>{Array.from(components.values())}</React.Fragment>
);
};
return (
<CenteredCard className="kip-cm-wizard">
<WithLoader resources={[]} renderLoaded={renderLoaded} />
</CenteredCard>
);
}
Example #4
Source File: wizard.jsx From apps with GNU Affero General Public License v3.0 | 4 votes |
Wizard = ({ route, router, page, privacyManager }) => {
const pageRef = useRef(null);
const checkPage = () => {
return true;
};
const index = pages.indexOf(page);
const canShow = (_page) => {
return pages.indexOf(_page) <= index;
};
if (!page) page = pages[0];
// we always
useEffect(() => {
if (pageRef.current !== undefined)
pageRef.current.scrollIntoView({
behavior: 'smooth',
block: 'start',
});
});
const renderLoaded = () => {
const { app } = route.handler;
const components = new Map([]);
let i = 1;
if (!checkPage()) return <div />;
for (const p of pages)
components.set(
p,
<a key={`${p}Link`} ref={p === page ? pageRef : undefined}>
<CardNav
key={p}
disabled={!canShow(p)}
onClick={() => {
if (canShow(p))
router.navigateToUrl(`/user/setup/${p}`);
}}
active={page === p}
>
{i++}. <T t={t} k={`wizard.steps.${p}`} />
</CardNav>
</a>
);
const populate = (p, component) => {
const existingComponent = components.get(p);
const newComponent = (
<React.Fragment key={p}>
{existingComponent}
{component}
</React.Fragment>
);
components.set(p, newComponent);
};
switch (page) {
case 'hi':
populate('hi', <Hi key="hiNotice" />);
break;
case 'enter-contact-data':
populate(
'enter-contact-data',
<ContactData key="enterContactData" />
);
break;
case 'store-secrets':
populate('store-secrets', <StoreSecrets key="storeSecrets" />);
break;
case 'verify':
populate('verify', <Verify key="verify" />);
break;
case 'finalize':
populate('finalize', <Finalize key="finalize" />);
break;
}
return (
<React.Fragment>{Array.from(components.values())}</React.Fragment>
);
};
return (
<CenteredCard className="kip-cm-wizard">
<WithLoader resources={[]} renderLoaded={renderLoaded} />
</CenteredCard>
);
}