Merge pull request #338 from IBM/improve-docs

Improve docs
This commit is contained in:
Eric Liu 2020-10-16 06:19:19 -07:00 committed by GitHub
commit f01eac3385
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 67 additions and 43 deletions

View file

@ -1,16 +0,0 @@
<script>
/**
* @type {"2x1" | "16x9" | "4x3" | "1x1" | "3x4" | "9x16" | "1x2"}
*/
export let ratio = "2x1";
</script>
<div
{...$$restProps}
class:bx--aspect-ratio="{true}"
class="bx--aspect-ratio--{ratio} {$$restProps.class}"
>
<div class:bx--aspect-ratio--object="{true}">
<slot />
</div>
</div>

View file

@ -107,11 +107,12 @@
} }
.preview-viewer.framed { .preview-viewer.framed {
min-height: 22rem; min-height: 20rem;
} }
.framed-header { .framed-header {
display: flex; display: flex;
align-items: center;
} }
iframe { iframe {
@ -121,23 +122,16 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.loader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
</style> </style>
<div class="preview"> <div class="preview">
{#if framed} {#if framed}
<div class="framed-header"> <div class="framed-header">
<div></div> <div style="margin-left: var(--cds-spacing-03)">
{#if framed && !success}
<InlineLoading description="Loading..." />
{/if}
</div>
<Button <Button
style="margin-left: auto;" style="margin-left: auto;"
kind="ghost" kind="ghost"
@ -151,11 +145,6 @@
</div> </div>
{/if} {/if}
<div class="preview-viewer" class:framed> <div class="preview-viewer" class:framed>
{#if framed && !success}
<div class="loader">
<InlineLoading />
</div>
{/if}
{#if framed} {#if framed}
<iframe <iframe
on:load="{() => { on:load="{() => {

View file

@ -5,8 +5,7 @@
export let borderRight = false; export let borderRight = false;
export let borderBottom = false; export let borderBottom = false;
import { ClickableTile, Tile } from "carbon-components-svelte"; import { AspectRatio, ClickableTile, Tile } from "carbon-components-svelte";
import AspectRatio from "./AspectRatio.svelte";
import LogoGithub32 from "carbon-icons-svelte/lib/LogoGithub32"; import LogoGithub32 from "carbon-icons-svelte/lib/LogoGithub32";
import Launch20 from "carbon-icons-svelte/lib/Launch20"; import Launch20 from "carbon-icons-svelte/lib/Launch20";

View file

@ -10,6 +10,7 @@
} from "carbon-components-svelte"; } from "carbon-components-svelte";
import Code16 from "carbon-icons-svelte/lib/Code16"; import Code16 from "carbon-icons-svelte/lib/Code16";
import { page, metatags } from "@sveltech/routify"; import { page, metatags } from "@sveltech/routify";
import { onMount } from "svelte";
import { theme } from "../store"; import { theme } from "../store";
export let component = $page.title; export let component = $page.title;
@ -17,6 +18,14 @@
metatags.title = $page.title; metatags.title = $page.title;
onMount(() => {
const currentTheme = window.location.search.split("?theme=")[1];
if (["white", "g10", "g90", "g100"].includes(currentTheme)) {
theme.set(currentTheme);
}
});
// TODO: [refactor] read from package.json value // TODO: [refactor] read from package.json value
$: sourceCode = `https://github.com/IBM/carbon-components-svelte/tree/master/src/${ $: sourceCode = `https://github.com/IBM/carbon-components-svelte/tree/master/src/${
source || `${$page.title}/${$page.title}.svelte` source || `${$page.title}/${$page.title}.svelte`

View file

@ -112,6 +112,7 @@
main.bx--content { main.bx--content {
background: none; background: none;
min-height: calc(100vh - 3rem - 3rem);
} }
@media (max-width: 1056px) { @media (max-width: 1056px) {
@ -158,6 +159,7 @@
} }
</style> </style>
<!-- routify:options bundle=true -->
<svelte:window bind:innerWidth /> <svelte:window bind:innerWidth />
<Theme persist> <Theme persist>

View file

@ -4,6 +4,7 @@ source: Button/ButtonSet.svelte
<script> <script>
import { Button, ButtonSet } from "carbon-components-svelte"; import { Button, ButtonSet } from "carbon-components-svelte";
import Login16 from "carbon-icons-svelte/lib/Login16";
import Preview from "../../components/Preview.svelte"; import Preview from "../../components/Preview.svelte";
</script> </script>
@ -17,6 +18,6 @@ source: Button/ButtonSet.svelte
### Stacked ### Stacked
<ButtonSet stacked> <ButtonSet stacked>
<Button>Login</Button> <Button icon={Login16}>Log in</Button>
<Button kind="ghost">Sign up</Button> <Button kind="ghost">Sign up</Button>
</ButtonSet> </ButtonSet>

View file

@ -1,7 +1,24 @@
<script> <script>
import { onMount } from "svelte";
onMount(() => {
document.body.classList.add("framed");
return () => {
document.body.classList.remove("framed");
};
});
// TODO: [refactor] parse search parameters more reliably // TODO: [refactor] parse search parameters more reliably
$: currentTheme = window.location.search.split("?theme=")[1]; $: currentTheme = window.location.search.split("?theme=")[1];
$: document.documentElement.setAttribute("theme", currentTheme); $: document.documentElement.setAttribute("theme", currentTheme);
</script> </script>
<style>
:global(body.framed) {
min-height: 100vh;
width: 100%;
padding: var(--cds-spacing-06) var(--cds-spacing-05);
}
</style>
<slot /> <slot />

View file

@ -6,6 +6,9 @@
Column, Column,
CodeSnippet, CodeSnippet,
Link, Link,
Tabs,
Tab,
TabContent,
} from "carbon-components-svelte"; } from "carbon-components-svelte";
import TileCard from "../components/TileCard.svelte"; import TileCard from "../components/TileCard.svelte";
import { metatags } from "@sveltech/routify"; import { metatags } from "@sveltech/routify";
@ -16,6 +19,7 @@
"The Svelte implementation of the Carbon Design System featuring UI components, icons, pictograms, and charts."; "The Svelte implementation of the Carbon Design System featuring UI components, icons, pictograms, and charts.";
const installYarn = "yarn add -D carbon-components-svelte"; const installYarn = "yarn add -D carbon-components-svelte";
const installNpm = "npm i -D carbon-components-svelte";
</script> </script>
<Content> <Content>
@ -51,12 +55,31 @@
</Row> </Row>
<Row noGutter style="margin-bottom: var(--cds-layout-02)"> <Row noGutter style="margin-bottom: var(--cds-layout-02)">
<Column> <Column>
<Tabs>
<Tab label="Yarn" />
<Tab label="npm" />
<div
slot="content"
style="margin-left: calc(-1 * var(--cds-spacing-05)); margin-right: calc(-1 * var(--cds-spacing-05));"
>
<TabContent>
<CodeSnippet <CodeSnippet
code="{installYarn}" code="{installYarn}"
on:click="{() => { on:click="{() => {
copy(installYarn); copy(installYarn);
}}" }}"
/> />
</TabContent>
<TabContent>
<CodeSnippet
code="{installNpm}"
on:click="{() => {
copy(installNpm);
}}"
/>
</TabContent>
</div>
</Tabs>
</Column> </Column>
</Row> </Row>
<Row> <Row>