mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 20:31:34 +02:00
* Merge all .prettierignore files into top-level config * Merge all .prettierrc files into top-level config * Replace service-specific glob patterns in package.json format scripts with `prettier .` * Add template files with Jinja2, Go template, envsubst, and Handlebars syntax to .prettierignore * Ignore GitHub templates * Ignore PUG templates to format them separately with `format:pug` * Encourage double quotes for YAML, YML files * Move prettier for PUG source format script to the root * Move prettier for styles source format script to the root * Remove prettier for jenkins files from web * Remove prettier source format script from all services * Make .prettierrc more readable * Update format scripts by file type * Organise `.prettierignore` * Add `--cache` flag to prettier scripts for faster runs * Format all files with prettier * Format all or format services * Remove `format`/`format:fix` scripts from services since now it runs from root `package.json` * Avoid conlficts with yamllint configuration * Remove `--cache` flag from prettier scripts * Update all service Makefiles to use root-level prettier configuration * Update all Jenkinsfile to use root-level prettier configuration * Ignore auto-generated files by build_scripts * Update package-lock.json * Update root Makefile format targets * Update SP Jenkinsfile format target * Update E2E Makefile format script * Udpate `format_js` to work in both local and CI env * Add docker-mailtrap to .prettierignore docker-mailtrap is a third-party git-ignored directory used for testing * Added Docker env detection to prevent nested Docker spawning * Ignore handlebars templates * Add cryptographic files and test output to `.prettierignore` * Add terraform modules to `.gitignore` * Remove prettier-plugin-groovy * Use npx directly instead of Docker for local formatting for faster formatting * Auto-generate Makefiles * Revert "Remove prettier-plugin-groovy" This reverts commit 194a33589a2e1e4d2225d10c67e9f025e4222025. * Mount monorepo root in RUN_LINT_FORMAT for prettier config access * Prettier ignores all `node_modules` by default regardless of location * Show only changed files in format output * Ignore LICENSE files * Enable prettier on rendered build_scripts outputs * Ignoring all the template folders by prettier * Remove the public/minjs entry since it does not exist * Remove all non-existent paths * Sync `.prettierignore` with ignored files by `.gitignore` and `.dockerignore` files * Revert "Auto-generate Makefiles" This reverts commit c0233e490de1bc95fe437219d65e0b66e0331ec9. * Revert "Use npx directly instead of Docker for local formatting for faster formatting" This reverts commit 1d2b2cf1a6c6974c76885852a90dd55e84167e41. * Ignore dashboard JSON files * Ignore files generated by bin/update_build_scripts * Remove unsupported file types from `.prettierignore` * Ignore test fixture generated files * Ignore README file types by prettier * Ignore generate snapshots by prettier * Allow to format generated bin/update_build_scripts by prettier * Ensure build script outputs prettier-compatible tsconfig.json * Fix build script output to match prettier formatting - Fix Jinja2 whitespace in docker-compose templates - Change YAML quotes from single to double * Don't read cryptographic files by prettier * Ignore google verification files by prettier * Revert npx prettier formatting * Ignore domain verification files * Show only changed files in format output * Make `.github` prettier * Allow all files to be formatted in jobs by prettier * Allow server-ce/server-pro files to be formatted by prettier * Ignore more folders in clsi, filestory, git-bridge by prettier * Update build script with `RUN_LINTING_CI_MONOREPO` * Ignore docker-mailtrap and downloads in server-ce by prettier * Restore prettier configs and prettierignore for V1 since it has its own prettier (an older version) * Source format GitOrigin-RevId: 637adc3cc422d1f20c86d6ebc8ec514d60758287
257 lines
5.6 KiB
Plaintext
257 lines
5.6 KiB
Plaintext
import {
|
|
Meta,
|
|
ColorItem,
|
|
ColorPalette,
|
|
Title,
|
|
Typeset,
|
|
} from '@storybook/blocks'
|
|
import colors from '../../stylesheets/foundations/tokens/colors.json'
|
|
import typography from '../../stylesheets/foundations/tokens/typography.json'
|
|
import borderRadius from '../../stylesheets/foundations/tokens/borderRadius.json'
|
|
import spacing from '../../stylesheets/foundations/tokens/spacing.json'
|
|
|
|
<Meta title="Storybook Guideline / Foundations" />
|
|
|
|
# Foundations
|
|
|
|
Foundations in UX design are the basic rules and core elements, like colors, fonts, and spacing, that ensure consistency across the design.
|
|
|
|
<p>
|
|
These palettes are generated from our token files. The tokens were exported
|
|
from Figma and split into separate files to categorise:{' '}
|
|
<a
|
|
href="https://github.com/overleaf/internal/tree/main/services/web/frontend/stylesheets/bootstrap-5/foundations/tokens"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Token files on GitHub
|
|
</a>
|
|
</p>
|
|
|
|
**Table of Contents**
|
|
|
|
- [Primitive colors](#primitive-colors)
|
|
- [Background colors](#background-colors)
|
|
- [Content colors](#content-colors)
|
|
- [Border colors](#border-colors)
|
|
- [Link colors](#link-colors)
|
|
- [Special colors](#special-colors)
|
|
- [Font weight](#font-weight)
|
|
- [Font size](#font-size)
|
|
- [Border radius](#border-radius)
|
|
- [Spacing](#spacing)
|
|
|
|
# Colors
|
|
|
|
<br />
|
|
|
|
## Primitive colors
|
|
|
|
<ColorPalette>
|
|
{Object.entries(colors.PrimitiveColor).map(([name, color]) => (
|
|
<ColorItem key={name} title={name} colors={[color.$value]} />
|
|
))}
|
|
</ColorPalette>
|
|
|
|
## Background colors
|
|
|
|
Colors used for page and component backgrounds.
|
|
|
|
<ColorPalette>
|
|
{Object.entries(colors)
|
|
.filter(([name]) => name.startsWith('bg-'))
|
|
.map(([name, colors]) => (
|
|
<ColorItem
|
|
key={name}
|
|
title={name}
|
|
subtitle={colors.$primitive}
|
|
colors={[colors.$value]}
|
|
/>
|
|
))}
|
|
</ColorPalette>
|
|
|
|
## Content colors
|
|
|
|
Colors used for text and icons.
|
|
|
|
<ColorPalette>
|
|
{Object.entries(colors)
|
|
.filter(([name]) => name.startsWith('content-'))
|
|
.map(([name, colors]) => (
|
|
<ColorItem
|
|
key={name}
|
|
title={name}
|
|
subtitle={colors.$primitive}
|
|
colors={[colors.$value]}
|
|
/>
|
|
))}
|
|
</ColorPalette>
|
|
|
|
## Border colors
|
|
|
|
Colors used for borders and dividers.
|
|
|
|
<ColorPalette>
|
|
{Object.entries(colors)
|
|
.filter(([name]) => name.startsWith('border-'))
|
|
.map(([name, colors]) => (
|
|
<ColorItem
|
|
key={name}
|
|
title={name}
|
|
subtitle={colors.$primitive}
|
|
colors={[colors.$value]}
|
|
/>
|
|
))}
|
|
</ColorPalette>
|
|
|
|
## Link colors
|
|
|
|
Colors used for hyperlink states.
|
|
|
|
<ColorPalette>
|
|
{Object.entries(colors)
|
|
.filter(([name]) => name.startsWith('link-'))
|
|
.map(([name, colors]) => (
|
|
<ColorItem
|
|
key={name}
|
|
title={name}
|
|
subtitle={colors.$primitive}
|
|
colors={[colors.$value]}
|
|
/>
|
|
))}
|
|
</ColorPalette>
|
|
|
|
## Special colors
|
|
|
|
Colors used for specific UI elements like color pickers.
|
|
|
|
<ColorPalette>
|
|
{Object.entries(colors)
|
|
.filter(([name]) => name.startsWith('special-'))
|
|
.map(([name, colors]) => (
|
|
<ColorItem
|
|
key={name}
|
|
title={name}
|
|
subtitle={colors.$primitive}
|
|
colors={[colors.$value]}
|
|
/>
|
|
))}
|
|
</ColorPalette>
|
|
|
|
# Typography
|
|
|
|
<br />
|
|
|
|
## Font weight
|
|
|
|
<br />
|
|
|
|
{Object.entries(typography.Fontweight).map(([name, typography]) => (
|
|
|
|
<div key={name}>
|
|
<strong>{name}</strong>
|
|
<Typeset
|
|
fontSizes={[14]}
|
|
fontWeight={typography.$value}
|
|
sampleText="The quick brown fox jumps over the lazy dog"
|
|
/>
|
|
</div>
|
|
))}
|
|
|
|
## Font size
|
|
|
|
<br />
|
|
|
|
{Object.entries(typography['Fontsize']).map(([name, typography]) => {
|
|
const mixins = typography.$mixin ? [].concat(typography.$mixin) : [];
|
|
|
|
return (
|
|
|
|
<div key={name} style={{ marginBottom: '2rem' }}>
|
|
<strong>
|
|
{name}
|
|
{mixins.map(mixin => (
|
|
<span key={mixin}> / @mixin {mixin}</span>
|
|
))}
|
|
</strong>
|
|
<Typeset
|
|
fontSizes={[`${typography.$value}px`]}
|
|
fontWeight={500}
|
|
sampleText="The quick brown fox jumps over the lazy dog"
|
|
/>
|
|
</div>
|
|
);
|
|
})}
|
|
|
|
## Border radius
|
|
|
|
<br />
|
|
|
|
<table style={{ width: '100%' }}>
|
|
<thead>
|
|
<tr>
|
|
<th>Variable name</th>
|
|
<th>Value</th>
|
|
<th style={{ textAlign: 'center' }}>Example</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{Object.entries(borderRadius['BorderRadius']).map(
|
|
([name, borderRadius]) => (
|
|
<tr key={name}>
|
|
<td>
|
|
<strong>{name}</strong>
|
|
</td>
|
|
<td style={{ textAlign: 'center' }}>{borderRadius.$value}px</td>
|
|
<td style={{ textAlign: 'center', padding: '0.5rem' }}>
|
|
<div
|
|
style={{
|
|
width: '80px',
|
|
height: '80px',
|
|
borderRadius: `${borderRadius.$value}px`,
|
|
backgroundColor: '#098842',
|
|
display: 'inline-block',
|
|
}}
|
|
/>
|
|
</td>
|
|
</tr>
|
|
)
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
|
|
## Spacing
|
|
|
|
<br />
|
|
|
|
<table style={{ width: '100%' }}>
|
|
<thead>
|
|
<tr>
|
|
<th>Variable Name</th>
|
|
<th>Value</th>
|
|
<th style={{ textAlign: 'left', paddingLeft: '1rem' }}>Example</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{Object.entries(spacing.Spacing)
|
|
.filter(([, spacing]) => spacing.$value > 0)
|
|
.map(([name, spacing]) => (
|
|
<tr key={name}>
|
|
<td>
|
|
<strong>{name}</strong>
|
|
</td>
|
|
<td style={{ textAlign: 'center' }}>{spacing.$value}px</td>
|
|
<td style={{ padding: '0.5rem 1rem', verticalAlign: 'middle' }}>
|
|
<div
|
|
style={{
|
|
height: `${spacing.$value}px`,
|
|
width: '100%',
|
|
backgroundColor: '#098842',
|
|
}}
|
|
/>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|