Description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { ObjectItemProps, ObjectMember } from 'sanity'; | |
import { Card, Stack } from '@sanity/ui'; | |
import { ModularBlocksProvider } from '../context/ModularBlocksProvider'; | |
import type { | |
ContentMember, | |
fieldToChildFieldsMap, | |
SanityObjectItemPropsChildren, | |
} from '../types'; | |
import type { ComponentType } from 'react'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an expert in TypeScript, React, NextJS, HTML, CSS, and website development. | |
Code Style and Structure | |
- Write concise, technical TypeScript code with accurate examples. | |
- Use functional and declarative programming patterns; avoid classes. | |
- Prefer iteration and modularisation over code duplication. | |
- Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasError). | |
- Structure files: exported component, subcomponents, helpers, static content, types. | |
- Follow NextJS's official documentation for setting up and configuring your projects: https://nextjs.org/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable import-x/no-named-as-default-member */ | |
import comments from '@eslint-community/eslint-plugin-eslint-comments/configs' | |
import react from '@eslint-react/eslint-plugin' | |
import { FlatCompat } from '@eslint/eslintrc' | |
import js from '@eslint/js' | |
import prettierConfig from 'eslint-config-prettier' | |
import eslintPluginImportX from 'eslint-plugin-import-x' | |
import regexPlugin from 'eslint-plugin-regexp' | |
import security from 'eslint-plugin-security' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.textInput { | |
border: 1.5px solid #e1e8fa; | |
border-radius: 3px; | |
color: #6f7fb3; | |
font-size: 12px; | |
font-weight: bold; | |
padding: 1px 3px; | |
@media (prefers-color-scheme: dark) { | |
border-color: #575f73; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { SanityDocument } from 'sanity'; | |
import type { ListItemBuilder } from 'sanity/desk'; | |
import { AddIcon, WarningFilledIcon } from '@sanity/icons'; | |
import { map } from 'rxjs/operators'; | |
import { defineRegionStructure } from '~/utils/defineStructure'; | |
import { regionalDocumentTypeList } from '~/utils/regionalDocumentListItem'; | |
import { options } from '~/config/options'; | |
import { TEMPLATES } from '~/constants/templates'; | |
import { INTENT } from '~/constants/sanity/intent'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: 34241 | |
name: entelechy-api | |
environments: | |
development: | |
domain: dev-api.entelechy.academy | |
memory: 1024 | |
cli-memory: 512 | |
gateway-version: 2 | |
runtime: docker | |
database: entelechy-dev01_laravel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Constants; | |
use ReflectionClass; | |
abstract class AbstractConstant | |
{ | |
/** | |
* Get a constant value by name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<component | |
:is="transition ? 'transition' : 'div'" | |
:name="transition" | |
@afterEnter="resetStyles" | |
@beforeEnter="onBeforeEnter" | |
@beforeLeave="onBeforeLeave" | |
@leaveCancelled="resetStyles" | |
> | |
<div v-show="isLoading || boilerplate" :class="classes" v-bind="attributes"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP_ENV=ci | |
APP_KEY= | |
APP_DEBUG=true | |
APP_URL=https://localhost | |
LOG_CHANNEL=stack | |
DB_CONNECTION=mysql | |
DB_HOST=127.0.0.1 | |
DB_PORT=33306 |
NewerOlder