This file contains hidden or 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
Workspace | |
No File Opened | |
open file -> File | |
File | |
Clean Draft | |
on change -> Edited | |
on close with changes -> Unsaved Changes Warning | |
on save -> Clean Draft | |
on discard -> No File Opened | |
Edited |
This file contains hidden or 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
My Awesome Sketch | |
First State | |
some event -> Second State | |
Second State | |
Third State | |
first -> First State |
This file contains hidden or 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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
This file contains hidden or 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
LSPStatus& | |
Admin | |
FAILED? -> FAILED | |
SUCESS? -> SUCCESS | |
WARNING? -> WARNING | |
OFF? -> OFF | |
Rendering | |
# Check user preferences first | |
Code Intelligence Preferences* | |
enabled? -> Check LSP Client Exists |
This file contains hidden or 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
Resting* | |
play -> Booting | |
always on -> Booting | |
Booting | |
2s delay -> Running | |
Running | |
stop -> Resting | |
code update -> Booting |
This file contains hidden or 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
Hi |
This file contains hidden or 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
Installing an Extension* | |
# admin action | |
reset state chart -> Store | |
# admin action | |
finish installing -> Finished Installing? | |
Store* | |
click extension -> Cover Page | |
click manage -> Installed List | |
Cover Page | |
not installed?* |
This file contains hidden or 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
Installing an Extension* | |
# admin action | |
reset state chart -> Store | |
# admin action | |
finish installing -> Finished Installing? | |
Store* | |
click extension -> Cover Page | |
click manage -> Installed List | |
Cover Page& | |
not installed?* |
This file contains hidden or 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
Installing an Extension* | |
# admin action | |
reset state chart -> Store | |
# admin action | |
finish installing -> Finished Installing? | |
Store* | |
click extension -> Cover Page | |
click manage -> Installed List | |
Cover Page& | |
not installed?* |
This file contains hidden or 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 ComputedField from 'sanity-plugin-computed-field'; | |
import { validateLessonSlugUniqueness } from '../../utils/validateLessonSlugUniquness'; | |
import { getPublishedId } from '../../utils/documentPublishStatus'; | |
export default { | |
name: 'lesson', | |
title: 'Lesson', | |
type: 'document', | |
fields: [ | |
/** |
NewerOlder