1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Tweaks to component snippet editor.

This commit is contained in:
pngwn 2020-01-22 09:41:19 +00:00
parent 18a436ffef
commit dba1bfce35
3 changed files with 20 additions and 32 deletions

View file

@ -30,7 +30,7 @@
<p>Use the code box below to add snippets of javascript to enhance your webapp</p> <p>Use the code box below to add snippets of javascript to enhance your webapp</p>
<div class="editor"> <div class="editor">
<textarea bind:value={snippet_text} /> <textarea class="code" bind:value={snippet_text} />
<button on:click={save_snippet}>Save</button> <button on:click={save_snippet}>Save</button>
</div> </div>
@ -38,7 +38,7 @@
<h3>Snippets added</h3> <h3>Snippets added</h3>
{#each snippets as { id, snippet } } {#each snippets as { id, snippet } }
<div class="snippet"> <div class="snippet">
<pre>{snippet}</pre> <pre class="code">{snippet}</pre>
<button on:click={() => edit_snippet(id)}>Edit</button> <button on:click={() => edit_snippet(id)}>Edit</button>
</div> </div>
{/each} {/each}
@ -63,10 +63,9 @@
position: relative; position: relative;
} }
.editor textarea { .code {
width: 100%; width: 100%;
outline: none; outline: none;
height: 150px;
border: none; border: none;
background: #173157; background: #173157;
border-radius: 5px; border-radius: 5px;
@ -75,10 +74,14 @@
color: #eee; color: #eee;
padding: 10px; padding: 10px;
font-family: monospace; font-family: monospace;
resize: none;
overflow-y: scroll; overflow-y: scroll;
} }
.editor textarea {
resize: none;
height: 150px;
}
button { button {
position: absolute; position: absolute;
box-shadow: 0 0 black; box-shadow: 0 0 black;
@ -104,20 +107,9 @@
} }
.snippet pre { .snippet pre {
width: 100%;
outline: none;
max-height: 150px;
border: none;
background: #f9f9f9; background: #f9f9f9;
border-radius: 5px;
box-sizing: border-box;
white-space: pre;
color: #333; color: #333;
padding: 10px; max-height: 150px;
font-family: monospace;
resize: none;
overflow-y: scroll;
margin: 10px;
} }
.snippet button { .snippet button {

View file

@ -26,11 +26,11 @@ const addRootComponent = (c, all) => {
} }
group.components.push(c) group.components.push(c)
}; };
const onComponentChosen = (component) => { const onComponentChosen = (component) => {
}; };
store.subscribe(s => { store.subscribe(s => {
@ -39,17 +39,13 @@ store.subscribe(s => {
for(let comp of sortBy(["name"])(s.components)) { for(let comp of sortBy(["name"])(s.components)) {
addRootComponent( addRootComponent(
comp, comp,
newComponentLibraries); newComponentLibraries);
} }
componentLibraries = newComponentLibraries; componentLibraries = newComponentLibraries;
}); });
</script> </script>
<div class="root"> <div class="root">
@ -60,7 +56,7 @@ store.subscribe(s => {
<div class="library-container"> <div class="library-container">
<div class="inner-header"> <div class="inner-header">
Components Components
</div> </div>

View file

@ -11,7 +11,7 @@ import UIkit from "uikit";
import { isRootComponent } from "./pagesParsing/searchComponents"; import { isRootComponent } from "./pagesParsing/searchComponents";
import { splitName } from "./pagesParsing/splitRootComponentName.js" import { splitName } from "./pagesParsing/splitRootComponentName.js"
import { import {
find, filter, some, map, includes find, filter, some, map, includes
} from "lodash/fp"; } from "lodash/fp";
import { assign } from "lodash"; import { assign } from "lodash";
@ -29,13 +29,13 @@ let name="";
let saveAttempted=false; let saveAttempted=false;
store.subscribe(s => { store.subscribe(s => {
console.log(s)
layoutComponents = pipe(s.components, [ layoutComponents = pipe(s.components, [
filter(c => c.container), filter(c => c.container),
map(c => ({name:c.name, ...splitName(c.name)})) map(c => ({name:c.name, ...splitName(c.name)}))
]); ]);
layoutComponent = layoutComponent layoutComponent = layoutComponent
? find(c => c.name === layoutComponent.name)(layoutComponents) ? find(c => c.name === layoutComponent.name)(layoutComponents)
: layoutComponents[0]; : layoutComponents[0];
@ -48,7 +48,7 @@ const save = () => {
const isValid = name.length > 0 const isValid = name.length > 0
&& !screenNameExists(name) && !screenNameExists(name)
&& layoutComponent; && layoutComponent;
if(!isValid) return; if(!isValid) return;
store.createScreen(name, layoutComponent.name); store.createScreen(name, layoutComponent.name);
@ -59,7 +59,7 @@ const cancel = () => {
UIkit.modal(componentSelectorModal).hide(); UIkit.modal(componentSelectorModal).hide();
} }
const screenNameExists = (name) => const screenNameExists = (name) =>
some(s => s.name.toLowerCase() === name.toLowerCase())(screens) some(s => s.name.toLowerCase() === name.toLowerCase())(screens)
</script> </script>
@ -84,7 +84,7 @@ const screenNameExists = (name) =>
<div class="uk-margin"> <div class="uk-margin">
<label class="uk-form-label">Layout Component</label> <label class="uk-form-label">Layout Component</label>
<div class="uk-form-controls"> <div class="uk-form-controls">
<select class="uk-select uk-form-small" <select class="uk-select uk-form-small"
bind:value={layoutComponent} bind:value={layoutComponent}
class:uk-form-danger={saveAttempted && !layoutComponent}> class:uk-form-danger={saveAttempted && !layoutComponent}>
{#each layoutComponents as comp} {#each layoutComponents as comp}
@ -130,4 +130,4 @@ h1 {
font-size: 9pt; font-size: 9pt;
} }
</style> </style>