-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
383 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { section } from './section'; | ||
|
||
export default { | ||
section, | ||
}; |
21 changes: 21 additions & 0 deletions
21
core/lib/makeswift/components/site-theme/layouts/section.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Number, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const widthGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
medium: Number({ label: 'Medium', suffix: 'px', defaultValue: 768 }), | ||
lg: Number({ label: 'Large', suffix: 'px', defaultValue: 1024 }), | ||
xl: Number({ label: 'XL', suffix: 'px', defaultValue: 1200 }), | ||
'2xl': Number({ label: '2XL', suffix: 'px', defaultValue: 1536 }), | ||
}, | ||
}); | ||
|
||
export const section = Shape({ | ||
label: 'Section', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
maxWidth: widthGroup('Max width'), | ||
}, | ||
}); |
25 changes: 25 additions & 0 deletions
25
core/lib/makeswift/components/site-theme/primitives/accordion.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { Color, Font, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const colorGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
titleText: Color({ label: 'Title text' }), | ||
titleTextHover: Color({ label: 'Title text hover' }), | ||
titleIcon: Color({ label: 'Title icon' }), | ||
titleIconHover: Color({ label: 'Title icon hover' }), | ||
contentText: Color({ label: 'Content text' }), | ||
}, | ||
}); | ||
|
||
export const accordion = Shape({ | ||
label: 'Accordion', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
titleFont: Font({ label: 'Title font', variant: false }), | ||
contentFont: Font({ label: 'Content font', variant: false }), | ||
light: colorGroup('Light'), | ||
dark: colorGroup('Dark'), | ||
}, | ||
}); |
22 changes: 22 additions & 0 deletions
22
core/lib/makeswift/components/site-theme/primitives/banner.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Color, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const closeButton = Shape({ | ||
label: 'Close button', | ||
type: { | ||
icon: Color({ label: 'Icon' }), | ||
iconHover: Color({ label: 'Icon hover' }), | ||
background: Color({ label: 'Background' }), | ||
backgroundHover: Color({ label: 'Background hover' }), | ||
}, | ||
}); | ||
|
||
export const banner = Shape({ | ||
label: 'Banner', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
text: Color({ label: 'Text' }), | ||
focus: Color({ label: 'Focus' }), | ||
close: closeButton, | ||
}, | ||
}); |
26 changes: 26 additions & 0 deletions
26
core/lib/makeswift/components/site-theme/primitives/button.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Color, Font, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const colorGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
backgroundHover: Color({ label: 'Background hover' }), | ||
foreground: Color({ label: 'Foreground' }), | ||
border: Color({ label: 'Border' }), | ||
}, | ||
}); | ||
|
||
export const button = Shape({ | ||
label: 'Button', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
font: Font({ label: 'Font', variant: false }), | ||
primary: colorGroup('Primary'), | ||
secondary: colorGroup('Secondary'), | ||
tertiary: colorGroup('Tertiary'), | ||
ghost: colorGroup('Ghost'), | ||
focus: Color({ label: 'Focus' }), | ||
}, | ||
}); |
23 changes: 23 additions & 0 deletions
23
core/lib/makeswift/components/site-theme/primitives/card.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Color, Number, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const colorGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
text: Color({ label: 'Text' }), | ||
icon: Color({ label: 'Icon' }), | ||
}, | ||
}); | ||
|
||
export const card = Shape({ | ||
label: 'Card', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
borderRadius: Number({ label: 'Border radius', suffix: 'px', defaultValue: 16 }), | ||
focus: Color({ label: 'Focus' }), | ||
light: colorGroup('Light'), | ||
dark: colorGroup('Dark'), | ||
}, | ||
}); |
21 changes: 21 additions & 0 deletions
21
core/lib/makeswift/components/site-theme/primitives/carousel.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Color, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const colorGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
button: Color({ label: 'Button' }), | ||
scrollbar: Color({ label: 'Scrollbar' }), | ||
}, | ||
}); | ||
|
||
export const carousel = Shape({ | ||
label: 'Carousel', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
focus: Color({ label: 'Focus' }), | ||
light: colorGroup('Light'), | ||
dark: colorGroup('Dark'), | ||
}, | ||
}); |
21 changes: 21 additions & 0 deletions
21
core/lib/makeswift/components/site-theme/primitives/index.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { accordion } from './accordion'; | ||
import { banner } from './banner'; | ||
import { button } from './button'; | ||
import { card } from './card'; | ||
import { carousel } from './carousel'; | ||
import { logo } from './logo'; | ||
import { nav } from './nav'; | ||
import { priceLabel } from './price-label'; | ||
import { productCard } from './product-card'; | ||
|
||
export default { | ||
accordion, | ||
banner, | ||
button, | ||
card, | ||
carousel, | ||
logo, | ||
nav, | ||
priceLabel, | ||
productCard, | ||
}; |
11 changes: 11 additions & 0 deletions
11
core/lib/makeswift/components/site-theme/primitives/logo.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { Color, Font, Shape } from '@makeswift/runtime/controls'; | ||
|
||
export const logo = Shape({ | ||
label: 'Logo', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
font: Font({ label: 'Font', variant: false }), | ||
text: Color({ label: 'Text' }), | ||
focus: Color({ label: 'Focus' }), | ||
}, | ||
}); |
117 changes: 117 additions & 0 deletions
117
core/lib/makeswift/components/site-theme/primitives/nav.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
import { Color, Font, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const elementGroup = (label: string, { selectable = false }: { selectable?: boolean } = {}) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
font: Font({ label: 'Font', variant: false }), | ||
text: Color({ label: 'Text' }), | ||
textHover: Color({ label: 'Text hover' }), | ||
...(selectable && { | ||
textSelected: Color({ label: 'Text selected' }), | ||
}), | ||
background: Color({ label: 'Background' }), | ||
backgroundHover: Color({ label: 'Background hover' }), | ||
}, | ||
}); | ||
|
||
const buttonGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
icon: Color({ label: 'Icon' }), | ||
iconHover: Color({ label: 'Icon hover' }), | ||
background: Color({ label: 'Background' }), | ||
backgroundHover: Color({ label: 'Background hover' }), | ||
}, | ||
}); | ||
|
||
const menuGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
border: Color({ label: 'Border' }), | ||
divider: Color({ label: 'Divider' }), | ||
}, | ||
}); | ||
|
||
const mobile = Shape({ | ||
label: 'Mobile', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
divider: Color({ label: 'Divider' }), | ||
buttonIcon: Color({ label: 'Button icon' }), | ||
link: elementGroup('Link'), | ||
subLink: elementGroup('Sub-link'), | ||
}, | ||
}); | ||
|
||
const searchGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
border: Color({ label: 'Border' }), | ||
divider: Color({ label: 'Divider' }), | ||
icon: Color({ label: 'Icon' }), | ||
emptyTitle: Color({ label: 'Empty title' }), | ||
emptySubtitle: Color({ label: 'Empty subtitle' }), | ||
}, | ||
}); | ||
|
||
const searchResultGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
title: Color({ label: 'Title' }), | ||
titleFont: Font({ label: 'Title font', variant: false }), | ||
link: elementGroup('Link'), | ||
}, | ||
}); | ||
|
||
const cartCountGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
text: Color({ label: 'Text' }), | ||
background: Color({ label: 'Background' }), | ||
}, | ||
}); | ||
|
||
const localeGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
link: elementGroup('Link', { selectable: true }), | ||
}, | ||
}); | ||
|
||
export const nav = Shape({ | ||
label: 'Navigation', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
floatingBorder: Color({ label: 'Floating border' }), | ||
focus: Color({ label: 'Focus' }), | ||
link: elementGroup('Link'), | ||
group: elementGroup('Group'), | ||
subLink: elementGroup('Sub-link'), | ||
button: buttonGroup('Button'), | ||
menu: menuGroup('Menu'), | ||
mobile, | ||
search: searchGroup('Search'), | ||
searchResult: searchResultGroup('Search result'), | ||
cartCount: cartCountGroup('Cart count'), | ||
locale: localeGroup('Locale'), | ||
}, | ||
}); |
20 changes: 20 additions & 0 deletions
20
core/lib/makeswift/components/site-theme/primitives/price-label.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Color, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const colorGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
text: Color({ label: 'Text' }), | ||
saleText: Color({ label: 'Sale text' }), | ||
}, | ||
}); | ||
|
||
export const priceLabel = Shape({ | ||
label: 'Price label', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
light: colorGroup('Light'), | ||
dark: colorGroup('Dark'), | ||
}, | ||
}); |
23 changes: 23 additions & 0 deletions
23
core/lib/makeswift/components/site-theme/primitives/product-card.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Color, Number, Shape } from '@makeswift/runtime/controls'; | ||
|
||
const colorGroup = (label: string) => | ||
Shape({ | ||
label, | ||
layout: Shape.Layout.Inline, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
text: Color({ label: 'Title' }), | ||
icon: Color({ label: 'Subtitle' }), | ||
}, | ||
}); | ||
|
||
export const productCard = Shape({ | ||
label: 'Product card', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
borderRadius: Number({ label: 'Border radius', suffix: 'px', defaultValue: 16 }), | ||
focus: Color({ label: 'Focus' }), | ||
light: colorGroup('Light'), | ||
dark: colorGroup('Dark'), | ||
}, | ||
}); |
20 changes: 20 additions & 0 deletions
20
core/lib/makeswift/components/site-theme/sections/footer.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Color, Shape } from '@makeswift/runtime/controls'; | ||
|
||
export const footer = Shape({ | ||
label: 'Footer', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
background: Color({ label: 'Background' }), | ||
borderTop: Color({ label: 'Border top' }), | ||
borderBottom: Color({ label: 'Border bottom' }), | ||
contactTitle: Color({ label: 'Contact title' }), | ||
contactText: Color({ label: 'Contact text' }), | ||
socialIcon: Color({ label: 'Social icon' }), | ||
socialIconHover: Color({ label: 'Social icon hover' }), | ||
sectionTitle: Color({ label: 'Section title' }), | ||
footerLink: Color({ label: 'Footer link' }), | ||
footerLinkHover: Color({ label: 'Footer link hover' }), | ||
footerCopyright: Color({ label: 'Footer copyright' }), | ||
focus: Color({ label: 'Focus' }), | ||
}, | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { footer } from './footer'; | ||
import { slideshow } from './slide-show'; | ||
|
||
export default { | ||
footer, | ||
slideshow, | ||
}; |
21 changes: 21 additions & 0 deletions
21
core/lib/makeswift/components/site-theme/sections/slide-show.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Color, Font, Shape } from '@makeswift/runtime/controls'; | ||
|
||
export const slideshow = Shape({ | ||
label: 'Slideshow', | ||
layout: Shape.Layout.Popover, | ||
type: { | ||
titleFont: Font({ label: 'Title font', variant: false }), | ||
descriptionFont: Font({ label: 'Description font', variant: false }), | ||
numberFont: Font({ label: 'Number font', variant: false }), | ||
title: Color({ label: 'Title' }), | ||
description: Color({ label: 'Description' }), | ||
number: Color({ label: 'Number' }), | ||
background: Color({ label: 'Background' }), | ||
mask: Color({ label: 'Mask' }), | ||
pagination: Color({ label: 'Pagination' }), | ||
playBorder: Color({ label: 'Play border' }), | ||
playBorderHover: Color({ label: 'Play border hover' }), | ||
playText: Color({ label: 'Play text' }), | ||
focus: Color({ label: 'Focus' }), | ||
}, | ||
}); |