-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
22 changed files
with
186 additions
and
4 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,8 @@ | ||
import About from './About'; | ||
|
||
export default { | ||
title: 'IDE/About', | ||
component: About | ||
}; | ||
|
||
export const Default = {}; |
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,13 @@ | ||
import AssetPreview from './AssetPreview'; | ||
|
||
export default { | ||
title: 'IDE/AssetPreview', | ||
component: AssetPreview | ||
}; | ||
|
||
export const Default = { | ||
args: { | ||
url: 'https://p5js.org/assets/img/p5js.svg', | ||
name: 'P5 Logo' | ||
} | ||
}; |
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,12 @@ | ||
import AssetSize from './AssetSize'; | ||
|
||
export default { | ||
title: 'IDE/AssetSize', | ||
component: AssetSize | ||
}; | ||
|
||
export const Default = { | ||
args: { | ||
totalSize: 123 | ||
} | ||
}; |
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,8 @@ | ||
import Console from './Console'; | ||
|
||
export default { | ||
title: 'IDE/Console', | ||
component: Console | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import ConsoleInput from './ConsoleInput'; | ||
|
||
export default { | ||
title: 'IDE/ConsoleInput', | ||
component: ConsoleInput | ||
}; | ||
|
||
export const Default = {}; |
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,12 @@ | ||
import CopyableInput from './CopyableInput'; | ||
|
||
export default { | ||
title: 'IDE/CopyableInput', | ||
component: CopyableInput | ||
}; | ||
|
||
export const Default = { | ||
args: { | ||
value: 'Lorem Ipsum' | ||
} | ||
}; |
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
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,13 @@ | ||
import EditableInput from './EditableInput'; | ||
|
||
export default { | ||
title: 'IDE/EditableInput', | ||
component: EditableInput | ||
}; | ||
|
||
export const Default = { | ||
args: { | ||
value: '[email protected]', | ||
label: 'Example' | ||
} | ||
}; |
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,8 @@ | ||
import Feedback from './Feedback'; | ||
|
||
export default { | ||
title: 'IDE/Feedback', | ||
component: Feedback | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import FileUploader from './FileUploader'; | ||
|
||
export default { | ||
title: 'IDE/FileUploader', | ||
component: FileUploader | ||
}; | ||
|
||
export const Default = {}; |
8 changes: 8 additions & 0 deletions
8
client/modules/IDE/components/FloatingActionButton.stories.jsx
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,8 @@ | ||
import FloatingActionButton from './FloatingActionButton'; | ||
|
||
export default { | ||
title: 'IDE/FloatingActionButton', | ||
component: FloatingActionButton | ||
}; | ||
|
||
export const Default = {}; |
8 changes: 8 additions & 0 deletions
8
client/modules/IDE/components/KeyboardShortcutModal.stories.jsx
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,8 @@ | ||
import KeyboardShortcutModal from './KeyboardShortcutModal'; | ||
|
||
export default { | ||
title: 'IDE/KeyboardShortcutModal', | ||
component: KeyboardShortcutModal | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import NewFileForm from './NewFileForm'; | ||
|
||
export default { | ||
title: 'IDE/NewFileForm', | ||
component: NewFileForm | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import NewFileModal from './NewFileModal'; | ||
|
||
export default { | ||
title: 'IDE/NewFileModal', | ||
component: NewFileModal | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import NewFolderForm from './NewFolderForm'; | ||
|
||
export default { | ||
title: 'IDE/NewFolderForm', | ||
component: NewFolderForm | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import NewFolderModal from './NewFolderModal'; | ||
|
||
export default { | ||
title: 'IDE/NewFolderModal', | ||
component: NewFolderModal | ||
}; | ||
|
||
export const Default = {}; |
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,8 @@ | ||
import ShareModal from './ShareModal'; | ||
|
||
export default { | ||
title: 'IDE/ShareModal', | ||
component: ShareModal | ||
}; | ||
|
||
export const Default = {}; |
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 SketchList from './SketchList'; | ||
|
||
export default { | ||
title: 'IDE/SketchList', | ||
component: SketchList | ||
}; | ||
|
||
export const Default = { | ||
args: { | ||
user: { | ||
username: 'Joe Blogs', | ||
authenticated: true | ||
}, | ||
username: 'Joe Blogs', | ||
loading: false, | ||
sketches: [ | ||
{ | ||
id: '1', | ||
name: 'Play Sketch', | ||
createdAt: Date.now().toString(), | ||
updatedAt: Date.now().toString() | ||
} | ||
] | ||
} | ||
}; |
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,8 @@ | ||
import UploadFileModal from './UploadFileModal'; | ||
|
||
export default { | ||
title: 'IDE/UploadFileModal', | ||
component: UploadFileModal | ||
}; | ||
|
||
export const Default = {}; |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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