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
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/embed/index.tsx
desktop/domains/embed/index.tsx
import { AnimatePresence } from "framer-motion"; import { isEqual } from "lodash"; import { observer } from "mobx-react"; import React, { useEffect, useLayoutEffect, useRef, useState } from "react"; import styled from "styled-components"; import { preloadingPreviewsBridgeChannel, previewEventsBridge, updatePrevi...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/embed/useAttachmentManager.tsx
desktop/domains/embed/useAttachmentManager.tsx
import { autorun } from "mobx"; import { useLayoutEffect } from "react"; import { requestAttachPreview, requestSetPreviewOnTopState, startPreviewAnimation } from "@aca/desktop/bridge/preview"; import { focusMainViewRequest } from "@aca/desktop/bridge/system"; import { desktopRouter } from "@aca/desktop/routes"; import...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/tag/TagLabel.tsx
desktop/domains/tag/TagLabel.tsx
import React, { ReactNode, useRef } from "react"; import styled, { css } from "styled-components"; import { UICountIndicator } from "@aca/desktop/ui/CountIndicator"; import { styledObserver } from "@aca/shared/component"; import { useElementHasOverflow } from "@aca/shared/hooks/useElementHasOverflow"; import { theme }...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/tag/tag.tsx
desktop/domains/tag/tag.tsx
import React, { ReactNode } from "react"; import { createTypeGuard } from "@aca/shared/typeUtils/typeGuard"; import { getUUID } from "@aca/shared/uuid"; import { IconAt, IconBell, IconBookQueue, IconComment, IconCrosshair, IconHashtagCircle, IconLoader, IconSend2, IconShare, IconTarget, IconUserA...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/tag/collectTags.ts
desktop/domains/tag/collectTags.ts
import { sortBy, uniq } from "lodash"; import { NotificationEntity } from "@aca/desktop/clientdb/notification"; import { NotificationOrGroup } from "@aca/desktop/domains/group/groupNotifications"; import { getNotificationMeta } from "@aca/desktop/domains/notification/meta"; import { cachedComputed } from "@acapela/cli...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/tag/NotificationTagsList.tsx
desktop/domains/tag/NotificationTagsList.tsx
import React from "react"; import styled from "styled-components"; import { NotificationTagDisplayer } from "@aca/desktop/domains/tag/NotificationTag"; import { NotificationTag } from "@aca/desktop/domains/tag/tag"; import { styledObserver } from "@aca/shared/component"; interface Props { tags: NotificationTag[]; ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/domains/tag/NotificationTag.tsx
desktop/domains/tag/NotificationTag.tsx
import React, { useRef } from "react"; import { styledObserver } from "@aca/shared/component"; import { useElementHasOverflow } from "@aca/shared/hooks/useElementHasOverflow"; import { NotificationTag, getTagConfig } from "./tag"; import { TagLabel } from "./TagLabel"; interface Props { tag: NotificationTag; for...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/slack.tsx
desktop/actions/slack.tsx
import React from "react"; import { ActionContext } from "@aca/desktop/actions/action/context"; import { integrationClients } from "@aca/desktop/domains/integrations"; import { accountStore } from "@aca/desktop/store/account"; import { assertDefined } from "@aca/shared/assert"; import { IconPlus, IconToggleOff, IconTo...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/group.tsx
desktop/actions/group.tsx
import React from "react"; import { openedNotificationsGroupsStore } from "@aca/desktop/domains/group/openedStore"; import { uiStore } from "@aca/desktop/store/ui"; import { IconArrowCornerCwLt, IconArrowCornerCwRb } from "@aca/ui/icons"; import { createAnalyticsEvent } from "../analytics"; import { defineAction } fr...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/auth.tsx
desktop/actions/auth.tsx
import React from "react"; import { authTokenBridgeValue, googleAuthTokenBridgeValue, loginBridge, loginGoogleBridge, logoutBridge, } from "@aca/desktop/bridge/auth"; import { clearAllDataRequest } from "@aca/desktop/bridge/system"; import { IconLogOut, IconPlus, IconRefreshCw } from "@aca/ui/icons"; import ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/reminders.tsx
desktop/actions/reminders.tsx
import { isSameDay, nextMonday, setDay, setHours, startOfTomorrow } from "date-fns"; import { addHours } from "date-fns/esm"; import React from "react"; import { DateSuggestion, autosuggestDate } from "@aca/shared/dates/autocomplete/suggestions"; import { niceFormatDateTime } from "@aca/shared/dates/format"; import { ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/focus.tsx
desktop/actions/focus.tsx
import React from "react"; import { requestForceReloadPreview, requestPreviewFocus } from "@aca/desktop/bridge/preview"; import { showMainWindowRequest } from "@aca/desktop/bridge/system"; import { animationStore } from "@aca/desktop/domains/embed/animationStore"; import { addToast } from "@aca/desktop/domains/toasts/...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/utils.ts
desktop/actions/utils.ts
import { runInAction } from "mobx"; import { createCleanupObject } from "@aca/shared/cleanup"; import { MaybeCleanup } from "@aca/shared/types"; import { NotificationEntity } from "../clientdb/notification"; import { groupNotifications } from "../domains/group/groupNotifications"; import { ActionContext } from "./act...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/navigation.tsx
desktop/actions/navigation.tsx
import React from "react"; // import { trackingEvent } from "@aca/desktop/analytics"; import { openLinkRequest } from "@aca/desktop/bridge/system"; import { resolvedList, savedNotificationsList } from "@aca/desktop/domains/list/all"; import { desktopRouter } from "@aca/desktop/routes"; import { uiStore } from "@aca/de...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/search.tsx
desktop/actions/search.tsx
import { uniq } from "lodash"; import React from "react"; import { defineAction } from "@aca/desktop/actions/action"; import { ActionContext } from "@aca/desktop/actions/action/context"; import { searchListActionsGroup, searchNotificationsGroup } from "@aca/desktop/actions/groups"; import { goToList } from "@aca/deskt...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/all.ts
desktop/actions/all.ts
import { AnyStarImport, convertStarImportsToList } from "@aca/shared/imports"; import { ActionData, getIsAction } from "./action"; import * as appActions from "./app"; import * as authActions from "./auth"; import * as composeActions from "./compose"; import * as devActions from "./dev"; import * as focusActions from ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/compose.tsx
desktop/actions/compose.tsx
import React from "react"; import { defineAction } from "@aca/desktop/actions/action"; import { trackEvent } from "@aca/desktop/analytics"; import { IntegrationIcon } from "@aca/desktop/domains/integrations/IntegrationIcon"; import { desktopRouter } from "@aca/desktop/routes"; import { areArraysShallowEqual } from "@a...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/notification.tsx
desktop/actions/notification.tsx
import { defer } from "lodash"; import React from "react"; import { focusPageView } from "@aca/desktop/actions/views/focus"; import { createAnalyticsEvent } from "@aca/desktop/analytics"; import { OpenAppUrl, openAppUrl } from "@aca/desktop/bridge/apps"; import { getIntegration } from "@aca/desktop/bridge/apps/shared"...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/remindersUtils.tsx
desktop/actions/remindersUtils.tsx
import { nextMonday, setDay, setHours, startOfTomorrow } from "date-fns"; import React from "react"; import { DateSuggestion, autosuggestDate } from "@aca/shared/dates/autocomplete/suggestions"; import { niceFormatDateTime } from "@aca/shared/dates/format"; import { IconBell } from "@aca/ui/icons"; import { runAction...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/app.tsx
desktop/actions/app.tsx
import React from "react"; import { appUpdateAndRestartRequest, applicationStateBridge, checkForUpdatesRequest, toggleFullscreenRequest, toggleMaximizeRequest, } from "@aca/desktop/bridge/system"; import { openFeedbackWidget } from "@aca/desktop/domains/feedbackWidget"; import { addToast } from "@aca/desktop...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/settings.tsx
desktop/actions/settings.tsx
import React from "react"; import { applicationWideSettingsBridge } from "@aca/desktop/bridge/system"; import { uiSettings } from "@aca/desktop/store/uiSettings"; import { IconChartLine, IconKeyboardHide } from "@aca/ui/icons"; import { addToast } from "../domains/toasts/store"; import { defineAction } from "./action...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/lists.tsx
desktop/actions/lists.tsx
import { defer } from "lodash"; import { runInAction } from "mobx"; import React from "react"; import { getDb } from "@aca/desktop/clientdb"; import { allNotificationsList } from "@aca/desktop/domains/list/all"; import { desktopRouter } from "@aca/desktop/routes"; import { uiStore } from "@aca/desktop/store/ui"; impor...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/dev.tsx
desktop/actions/dev.tsx
import { subDays } from "date-fns"; import React from "react"; import { getAllLogsBridge } from "@aca/desktop/bridge/logger"; import { restartAppRequest, toggleDevtoolsRequest } from "@aca/desktop/bridge/system"; import { devSettingsStore } from "@aca/desktop/domains/dev/store"; import { uiStore } from "@aca/desktop/s...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/groups.ts
desktop/actions/groups.ts
import { getNotificationsGroupMeta } from "../domains/group/group"; import { getNotificationMeta } from "../domains/notification/meta"; import { ActionData } from "./action"; import { defineGroup } from "./action/group"; import { appActionsGroup } from "./app"; import { accountActionsGroup } from "./auth"; import { dev...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/predicates.ts
desktop/actions/action/predicates.ts
import { assert } from "@aca/shared/assert"; import { cachedComputed } from "@acapela/clientdb"; /** * With action objects - we don't know what is action context target (eg. what is hovered, what page is active, etc). * * There might be multiple targets at once (eg. active page is some list of notifications, but we...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/group.ts
desktop/actions/action/group.ts
import { getUUID } from "@aca/shared/uuid"; import { ActionContext, ActionContextCallback, ActionDataThunk, createActionContext } from "./context"; export interface GroupCreateInput { id?: string; name: ActionDataThunk<string>; } export interface ActionGroupData extends GroupCreateInput { id: string; } /** *...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/result.ts
desktop/actions/action/result.ts
import { ActionContext } from "./context"; import { ActionData } from "."; type ChildActionsResult = { searchPlaceholder?: string; getActions: (context: ActionContext) => ActionData[]; }; export type ActionResult = ChildActionsResult;
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/context.ts
desktop/actions/action/context.ts
import assert from "assert"; import { uniq } from "lodash"; import { makeObservable, observable } from "mobx"; import { useMemo } from "react"; import { getNullableDb } from "@aca/desktop/clientdb"; import { getInboxListsById } from "@aca/desktop/domains/list/all"; import { desktopRouter } from "@aca/desktop/routes";...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/index.ts
desktop/actions/action/index.ts
import { ReactNode } from "react"; import { MaybePromise } from "@aca/shared/promises"; import { MaybeCleanup } from "@aca/shared/types"; import { AnalyticsEventInput, resolveAnalyticsEventInput } from "@aca/shared/types/analytics"; import { getUUID } from "@aca/shared/uuid"; import { ShortcutDefinition } from "@aca/u...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/view.ts
desktop/actions/action/view.ts
import { cachedComputed } from "@acapela/clientdb"; import { ActionContext } from "./context"; export interface ActionView<D> { getView(context: ActionContext): D; } export function createActionView<D>(getter: (context: ActionContext) => D): ActionView<D> { // Let's cache view for single context, as it might be ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/action/targets.ts
desktop/actions/action/targets.ts
import { NotificationEntity } from "@aca/desktop/clientdb/notification"; import { getIsNotificationsGroup } from "@aca/desktop/domains/group/group"; import { getIsIntegrationClient } from "@aca/desktop/domains/integrations"; import { IntegrationAccount } from "@aca/desktop/domains/integrations/types"; import { getIsNot...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/views/focus.ts
desktop/actions/views/focus.ts
import { createActionView } from "@aca/desktop/actions/action/view"; import { getPrimaryNotification } from "@aca/desktop/domains/group/group"; import { desktopRouter } from "@aca/desktop/routes"; import { focusSessionStore, stopFocusSession } from "@aca/desktop/store/focus"; import { uiStore } from "@aca/desktop/store...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/views/common.ts
desktop/actions/views/common.ts
import { ActionContext } from "@aca/desktop/actions/action/context"; import { getPrimaryNotification } from "@aca/desktop/domains/group/group"; import { focusPageView } from "./focus"; import { listPageView } from "./list"; export function focusNextItemIfAvailable(context: ActionContext) { const nextNotification = ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/views/list.ts
desktop/actions/views/list.ts
import { createActionView } from "@aca/desktop/actions/action/view"; import { getNotificationParentGroupInList } from "@aca/desktop/domains/group/findGroup"; import { getIsNotificationsGroup } from "@aca/desktop/domains/group/group"; import { NotificationOrGroup } from "@aca/desktop/domains/group/groupNotifications"; i...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/actions/shortcutsHandler/actionsShortcutsHandler.ts
desktop/actions/shortcutsHandler/actionsShortcutsHandler.ts
import { ActionData } from "@aca/desktop/actions/action"; import { createActionContext } from "@aca/desktop/actions/action/context"; import { commandMenuStore } from "@aca/desktop/domains/commandMenu/store"; import { runAction } from "@aca/desktop/domains/runAction"; import { getIsShortcutDefinitionMatchingEvent } from...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/TestView.tsx
desktop/views/TestView.tsx
import React from "react"; export function TestView() { return <>Test 2 View</>; }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/LoginView.tsx
desktop/views/LoginView.tsx
import { motion } from "framer-motion"; import { observer } from "mobx-react"; import React, { useEffect, useState } from "react"; import styled from "styled-components"; import { loginToAcapelaWithGoogle, loginToAcapelaWithSlack } from "@aca/desktop/actions/auth"; import { autoLoginBridge, canAutoLoginBridge } from "...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/BadgeCountManager.tsx
desktop/views/BadgeCountManager.tsx
import { observer } from "mobx-react"; import { setBadgeCountRequest } from "@aca/desktop/bridge/system"; import { useAutorun } from "@aca/shared/sharedState"; import { getBadgeCountToShow } from "../domains/badge/count"; export const BadgeCountManager = observer(() => { useAutorun(() => { const countOrIndicat...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/TrayManager.tsx
desktop/views/TrayManager.tsx
import { observer } from "mobx-react"; import { useAutorun } from "@aca/shared/sharedState"; import { ApplicationTrayList, applicationTrayStateBridge } from "../bridge/tray"; import { getBadgeCountToShow } from "../domains/badge/count"; import { allNotificationsList, getInboxLists, savedNotificationsList } from "../d...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/NotificationView.tsx
desktop/views/NotificationView.tsx
import React from "react"; interface Props { notificationId: string; } export function NotificationView({ notificationId }: Props) { return <>Notification id: {notificationId}</>; }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ComposeView.tsx
desktop/views/ComposeView.tsx
import { observer } from "mobx-react"; import React, { useLayoutEffect } from "react"; import { exitComposeMode } from "@aca/desktop/actions/compose"; import { Embed } from "@aca/desktop/domains/embed"; import { desktopRouter } from "@aca/desktop/routes"; import { SystemTopBar } from "@aca/desktop/ui/systemTopBar"; im...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/LoadingView.tsx
desktop/views/LoadingView.tsx
import { motion } from "framer-motion"; import React, { ReactNode } from "react"; import styled, { keyframes } from "styled-components"; import { Logo } from "@aca/desktop/ui/Logo"; import { useWait } from "@aca/shared/hooks/useWait"; import { BodyPortal } from "@aca/ui/BodyPortal"; import { useUnmountPresence } from ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/HomeView.tsx
desktop/views/HomeView.tsx
import React from "react"; export function HomeView() { return <>Home view</>; }
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/RootView.tsx
desktop/views/RootView.tsx
import { AnimatePresence } from "framer-motion"; import { autorun } from "mobx"; import { observer } from "mobx-react"; import React, { useEffect, useLayoutEffect, useState } from "react"; import { allActions } from "@aca/desktop/actions/all"; import { attachActionsShortcutsHandler } from "@aca/desktop/actions/shortcu...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/Referrals.tsx
desktop/views/SettingsView/Referrals.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { addToast } from "@aca/desktop/domains/toasts/store"; import { accountStore } from "@aca/desktop/store/account"; import { pluralize } from "@aca/shared/...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/Subscription.tsx
desktop/views/SettingsView/Subscription.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { theme } from "@aca/ui/theme"; import { PremiumPlanView } from "../PremiumPlan/PremiumPlanView"; export const SubscriptionView = observer(() => { return ( <UIHolder> <PremiumPlanView /> <...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/Account.tsx
desktop/views/SettingsView/Account.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { logOut, restartAndClearElectronData } from "@aca/desktop/actions/auth"; import { accountStore } from "@aca/desktop/store/account"; import { ActionButton } from "@aca/desktop/ui/ActionButton"; import { the...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/index.tsx
desktop/views/SettingsView/index.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { exitSettings } from "@aca/desktop/actions/navigation"; import { devSettingsStore } from "@aca/desktop/domains/dev/store"; import { desktopRouter } from "@aca/desktop/routes"; import { IntegrationsManager ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/General.tsx
desktop/views/SettingsView/General.tsx
import { observer } from "mobx-react"; import React from "react"; import { toggleShowShortcutsBar } from "@aca/desktop/actions/settings"; import { applicationWideSettingsBridge } from "@aca/desktop/bridge/system"; import { uiSettingsBridge } from "@aca/desktop/bridge/ui"; import { ActionTrigger } from "@aca/desktop/ui...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/Notifications.tsx
desktop/views/SettingsView/Notifications.tsx
import { observer } from "mobx-react"; import React from "react"; import { applicationWideSettingsBridge } from "@aca/desktop/bridge/system"; import { getDb } from "@aca/desktop/clientdb"; import { NotificationListEntity, notificationListEntity } from "@aca/desktop/clientdb/list"; import { SettingRow } from "@aca/desk...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/Dev.tsx
desktop/views/SettingsView/Dev.tsx
import { observer } from "mobx-react"; import React from "react"; import { longAction } from "@aca/desktop/actions/dev"; import { ActionButton } from "@aca/desktop/ui/ActionButton"; import { SettingRow } from "@aca/desktop/ui/settings/SettingRow"; import { SettingsList } from "@aca/desktop/ui/settings/SettingsList"; ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/SettingsView/shared.tsx
desktop/views/SettingsView/shared.tsx
import { observer } from "mobx-react"; import React, { ReactNode } from "react"; import styled from "styled-components"; import { AppLayout } from "@aca/desktop/layout/AppLayout"; import { appViewContainerStyles } from "@aca/desktop/layout/Container"; import { SystemTopBar } from "@aca/desktop/ui/systemTopBar"; import...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/toasts/ToastsOverlayView.tsx
desktop/views/toasts/ToastsOverlayView.tsx
import { AnimatePresence, motion } from "framer-motion"; import { observer } from "mobx-react"; import React, { useEffect, useRef, useState } from "react"; import styled, { createGlobalStyle, css } from "styled-components"; import { focusMainViewRequest, focusSenderViewRequest } from "@aca/desktop/bridge/system"; impo...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/toasts/Toast.tsx
desktop/views/toasts/Toast.tsx
import React, { useRef } from "react"; import styled from "styled-components"; import { ActionData } from "@aca/desktop/actions/action"; import { removeToast } from "@aca/desktop/domains/toasts/store"; import { ActionButton } from "@aca/desktop/ui/ActionButton"; import { emptyFunction } from "@aca/shared/functions"; i...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/toasts/BridgeToast.tsx
desktop/views/toasts/BridgeToast.tsx
import React from "react"; import { ToastBridgeData, toastActionClickedBridgeChannel } from "@aca/desktop/bridge/toasts"; import { removeToast } from "@aca/desktop/domains/toasts/store"; import { SECOND } from "@aca/shared/time"; import { MetaToastProps, Toast } from "./Toast"; interface Props extends MetaToastProps...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/toasts/SlackToasts.tsx
desktop/views/toasts/SlackToasts.tsx
import React from "react"; import { connectSlack } from "@aca/desktop/actions/slack"; import { accountStore } from "@aca/desktop/store/account"; import { MetaToastProps, Toast } from "./Toast"; export function renderSlackToasts(metaProps: MetaToastProps) { const slackInstallations = accountStore.user?.slackInstall...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/GlobalShortcutsManager/index.tsx
desktop/views/GlobalShortcutsManager/index.tsx
import { isEqual } from "lodash"; import { observer, useObserver } from "mobx-react"; import { globalShortcutPressed, registerGlobalShortcutRequest } from "@aca/desktop/bridge/globalShortcuts"; import { applicationWideSettingsBridge, showMainWindowRequest } from "@aca/desktop/bridge/system"; import { uiStore } from "@...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/NotificationDate.tsx
desktop/views/ListView/NotificationDate.tsx
import { isEqual } from "lodash"; import { computed } from "mobx"; import React from "react"; import { NotificationEntity } from "@aca/desktop/clientdb/notification"; import { styledObserver } from "@aca/shared/component"; import { relativeShortFormatDate } from "@aca/shared/dates/format"; import { mobxTicks } from "@...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ReminderLabel.tsx
desktop/views/ListView/ReminderLabel.tsx
import React from "react"; import styled from "styled-components"; import { NotificationEntity } from "@aca/desktop/clientdb/notification"; import { NotificationsGroup } from "@aca/desktop/domains/group/group"; import { NotificationOrGroup } from "@aca/desktop/domains/group/groupNotifications"; import { styledObserver...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/NotificationRow.tsx
desktop/views/ListView/NotificationRow.tsx
import { action } from "mobx"; import React, { useEffect, useRef } from "react"; import styled, { css } from "styled-components"; import { addReminderToNotification, cancelSaveNotification, copyNotificationLink, markNotificationRead, markNotificationUnread, openFocusMode, openNotificationInApp, removeN...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ListsTabBar.tsx
desktop/views/ListView/ListsTabBar.tsx
import React from "react"; import styled from "styled-components"; import { createNotificationList } from "@aca/desktop/actions/lists"; import { NotificationsList } from "@aca/desktop/domains/list/defineList"; import { ActionButton } from "@aca/desktop/ui/ActionButton"; import { ListTabLabel } from "./ListTabLabel"; ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/NotificationsRows.tsx
desktop/views/ListView/NotificationsRows.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { NotificationEntity } from "@aca/desktop/clientdb/notification"; import { NotificationRow } from "./NotificationRow"; interface Props { notifications: NotificationEntity[]; } export const Notification...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/NotificationsGroupRow.tsx
desktop/views/ListView/NotificationsGroupRow.tsx
import { motion } from "framer-motion"; import { uniq } from "lodash"; import { action, computed } from "mobx"; import React, { useEffect, useRef } from "react"; import styled, { css } from "styled-components"; import { toggleNotificationsGroup } from "@aca/desktop/actions/group"; import { addReminderToNotification,...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ListViewFooter.tsx
desktop/views/ListView/ListViewFooter.tsx
import React from "react"; import { toggleNotificationsGroup } from "@aca/desktop/actions/group"; import { focusNextNotificationInList, focusPreviousNotificationInList } from "@aca/desktop/actions/lists"; import { addReminderToNotification, openFocusMode, openNotificationInApp, removeNotificationReminder, re...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ListTabLabel.tsx
desktop/views/ListView/ListTabLabel.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { useRef } from "react"; import styled from "styled-components"; import { composeActionsFromImports, listsActions } from "@aca/desktop/actions/all"; import { goToList } from "@aca/desktop/actions/lists"; import { useA...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/NotificationTags.tsx
desktop/views/ListView/NotificationTags.tsx
import React from "react"; import styled from "styled-components"; import { NotificationTagDisplayer } from "@aca/desktop/domains/tag/NotificationTag"; import { NotificationTag } from "@aca/desktop/domains/tag/tag"; import { styledObserver } from "@aca/shared/component"; import { NotificationRowZIndex } from "./share...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ListViewPreloader.tsx
desktop/views/ListView/ListViewPreloader.tsx
import { observer } from "mobx-react"; import React from "react"; import { getCollapsedGroupedElementsInList } from "@aca/desktop/actions/views/list"; import { PreviewLoadingPriority } from "@aca/desktop/domains/embed"; import { PreloadEmbed } from "@aca/desktop/domains/embed/PreloadEmbed"; import { getIsNotifications...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/RowQuickActions.tsx
desktop/views/ListView/RowQuickActions.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { addReminderToNotification, cancelSaveNotification, removeNotificationReminder, resolveNotification, saveNotification, unresolveNotification, } from "@aca/desktop/actions/notification"; import ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/TagFilters.tsx
desktop/views/ListView/TagFilters.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { useEffect } from "react"; import styled from "styled-components"; import { groupNotifications } from "@aca/desktop/domains/group/groupNotifications"; import { NotificationsList } from "@aca/desktop/domains/list/defi...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ZeroNotifications.tsx
desktop/views/ListView/ZeroNotifications.tsx
import React from "react"; import styled from "styled-components"; import { NotificationsList } from "@aca/desktop/domains/list/defineList"; import { FadePresenceAnimator } from "@aca/ui/animations"; import { theme } from "@aca/ui/theme"; interface Props { list: NotificationsList; } export function ZeroNotificatio...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ListView.tsx
desktop/views/ListView/ListView.tsx
import { observer } from "mobx-react"; import React, { useEffect, useState } from "react"; import styled from "styled-components"; import { deleteNotificationList, renameNotificationList } from "@aca/desktop/actions/lists"; import { getIsNotificationsGroup, getNotificationsGroupMeta } from "@aca/desktop/domains/group/...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/shared.tsx
desktop/views/ListView/shared.tsx
import { Transition, motion } from "framer-motion"; import { debounce } from "lodash"; import { action } from "mobx"; import React, { RefObject, useEffect } from "react"; import styled, { css } from "styled-components"; import { NotificationAppIcon } from "@aca/desktop/domains/notification/NotificationAppIcon"; import...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/ZenMode/index.tsx
desktop/views/ListView/ZenMode/index.tsx
import React from "react"; import styled from "styled-components"; // eslint-disable-next-line @typescript-eslint/ban-ts-comment //@ts-ignore import zenImage from "@aca/desktop/assets/zen/today.jpg"; import { PresenceAnimator } from "@aca/ui/PresenceAnimator"; import { theme } from "@aca/ui/theme"; export function Li...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/Topbar/collectFrom.tsx
desktop/views/ListView/Topbar/collectFrom.tsx
import { sortBy, uniq } from "lodash"; import { NotificationEntity } from "@aca/desktop/clientdb/notification"; import { cachedComputed } from "@acapela/clientdb"; export const collectFromInfo = cachedComputed(function collectFromInfo(items: NotificationEntity[]) { const fromMap = new Map<string, NotificationEntity...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/Topbar/BatchResolver.tsx
desktop/views/ListView/Topbar/BatchResolver.tsx
import { runInAction } from "mobx"; import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { resolveAllNotifications, resolveAllReadNotifications } from "@aca/desktop/actions/lists"; import { resolveNotification } from "@aca/desktop/actions/notification"; impor...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/Topbar/ListEmojiPicker.tsx
desktop/views/ListView/Topbar/ListEmojiPicker.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { useRef, useState } from "react"; import styled, { css } from "styled-components"; import { useContextMenu } from "@aca/desktop/domains/contextMenu/useContextMenu"; import { NotificationsList } from "@aca/desktop/dom...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/Topbar/NotificationsSettings.tsx
desktop/views/ListView/Topbar/NotificationsSettings.tsx
import { isNil } from "lodash"; import React from "react"; import styled from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { NotificationListEntity } from "@aca/desktop/clientdb/list"; import { TopBarButton } from "@aca/desktop/ui/systemTopBar/TopBarButton"; import { styledObserver ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/Topbar/index.tsx
desktop/views/ListView/Topbar/index.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { deleteNotificationList, renameNotificationList } from "@aca/desktop/actions/lists"; import { resolvedList } from "@aca/desktop/domains/list/all"; import { NotificationsList } from "@aca/desktop/domains/li...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/ListView/Topbar/BatchResolverButton.tsx
desktop/views/ListView/Topbar/BatchResolverButton.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { useEffect, useRef, useState } from "react"; import styled from "styled-components"; import { NotificationsList } from "@aca/desktop/domains/list/defineList"; import { TopBarButton } from "@aca/desktop/ui/systemTopBa...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PremiumPlan/Price.tsx
desktop/views/PremiumPlan/Price.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { theme } from "@aca/ui/theme"; interface Props { price: string; period: string; description: string; originalPrice?: string; } export const Price = observer(({ price, period, description, origina...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PremiumPlan/ui.tsx
desktop/views/PremiumPlan/ui.tsx
import styled, { css } from "styled-components"; import { theme } from "@aca/ui/theme"; const badgeStyles = { primary: css` ${theme.colors.primary.asBgWithReadableText} `, secondary: css` ${theme.colors.primary.asColor}; ${theme.colors.text.asBg}; `, meta: css` ${theme.colors.layout.backgrou...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PremiumPlan/PremiumPlanView.tsx
desktop/views/PremiumPlan/PremiumPlanView.tsx
import { AnimatePresence } from "framer-motion"; import React, { useEffect, useState } from "react"; import styled from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { getCurrentPlan, switchSubscription } from "@aca/desktop/domains/plan/api"; import { SubscriptionPlan } from "@aca/gq...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PremiumPlan/AwaitingCheckoutCover.tsx
desktop/views/PremiumPlan/AwaitingCheckoutCover.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { sendFeedback } from "@aca/desktop/actions/app"; import { ActionButton } from "@aca/desktop/ui/ActionButton"; import { FadePresenceAnimator } from "@aca/ui/animations"; import { BodyPortal } from "@aca/ui/...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PremiumPlan/PlanUpgadeCelebrationView.tsx
desktop/views/PremiumPlan/PlanUpgadeCelebrationView.tsx
import confetti from "canvas-confetti"; import { AnimatePresence } from "framer-motion"; import React, { useEffect, useState } from "react"; import styled, { css } from "styled-components"; import { getCurrentPlan } from "@aca/desktop/domains/plan/api"; import { uiStore } from "@aca/desktop/store/ui"; import { styledO...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PremiumPlan/Plans.tsx
desktop/views/PremiumPlan/Plans.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { SubscriptionPlan } from "@aca/gql"; import { Button } from "@aca/ui/buttons/Button"; import { IconCheck } from "@aca/ui/icons"; import { theme } from "...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/FocusedActionView/index.tsx
desktop/views/FocusedActionView/index.tsx
import React, { ReactNode } from "react"; import styled, { css } from "styled-components"; import { Logo } from "@aca/desktop/ui/Logo"; import { SYSTEM_BAR_HEIGHT } from "@aca/desktop/ui/systemTopBar/ui"; import { PopPresenceAnimator } from "@aca/ui/animations"; import { phone } from "@aca/ui/responsive"; import { the...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PeekView/ListLabel.tsx
desktop/views/PeekView/ListLabel.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { goToList } from "@aca/desktop/actions/lists"; import { NotificationsList } from "@aca/desktop/domains/list/defineList"; import { ActionTrigger } from "@aca/desktop/ui/ActionTrigger"; import { theme } from...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PeekView/index.tsx
desktop/views/PeekView/index.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { showMainWindowRequest } from "@aca/desktop/bridge/system"; import { NewBrowserWindow } from "@aca/desktop/domains/window/NewBrowserWindow"; import { desktopRouter } from "@aca/desktop/routes"; import { ui...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/PeekView/Lists.tsx
desktop/views/PeekView/Lists.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { getInboxLists } from "@aca/desktop/domains/list/all"; import { ListLabel } from "./ListLabel"; export const Lists = observer(function Lists() { const lists = getInboxLists(); return ( <UIHolder>...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/UpdateInfo/ProgressBar.tsx
desktop/views/UpdateInfo/ProgressBar.tsx
import { motion } from "framer-motion"; import React from "react"; import styled from "styled-components"; import { theme } from "@aca/ui/theme"; interface Props { progressPercent: number; } export function ProgressBar({ progressPercent }: Props) { return ( <UIProgressBar> <UIProgressBarIndicator ...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/UpdateInfo/UpdateInfo.tsx
desktop/views/UpdateInfo/UpdateInfo.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { installUpdate } from "@aca/desktop/actions/app"; import { applicationStateBridge } from "@aca/desktop/bridge/system"; import { ActionButton } from "@aca/de...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/ConnectToolsView.tsx
desktop/views/OnboardingView/ConnectToolsView.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { toggleMaximizeRequest } from "@aca/desktop/bridge/system"; import { desktopRouter } from "@aca/desktop/routes"; import { systemBarPlaceholder } from "@aca/...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/OnboardingView.tsx
desktop/views/OnboardingView/OnboardingView.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { useEffect, useState } from "react"; import styled, { keyframes } from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { toggleMaximizeRequest } from "@aca/desktop/bridge/system"; imp...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/stage.ts
desktop/views/OnboardingView/stage.ts
import { FunctionComponent, ReactNode } from "react"; import { StageCompose } from "./StageCompose"; import { StageConnectTools } from "./StageConnectTools"; import { StageDarkMode } from "./StageDarkMode"; import { StageDesktopNotifications } from "./StageDesktopNotifications"; import { StageFocusMode } from "./Stage...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/StageReadyToGo.tsx
desktop/views/OnboardingView/StageReadyToGo.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { openLinkRequest } from "@aca/desktop/bridge/system"; import { openCommandMenu } from "@aca/desktop/domains/commandMenu/CommandMenuManager"; import { Bu...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/StageFocusMode.tsx
desktop/views/OnboardingView/StageFocusMode.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { useRef } from "react"; import styled from "styled-components"; import { pickReminderTime } from "@aca/desktop/actions/remindersUtils"; import { asanaIntegrationClient } from "@aca/desktop/domains/integrations/asana"...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/OnboardingFinishedAnimationManager.tsx
desktop/views/OnboardingView/OnboardingFinishedAnimationManager.tsx
import { memoize } from "lodash"; import React from "react"; import { createGlobalStyle, css, keyframes } from "styled-components"; import { setColorOpacity } from "@aca/shared/colors"; import { wait } from "@aca/shared/time"; import { theme } from "@aca/ui/theme"; import { readThemeValueWithProps } from "@aca/ui/them...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/StageDarkMode.tsx
desktop/views/OnboardingView/StageDarkMode.tsx
import { observer } from "mobx-react"; import React from "react"; import styled from "styled-components"; import { trackEvent } from "@aca/desktop/analytics"; import { AppTheme, uiSettingsBridge } from "@aca/desktop/bridge/ui"; import { Button } from "@aca/ui/buttons/Button"; import { useShortcuts } from "@aca/ui/keyb...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/StageCompose.tsx
desktop/views/OnboardingView/StageCompose.tsx
import { AnimatePresence } from "framer-motion"; import { observer } from "mobx-react"; import React, { ReactNode } from "react"; import styled from "styled-components"; import { defineAction } from "@aca/desktop/actions/action"; import { IntegrationIcon } from "@aca/desktop/domains/integrations/IntegrationIcon"; impo...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false
acapela/monorepo
https://github.com/acapela/monorepo/blob/27047fac40321891abe42d04d40a14ca329f87ee/desktop/views/OnboardingView/StageNotificationsList.tsx
desktop/views/OnboardingView/StageNotificationsList.tsx
import { observer } from "mobx-react"; import React, { useEffect, useState } from "react"; import styled from "styled-components"; import { pickReminderTime } from "@aca/desktop/actions/remindersUtils"; import { figmaIntegrationClient } from "@aca/desktop/domains/integrations/figma"; import { notionIntegrationClient }...
typescript
MIT
27047fac40321891abe42d04d40a14ca329f87ee
2026-01-05T05:01:22.776906Z
false