add day16
This commit is contained in:
20
day16/src/components/Counter.devto
Normal file
20
day16/src/components/Counter.devto
Normal file
@@ -0,0 +1,20 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">count is: { appState.contents.count }</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<button d-on:click="appState.contents.count--"
|
||||
class="transition-colors p-3 duration-300 active:bg-red-700 hover:bg-red-600 hover:text-zinc-100 mr-1">
|
||||
<img src='/minus.svg'
|
||||
alt="minus" />
|
||||
</button>
|
||||
<button d-on:click="appState.contents.count = 0"
|
||||
class="transition-colors p-3 duration-300 active:bg-zinc-700 hover:bg-zinc-800 hover:text-red-100 mr-1">
|
||||
<img src='/refresh.svg'
|
||||
alt="reset">
|
||||
</button>
|
||||
<button d-on:click="appState.contents.count++"
|
||||
class="transition-colors p-3 duration-300 active:bg-green-700 hover:bg-green-600 hover:text-green-100">
|
||||
<img src='/plus.svg'
|
||||
alt="plus" />
|
||||
</button>
|
||||
</div>
|
||||
1
day16/src/components/RouterLink.devto
Normal file
1
day16/src/components/RouterLink.devto
Normal file
@@ -0,0 +1 @@
|
||||
<p>TODO</p>
|
||||
12
day16/src/components/cookieInput.ts
Normal file
12
day16/src/components/cookieInput.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export const CookieInput = () => {
|
||||
return `
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">Username cookie is: {appState.contents.cookie}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center flex-col">
|
||||
<input placeholder="username..." class="py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300" d-model="cookiedata" />
|
||||
{appState.contents.cookiedata}
|
||||
<button class="bg-blue-600 font-semibold rounded-md py-1 px-2 text-sm" d-click="appState.contents.cookie = appState.contents.cookiedata; setCookie('username', appState.contents.cookiedata, '365');">Submit Cookie</button>
|
||||
</div>
|
||||
`
|
||||
}
|
||||
12
day16/src/components/htmlInput.ts
Normal file
12
day16/src/components/htmlInput.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export const HtmlInput = () => {
|
||||
return `
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center" d-html>html input is: {appState.contents.html}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<div>
|
||||
<input placeholder="text..." class="py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300" d-model="html" />
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
}
|
||||
23
day16/src/components/myDad.ts
Normal file
23
day16/src/components/myDad.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
export const MyDad = () => {
|
||||
return `
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">My dad {appState.contents.year}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<input placeholder="ex: 1985" class="no-arrows py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300" type="number" d-model="year">
|
||||
</div>
|
||||
<style>
|
||||
/* Chrome, Safari, Edge, Opera */
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Firefox */
|
||||
input[type=number] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
</style>
|
||||
`
|
||||
}
|
||||
10
day16/src/components/textInput.devto
Normal file
10
day16/src/components/textInput.devto
Normal file
@@ -0,0 +1,10 @@
|
||||
<div class="mb-2">
|
||||
<h2 class="text-xl font-semibold text-center">Input is: {appState.contents.text}</h2>
|
||||
</div>
|
||||
<div class="flex justify-center">
|
||||
<div>
|
||||
<input placeholder="text..."
|
||||
class="py-2 px-4 resize-none bg-zinc-800 rounded-md shadow-md my-2 border border-zinc-800 placeholder:italic placeholder:text-gray-300"
|
||||
d-model="text" />
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user