repo stringlengths 7 64 | file_url stringlengths 81 338 | file_path stringlengths 5 257 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:25:31 2026-01-05 01:50:38 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/server-sitemap.xml/index.tsx | apps/web-kyve/src/pages/server-sitemap.xml/index.tsx | import ServerSitemap, { getServerSideProps } from 'ui/pages/server-sitemap.xml';
// This function is called by Next.js before rendering the page. It returns
// a list of URLs that should be included in the sitemap.
export { getServerSideProps };
// Next.js calls this function to render the page.
export default Server... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/validators/[address].tsx | apps/web-kyve/src/pages/validators/[address].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import ValidatorDetails from '@/screens/validator_details';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const ValidatorDetailsPage: NextPage = () => <ValidatorDetails />;
export const getStaticPaths = ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/validators/index.tsx | apps/web-kyve/src/pages/validators/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Validators from '@/screens/validators';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const ValidatorsPage: NextPage = () => <Validators />;
export const getStaticProps = withGetStaticProps(
nex... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/proposals/index.tsx | apps/web-kyve/src/pages/proposals/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Tokens from '@/screens/proposals';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const TokensPage: NextPage = () => <Tokens />;
export const getStaticProps = withGetStaticProps(nextI18NextConfig, ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/proposals/[id].tsx | apps/web-kyve/src/pages/proposals/[id].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import ProposalDetails from '@/screens/proposal_details';
import nextI18NextConfig from '../../../next-i18next.config';
const TokenDetailsPage: NextPage = () => <ProposalDetails />;
export const getStaticPaths = () => (... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/blocks/index.tsx | apps/web-kyve/src/pages/blocks/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Blocks from '@/screens/blocks';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const BlocksPage: NextPage = () => <Blocks />;
export const getStaticProps = withGetStaticProps(
nextI18NextConfig,
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/blocks/[height].tsx | apps/web-kyve/src/pages/blocks/[height].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import BlockDetails from '@/screens/block_details';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const BlockDetailsPage: NextPage = () => <BlockDetails />;
export const getStaticPaths = () => ({ paths: ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/accounts/[address].tsx | apps/web-kyve/src/pages/accounts/[address].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import AccountDetails from '@/screens/account_details';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const AccountDetailsPage: NextPage = () => <AccountDetails />;
export const getStaticPaths = () => ({... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/transactions/index.tsx | apps/web-kyve/src/pages/transactions/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Transactions from '@/screens/transactions';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const TransactionsPage: NextPage = () => <Transactions />;
export const getStaticProps = withGetStaticProp... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/pages/transactions/[tx].tsx | apps/web-kyve/src/pages/transactions/[tx].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import TransactionDetails from '@/screens/transaction_details';
import nextI18NextConfig from '../../../next-i18next.config';
const TransactionDetailsPage: NextPage = () => <TransactionDetails />;
export const getStatic... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/screens/proposal_details/types.ts | apps/web-kyve/src/screens/proposal_details/types.ts | export interface OverviewType {
title: string;
id: number;
proposer: string;
description: string;
status: string;
submitTime: string;
depositEndTime: string;
votingStartTime: string | null;
votingEndTime: string | null;
content: {
recipient: string;
amount: Array<{
amount: string;
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/screens/proposal_details/hooks.ts | apps/web-kyve/src/screens/proposal_details/hooks.ts | import { useRouter } from 'next/router';
import * as R from 'ramda';
import { useCallback, useState } from 'react';
import type { ProposalState } from '@/screens/proposal_details/types';
import { ProposalDetailsQuery, useProposalDetailsQuery } from '@/graphql/types/general_types';
// =========================
// overv... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/screens/proposal_details/components/overview/index.tsx | apps/web-kyve/src/screens/proposal_details/components/overview/index.tsx | import Divider from '@mui/material/Divider';
import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import numeral from 'numeral';
import * as R from 'ramda';
import { FC, useCallback } from 'react';
import { useRecoilValue } from 'recoil';
import Box from '@/compo... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-kyve/src/screens/proposals/hooks.ts | apps/web-kyve/src/screens/proposals/hooks.ts | import { ProposalsQuery, useProposalsQuery } from '@/graphql/types/general_types';
import type { ProposalsState, ProposalType } from '@/screens/proposals/types';
import { getProposalType } from '@/screens/proposal_details/utils';
import * as R from 'ramda';
import { useCallback, useState } from 'react';
import xss from... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/jest.setup.ts | apps/web-desmos/jest.setup.ts | import mockApollo from '@/tests/mocks/mockApollo';
import mockChainConfig from '@/tests/mocks/mockChainConfig';
import mockDayJs from '@/tests/mocks/mockDayJs';
import mockDynamicComponent from '@/tests/mocks/mockDynamicComponent';
import mockI18Next from '@/tests/mocks/mockI18Next';
import mockProfiles from '@/tests/m... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/jest.config.ts | apps/web-desmos/jest.config.ts | import configFromPreset from 'jest-presets/jest/node/jest-preset';
import nextJest from 'next/jest';
import { pathsToModuleNameMapper } from 'ts-jest';
import tsconfig from './tsconfig.json';
/* Creating a jest configuration for nextjs. */
const createJestConfig = nextJest({
dir: './',
})(configFromPreset);
const e... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/next-env.d.ts | apps/web-desmos/next-env.d.ts | /// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
| typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/graphql/types/general_types.ts | apps/web-desmos/src/graphql/types/general_types.ts | import { gql } from '@apollo/client';
import * as Apollo from '@apollo/client';
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | true |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/graphql/general/account_details_documents.ts | apps/web-desmos/src/graphql/general/account_details_documents.ts | export const AccountCommissionDocument = /* GraphQL */ `
query AccountCommission($validatorAddress: String!) {
commission: action_validator_commission_amount(address: $validatorAddress) {
coins
}
}
`;
export const AccountWithdrawalAddressDocument = /* GraphQL */ `
query AccountWithdrawalAddress($ad... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/graphql/general/validator_details_documents.ts | apps/web-desmos/src/graphql/general/validator_details_documents.ts | export const ValidatorDelegationsDocument = /* GraphQL */ `
query ValidatorDelegations(
$validatorAddress: String!
$offset: Int = 0
$limit: Int = 10
$pagination: Boolean! = true
) {
delegations: action_validator_delegations(
address: $validatorAddress
limit: $limit
offset: $off... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/_error.tsx | apps/web-desmos/src/pages/_error.tsx | import type { NextPage } from 'next';
import ErrorPage, { getInitialProps } from 'ui/pages/_error';
const MyError: NextPage = () => <ErrorPage />;
MyError.getInitialProps = getInitialProps;
export default MyError;
| typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/_app.tsx | apps/web-desmos/src/pages/_app.tsx | import MyApp from '@/screens/app';
import { appWithTranslation } from 'next-i18next';
import 'react-toastify/dist/ReactToastify.css';
import 'shared-utils/assets/styles/global.css';
import nextI18NextConfig from '../../next-i18next.config';
export default appWithTranslation(MyApp, nextI18NextConfig);
| typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/404.tsx | apps/web-desmos/src/pages/404.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import NotFound from '@/screens/404';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../next-i18next.config';
const Custom404: NextPage = () => <NotFound />;
export const getStaticProps = withGetStaticProps(nextI18NextConfig);
expo... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/index.tsx | apps/web-desmos/src/pages/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import Home from '@/screens/home';
import nextI18NextConfig from '../../next-i18next.config';
const HomePage: NextPage = () => <Home />;
export const getStaticProps = withGetStaticProps(
nextI18NextConfig,
'home',
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/[dtag].tsx | apps/web-desmos/src/pages/[dtag].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import ProfileDetails from '@/screens/profile_details';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../next-i18next.config';
const ProfileDetailsPage: NextPage = () => <ProfileDetails />;
export const getStaticPaths = () => ({ pa... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/_document.tsx | apps/web-desmos/src/pages/_document.tsx | import Document from 'next/document';
import DocumentComponent, { getInitialProps, DocumentComponentProps } from 'ui/pages/_document';
class MyDocument extends Document<DocumentComponentProps> {
render() {
return <DocumentComponent emotionStyleTags={this.props.emotionStyleTags} />;
}
}
MyDocument.getInitialPr... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/params/index.tsx | apps/web-desmos/src/pages/params/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Params from '@/screens/params';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const ParamsPage: NextPage = () => <Params />;
export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'pa... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/server-sitemap.xml/index.tsx | apps/web-desmos/src/pages/server-sitemap.xml/index.tsx | import ServerSitemap, { getServerSideProps } from 'ui/pages/server-sitemap.xml';
// This function is called by Next.js before rendering the page. It returns
// a list of URLs that should be included in the sitemap.
export { getServerSideProps };
// Next.js calls this function to render the page.
export default Server... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/validators/[address].tsx | apps/web-desmos/src/pages/validators/[address].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import ValidatorDetails from '@/screens/validator_details';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const ValidatorDetailsPage: NextPage = () => <ValidatorDetails />;
export const getStaticPaths = ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/validators/index.tsx | apps/web-desmos/src/pages/validators/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import Validators from '@/screens/validators';
import type { NextPage } from 'next';
import nextI18NextConfig from '../../../next-i18next.config';
const ValidatorsPage: NextPage = () => <Validators />;
export const getStaticProps = withGetStaticProps(
nex... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/proposals/index.tsx | apps/web-desmos/src/pages/proposals/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import Tokens from '@/screens/proposals';
import nextI18NextConfig from '../../../next-i18next.config';
const TokensPage: NextPage = () => <Tokens />;
export const getStaticProps = withGetStaticProps(nextI18NextConfig, ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/proposals/[id].tsx | apps/web-desmos/src/pages/proposals/[id].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import ProposalDetails from '@/screens/proposal_details';
import nextI18NextConfig from '../../../next-i18next.config';
const TokenDetailsPage: NextPage = () => <ProposalDetails />;
export const getStaticPaths = () => (... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/blocks/index.tsx | apps/web-desmos/src/pages/blocks/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import Blocks from '@/screens/blocks';
import nextI18NextConfig from '../../../next-i18next.config';
const BlocksPage: NextPage = () => <Blocks />;
export const getStaticProps = withGetStaticProps(
nextI18NextConfig,
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/blocks/[height].tsx | apps/web-desmos/src/pages/blocks/[height].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import BlockDetails from '@/screens/block_details';
import nextI18NextConfig from '../../../next-i18next.config';
const BlockDetailsPage: NextPage = () => <BlockDetails />;
export const getStaticPaths = () => ({ paths: ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/accounts/[address].tsx | apps/web-desmos/src/pages/accounts/[address].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import AccountDetails from '@/screens/account_details';
import nextI18NextConfig from '../../../next-i18next.config';
const AccountDetailsPage: NextPage = () => <AccountDetails />;
export const getStaticPaths = () => ({... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/transactions/index.tsx | apps/web-desmos/src/pages/transactions/index.tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import Transactions from '@/screens/transactions';
import nextI18NextConfig from '../../../next-i18next.config';
const TransactionsPage: NextPage = () => <Transactions />;
export const getStaticProps = withGetStaticProp... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/pages/transactions/[tx].tsx | apps/web-desmos/src/pages/transactions/[tx].tsx | import withGetStaticProps from '@/pages/withGetStaticProps';
import type { NextPage } from 'next';
import TransactionDetails from '@/screens/transaction_details';
import nextI18NextConfig from '../../../next-i18next.config';
const TransactionDetailsPage: NextPage = () => <TransactionDetails />;
export const getStatic... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/utils.tsx | apps/web-desmos/src/components/msg/utils.tsx | import * as COMPONENTS from '@/components/msg';
import Tag from '@/components/tag';
import * as MODELS from '@/models';
import type { Log } from '@/models/msg/types';
import isKeyOf from '@/utils/isKeyOf';
import type { TFunction } from '@/hooks/useAppTranslation';
import * as R from 'ramda';
import { FC } from 'react'... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/index.ts | apps/web-desmos/src/components/msg/index.ts | // =========================
// msg components
// =========================
export { default as LinkApplication } from '@/components/msg/profiles/link_application';
export { default as LinkChainAccount } from '@/components/msg/profiles/link_chain_account';
export { default as UnlinkApplication } from '@/components/msg/... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/mint/index.test.tsx | apps/web-desmos/src/components/msg/tokenfactory/mint/index.test.tsx | import renderer from 'react-test-renderer';
import Mint from '@/components/msg/tokenfactory/mint';
import MsgMint from '@/models/msg/tokenfactory/msg_mint';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest.mock('@/components/name... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/mint/index.tsx | apps/web-desmos/src/components/msg/tokenfactory/mint/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgMint from '@/models/msg/tokenfactory/msg_mint';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
import { formatNumber, formatToken } fr... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/create_denom/index.test.tsx | apps/web-desmos/src/components/msg/tokenfactory/create_denom/index.test.tsx | import renderer from 'react-test-renderer';
import CreateDenom from '@/components/msg/tokenfactory/create_denom';
import MsgCreateDenom from '@/models/msg/tokenfactory/msg_create_denom';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =================================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/create_denom/index.tsx | apps/web-desmos/src/components/msg/tokenfactory/create_denom/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgCreateDenom from '@/models/msg/tokenfactory/msg_create_denom';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const CreateDenom: FC<{... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/burn/index.test.tsx | apps/web-desmos/src/components/msg/tokenfactory/burn/index.test.tsx | import renderer from 'react-test-renderer';
import Burn from '@/components/msg/tokenfactory/burn';
import MsgBurn from '@/models/msg/tokenfactory/msg_burn';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest.mock('@/components/name... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/burn/index.tsx | apps/web-desmos/src/components/msg/tokenfactory/burn/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgBurn from '@/models/msg/tokenfactory/msg_burn';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
import { formatNumber, formatToken } fr... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/update_params/index.test.tsx | apps/web-desmos/src/components/msg/tokenfactory/update_params/index.test.tsx | import renderer from 'react-test-renderer';
import UpdateParams from '@/components/msg/tokenfactory/update_params';
import MsgUpdateParams from '@/models/msg/tokenfactory/msg_update_params';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =============================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/update_params/index.tsx | apps/web-desmos/src/components/msg/tokenfactory/update_params/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgUpdateParams from '@/models/msg/tokenfactory/msg_update_params';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const UpdateParams: F... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/set_denom_metadata/index.test.tsx | apps/web-desmos/src/components/msg/tokenfactory/set_denom_metadata/index.test.tsx | import renderer from 'react-test-renderer';
import SetDenomMetadata from '@/components/msg/tokenfactory/set_denom_metadata';
import MsgSetDenomMetadata from '@/models/msg/tokenfactory/msg_set_denom_metadata';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ===========... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/tokenfactory/set_denom_metadata/index.tsx | apps/web-desmos/src/components/msg/tokenfactory/set_denom_metadata/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgSetDenomMetadata from '@/models/msg/tokenfactory/msg_set_denom_metadata';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const SetDen... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/edit_subspace/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/edit_subspace/index.test.tsx | import renderer from 'react-test-renderer';
import EditSubspace from '@/components/msg/subspaces/edit_subspace';
import MsgEditSubspace from '@/models/msg/subspaces/msg_edit_subspace';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/edit_subspace/index.tsx | apps/web-desmos/src/components/msg/subspaces/edit_subspace/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgEditSubspace from '@/models/msg/subspaces/msg_edit_subspace';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const EditSubspace: FC<{... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/remove_user_from_user_group/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/remove_user_from_user_group/index.test.tsx | import renderer from 'react-test-renderer';
import RemoveUserFromUserGroup from '@/components/msg/subspaces/remove_user_from_user_group';
import MsgRemoveUserFromUserGroup from '@/models/msg/subspaces/msg_remove_user_from_user_group';
import MockTheme from '@/tests/mocks/MockTheme';
// ================================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/remove_user_from_user_group/index.tsx | apps/web-desmos/src/components/msg/subspaces/remove_user_from_user_group/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgRemoveUserFromUserGroup from '@/models/msg/subspaces/msg_remove_user_from_user_group';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/move_section/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/move_section/index.test.tsx | import renderer from 'react-test-renderer';
import MoveSection from '@/components/msg/subspaces/move_section';
import MsgMoveSection from '@/models/msg/subspaces/msg_move_section';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/move_section/index.tsx | apps/web-desmos/src/components/msg/subspaces/move_section/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgMoveSection from '@/models/msg/subspaces/msg_move_section';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const MoveSection: FC<{ me... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/set_user_permissions/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/set_user_permissions/index.test.tsx | import renderer from 'react-test-renderer';
import SetUserPermissions from '@/components/msg/subspaces/set_user_permissions';
import MsgSetUserPermissions from '@/models/msg/subspaces/msg_set_user_permissions';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =========... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/set_user_permissions/index.tsx | apps/web-desmos/src/components/msg/subspaces/set_user_permissions/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgSetUserPermissions from '@/models/msg/subspaces/msg_set_user_permissions';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const SetUs... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/set_user_group_permissions/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/set_user_group_permissions/index.test.tsx | import renderer from 'react-test-renderer';
import SetUserGroupPermissions from '@/components/msg/subspaces/set_user_group_permissions';
import MsgSetUserGroupPermissions from '@/models/msg/subspaces/msg_set_user_group_permissions';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/set_user_group_permissions/index.tsx | apps/web-desmos/src/components/msg/subspaces/set_user_group_permissions/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgSetUserGroupPermissions from '@/models/msg/subspaces/msg_set_user_group_permissions';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/edit_user_group/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/edit_user_group/index.test.tsx | import renderer from 'react-test-renderer';
import EditUserGroup from '@/components/msg/subspaces/edit_user_group';
import MsgEditUserGroup from '@/models/msg/subspaces/msg_edit_user_group';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =============================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/edit_user_group/index.tsx | apps/web-desmos/src/components/msg/subspaces/edit_user_group/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgEditUserGroup from '@/models/msg/subspaces/msg_edit_user_group';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const EditUserGroup: ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/create_subspace/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/create_subspace/index.test.tsx | import renderer from 'react-test-renderer';
import CreateSubspace from '@/components/msg/subspaces/create_subspace';
import MsgCreateSubspace from '@/models/msg/subspaces/msg_create_subspace';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ===========================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/create_subspace/index.tsx | apps/web-desmos/src/components/msg/subspaces/create_subspace/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgCreateSubspace from '@/models/msg/subspaces/msg_create_subspace';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const CreateSubspace... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/add_user_to_user_group/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/add_user_to_user_group/index.test.tsx | import renderer from 'react-test-renderer';
import AddUserToUserGroup from '@/components/msg/subspaces/add_user_to_user_group';
import MsgAddUserToUserGroup from '@/models/msg/subspaces/msg_add_user_to_user_group';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =====... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/add_user_to_user_group/index.tsx | apps/web-desmos/src/components/msg/subspaces/add_user_to_user_group/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgAddUserToUserGroup from '@/models/msg/subspaces/msg_add_user_to_user_group';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const Add... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/move_user_group/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/move_user_group/index.test.tsx | import renderer from 'react-test-renderer';
import MoveUserGroup from '@/components/msg/subspaces/move_user_group';
import MsgMoveUserGroup from '@/models/msg/subspaces/msg_move_user_group';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =============================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/move_user_group/index.tsx | apps/web-desmos/src/components/msg/subspaces/move_user_group/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgMoveUserGroup from '@/models/msg/subspaces/msg_move_user_group';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const MoveUserGroup: ... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/delete_user_group/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/delete_user_group/index.test.tsx | import renderer from 'react-test-renderer';
import DeleteUserGroup from '@/components/msg/subspaces/delete_user_group';
import MsgDeleteUserGroup from '@/models/msg/subspaces/msg_delete_user_group';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =====================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/delete_user_group/index.tsx | apps/web-desmos/src/components/msg/subspaces/delete_user_group/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgDeleteUserGroup from '@/models/msg/subspaces/msg_delete_user_group';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const DeleteUserG... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/create_section/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/create_section/index.test.tsx | import renderer from 'react-test-renderer';
import CreateSection from '@/components/msg/subspaces/create_section';
import MsgCreateSection from '@/models/msg/subspaces/msg_create_section';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ===============================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/create_section/index.tsx | apps/web-desmos/src/components/msg/subspaces/create_section/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgCreateSection from '@/models/msg/subspaces/msg_create_section';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const CreateSection: F... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/delete_section/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/delete_section/index.test.tsx | import renderer from 'react-test-renderer';
import DeleteSection from '@/components/msg/subspaces/delete_section';
import MsgDeleteSection from '@/models/msg/subspaces/msg_delete_section';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ===============================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/delete_section/index.tsx | apps/web-desmos/src/components/msg/subspaces/delete_section/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgDeleteSection from '@/models/msg/subspaces/msg_delete_section';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const DeleteSection: F... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/edit_section/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/edit_section/index.test.tsx | import renderer from 'react-test-renderer';
import EditSection from '@/components/msg/subspaces/edit_section';
import MsgEditSection from '@/models/msg/subspaces/msg_edit_section';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/edit_section/index.tsx | apps/web-desmos/src/components/msg/subspaces/edit_section/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgEditSection from '@/models/msg/subspaces/msg_edit_section';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const EditSection: FC<{ me... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/create_user_group/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/create_user_group/index.test.tsx | import renderer from 'react-test-renderer';
import CreateUserGroup from '@/components/msg/subspaces/create_user_group';
import MsgCreateUserGroup from '@/models/msg/subspaces/msg_create_user_group';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =====================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/create_user_group/index.tsx | apps/web-desmos/src/components/msg/subspaces/create_user_group/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgCreateUserGroup from '@/models/msg/subspaces/msg_create_user_group';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const CreateUserG... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/delete_subspace/index.test.tsx | apps/web-desmos/src/components/msg/subspaces/delete_subspace/index.test.tsx | import renderer from 'react-test-renderer';
import DeleteSubspace from '@/components/msg/subspaces/delete_subspace';
import MsgDeleteSubspace from '@/models/msg/subspaces/msg_delete_subspace';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ===========================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/subspaces/delete_subspace/index.tsx | apps/web-desmos/src/components/msg/subspaces/delete_subspace/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgDeleteSubspace from '@/models/msg/subspaces/msg_delete_subspace';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const DeleteSubspace... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/set_reactions_params/index.test.tsx | apps/web-desmos/src/components/msg/reactions/set_reactions_params/index.test.tsx | import renderer from 'react-test-renderer';
import SetReactionsParams from '@/components/msg/reactions/set_reactions_params';
import MsgSetReactionsParams from '@/models/msg/reactions/msg_set_reactions_params';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =========... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/set_reactions_params/index.tsx | apps/web-desmos/src/components/msg/reactions/set_reactions_params/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgSetReactionsParams from '@/models/msg/reactions/msg_set_reactions_params';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const SetRe... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/add_registered_reaction/index.test.tsx | apps/web-desmos/src/components/msg/reactions/add_registered_reaction/index.test.tsx | import renderer from 'react-test-renderer';
import AddRegisteredReaction from '@/components/msg/reactions/add_registered_reaction';
import MsgAddRegisteredReaction from '@/models/msg/reactions/msg_add_registered_reaction';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/add_registered_reaction/index.tsx | apps/web-desmos/src/components/msg/reactions/add_registered_reaction/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgAddRegisteredReaction from '@/models/msg/reactions/msg_add_registered_reaction';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/edit_registered_reaction/index.test.tsx | apps/web-desmos/src/components/msg/reactions/edit_registered_reaction/index.test.tsx | import renderer from 'react-test-renderer';
import EditRegisteredReaction from '@/components/msg/reactions/edit_registered_reaction';
import MsgEditRegisteredReaction from '@/models/msg/reactions/msg_edit_registered_reaction';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mo... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/edit_registered_reaction/index.tsx | apps/web-desmos/src/components/msg/reactions/edit_registered_reaction/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgEditRegisteredReaction from '@/models/msg/reactions/msg_edit_registered_reaction';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
con... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/remove_reaction/index.test.tsx | apps/web-desmos/src/components/msg/reactions/remove_reaction/index.test.tsx | import renderer from 'react-test-renderer';
import RemoveReaction from '@/components/msg/reactions/remove_reaction';
import MsgRemoveReaction from '@/models/msg/reactions/msg_remove_reaction';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ===========================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/remove_reaction/index.tsx | apps/web-desmos/src/components/msg/reactions/remove_reaction/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgRemoveReaction from '@/models/msg/reactions/msg_remove_reaction';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const RemoveReaction... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/add_reaction/index.test.tsx | apps/web-desmos/src/components/msg/reactions/add_reaction/index.test.tsx | import renderer from 'react-test-renderer';
import AddReaction from '@/components/msg/reactions/add_reaction';
import MsgAddReaction from '@/models/msg/reactions/msg_add_reaction';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/add_reaction/index.tsx | apps/web-desmos/src/components/msg/reactions/add_reaction/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgAddReaction from '@/models/msg/reactions/msg_add_reaction';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const AddReaction: FC<{ me... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/remove_registered_reaction/index.test.tsx | apps/web-desmos/src/components/msg/reactions/remove_registered_reaction/index.test.tsx | import renderer from 'react-test-renderer';
import RemoveRegisteredReaction from '@/components/msg/reactions/remove_registered_reaction';
import MsgRemoveRegisteredReaction from '@/models/msg/reactions/msg_remove_registered_reaction';
import MockTheme from '@/tests/mocks/MockTheme';
// ================================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/reactions/remove_registered_reaction/index.tsx | apps/web-desmos/src/components/msg/reactions/remove_registered_reaction/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgRemoveRegisteredReaction from '@/models/msg/reactions/msg_remove_registered_reaction';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/cancel_post_owner_transfer_request/index.test.tsx | apps/web-desmos/src/components/msg/posts/cancel_post_owner_transfer_request/index.test.tsx | import renderer from 'react-test-renderer';
import CancelPostOwnerTransferRequest from '@/components/msg/posts/cancel_post_owner_transfer_request';
import MsgCancelPostOwnerTransferRequest from '@/models/msg/posts/msg_cancel_post_owner_transfer_request';
import MockTheme from '@/tests/mocks/MockTheme';
// ============... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/cancel_post_owner_transfer_request/index.tsx | apps/web-desmos/src/components/msg/posts/cancel_post_owner_transfer_request/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgCancelPostOwnerTransferRequest from '@/models/msg/posts/msg_cancel_post_owner_transfer_request';
import { useProfileRecoil } from '@/recoil/profile... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/move_post/index.test.tsx | apps/web-desmos/src/components/msg/posts/move_post/index.test.tsx | import renderer from 'react-test-renderer';
import MovePost from '@/components/msg/posts/move_post';
import MsgMovePost from '@/models/msg/posts/msg_move_post';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest.mock('@/components/... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/move_post/index.tsx | apps/web-desmos/src/components/msg/posts/move_post/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgMovePost from '@/models/msg/posts/msg_move_post';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const MovePost: FC<{ message: MsgMov... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/add_post_attachment/index.test.tsx | apps/web-desmos/src/components/msg/posts/add_post_attachment/index.test.tsx | import renderer from 'react-test-renderer';
import AddPostAttachment from '@/components/msg/posts/add_post_attachment';
import MsgAddPostAttachment from '@/models/msg/posts/msg_add_post_attachment';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =====================... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/add_post_attachment/index.tsx | apps/web-desmos/src/components/msg/posts/add_post_attachment/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgAddPostAttachment from '@/models/msg/posts/msg_add_post_attachment';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const AddPostAtta... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/edit_post/index.test.tsx | apps/web-desmos/src/components/msg/posts/edit_post/index.test.tsx | import renderer from 'react-test-renderer';
import EditPost from '@/components/msg/posts/edit_post';
import MsgEditPost from '@/models/msg/posts/msg_edit_post';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// ==================================
jest.mock('@/components/... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/edit_post/index.tsx | apps/web-desmos/src/components/msg/posts/edit_post/index.tsx | import Typography from '@mui/material/Typography';
import AppTrans from '@/components/AppTrans';
import { FC } from 'react';
import Name from '@/components/name';
import MsgEditPost from '@/models/msg/posts/msg_edit_post';
import { useProfileRecoil } from '@/recoil/profiles/hooks';
const EditPost: FC<{ message: MsgEdi... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
forbole/big-dipper-2.0-cosmos | https://github.com/forbole/big-dipper-2.0-cosmos/blob/de058820eacedc2e9cbe82ad7fec8239faedeeff/apps/web-desmos/src/components/msg/posts/remove_post_attachment/index.test.tsx | apps/web-desmos/src/components/msg/posts/remove_post_attachment/index.test.tsx | import renderer from 'react-test-renderer';
import RemovePostAttachment from '@/components/msg/posts/remove_post_attachment';
import MsgRemovePostAttachment from '@/models/msg/posts/msg_remove_post_attachment';
import MockTheme from '@/tests/mocks/MockTheme';
// ==================================
// mocks
// =========... | typescript | Apache-2.0 | de058820eacedc2e9cbe82ad7fec8239faedeeff | 2026-01-05T04:51:16.060495Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.