Skip to content

Commit

Permalink
begin to rename repo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcodpt committed Aug 5, 2024
1 parent edc81cb commit 0dd8761
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 18 deletions.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# App 🚀
Vanilla js SPA without vDom, build steps and all framework complications.
# ![](assets/favicon.ico) Paw
A minimalistic hyperscript framework

[Demo](https://marcodpt.github.io/app/#/users)

## Features ❤️
- SPA without vDom
- Theme [builder](https://marcodpt.github.io/app/#/settings)
- Built-in router
- `index.html` [builder](https://marcodpt.github.io/app/#/settings) with themes
- JSON Schema based [forms](https://marcodpt.github.io/app/#/examples/form/4),
inputs and outputs
- SPA with SSR `index.html` optimized for SEO
- No build steps
- No vDom
- JSON Schema based [forms](https://marcodpt.github.io/app/#/examples/form/4)
- HTML to Hyperscript [converter](https://marcodpt.github.io/app/#/converter)
- [Table](https://marcodpt.github.io/app/#/users) data with great flexibility
- [Graph](https://marcodpt.github.io/app/#/examples/graph/0)
Expand Down Expand Up @@ -109,10 +110,9 @@ so I created it.
- datalist do not work on firefox mobile

### Next release 📋
- rename REPO
- merge tag and alert inside ctrl
- allow children in docs and examples (ctrl case)
- code component (html/js) and remove highlight.js from page source
- rename REPO

### Improvements 💡
- semantic html tests, no string cmp
Expand All @@ -125,8 +125,12 @@ so I created it.
- remove or minimize lang support
- remove non bootstrap options support, minimize options and review settings
- separate router and data-app as a plugin
- separate outputs
- remove whitespace for pre tag
- external links simbol and remove data-app-path

### Tests and docs 🧪
- html docs
- chart
- graph
- render
Expand Down
Binary file modified favicon.ico
Binary file not shown.
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
<link
id="theme"
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/united/bootstrap.min.css"
>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<title>App</title>
<title>Paw</title>
</head>
<body>
<nav
class="navbar navbar-expand-lg bg-light navbar-light"
class="navbar navbar-expand-lg bg-dark navbar-dark"
>
<div class="container-fluid">
<ul class="navbar-nav">
Expand All @@ -49,7 +49,7 @@
class="navbar-brand"
href="#/"
data-app-text="title"
>App</a>
>Paw</a>
<span class="navbar-text" data-app-text="current"></span>
<a
class="navbar-toggler border-0"
Expand Down Expand Up @@ -366,14 +366,14 @@
</nav>
<main>
<div class="container my-5">
<h1 data-app-text="title">App</h1>
<h1 data-app-text="title">Paw</h1>
<p
class="lead text-body-secondary"
data-app-text="description"
>A dashboard application</p>
>A minimalistic hyperscript framework</p>
</div>
</main>
<footer class="text-body-secondary">
<footer class="text-bg-dark">
<div class="container py-5">
<ul
class="nav justify-content-center border-bottom pb-3 mb-3"
Expand Down Expand Up @@ -434,10 +434,10 @@ <h1 data-app-text="title">App</h1>
</li>
</ul>
<p class="text-center">
Made with ❤️ with <a href="https://marcodpt.github.io/app/#/settings">App</a>
Made with ❤️ with <a href="https://marcodpt.github.io/app/#/settings"><i class="fa-solid fa-paw"></i></a>
</p>
</div>
</footer>
<script type="module" src="app.js"></script>
</body>
</html>
</html>
3 changes: 2 additions & 1 deletion views/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ export default ({render, form, home, html}) => {
navbar,
links,
linksFooter,
variantFooter,
copyright
}) => html(({
html,
Expand Down Expand Up @@ -586,7 +587,7 @@ export default ({render, form, home, html}) => {
])
]),
footer({
class: 'text-body-secondary'
class: variantFooter
}, [
div({
class: [
Expand Down

0 comments on commit 0dd8761

Please sign in to comment.