Skip to content

Instantly share code, notes, and snippets.

View marcus-at-localhost's full-sized avatar
💭

Marcus marcus-at-localhost

💭
View GitHub Profile

HTMX and Bootstrap Toasts

Just a little demo how to use bootstraps toasts component with HTMX and custom triggers. Toasts are stackable and grouped by message (so the same message doesn't pop up several times, when already open.

A Pen by Marcus at Localhost on CodePen.

License.

@marcus-at-localhost
marcus-at-localhost / htmx_question.md
Created May 1, 2023 00:22
Find a performant approach to interact with HX-Trigger in HTMX

V1

This listens for a HX-Trigger moGetBookmarkButton_ID event on the #bookmark_item_* element to trigger hx-get

kirby()->response()->header('HX-Trigger','moGetBookmarkButton_' . $product->id())
//kirby()->response()->header('HX-Trigger','moGetBookmarkButton_b2')
@marcus-at-localhost
marcus-at-localhost / Misc HTMX Pattern.md
Last active September 3, 2023 12:40
Misc HTMX Pattern.md

Just things I find, but not need right now #htmx

Trigger Third Party Behavior

bigskysoftware/htmx#1158 (comment)

htmx.onLoad(function (content) {
	content.querySelectorAll('[data-dismiss-target]').forEach(triggerEl => {
		const targetEl = document.querySelector(triggerEl.getAttribute('data-dismiss-target'))
@marcus-at-localhost
marcus-at-localhost / Show Error Page in Controller.md
Created March 18, 2023 09:24
Show Error Page in Controller.md

#kirby #php

<?php

return function ($page, $pages, $kirby, $site) {
	/**
	 * Don't show old applications
	 */
	if ( $page-&gt;dateFrom()-&gt;toDate() &gt; time() || $page-&gt;dateTo()-&gt;toDate() &lt; time()) {
@marcus-at-localhost
marcus-at-localhost / Manipulate Wordpress Output Buffer with `DOMXPath`and `DOMDocument`.md
Last active March 12, 2023 13:46
Manipulate Wordpress Output Buffer with `DOMXPath`and `DOMDocument`.md

#wordpress #xquery #domdocument

theme-child/function.php

<?php
function callback($buffer) {
	
	// prevent ajax/json and admin stuff being mangled
	if (strpos(trim($buffer), '<') !== 0 || is_admin()) {
@marcus-at-localhost
marcus-at-localhost / Redirect with HTMX Headers.md
Created March 3, 2023 12:48
Redirect with HTMX Headers.md

#htmx #kirby

if (kirby()->request()->is('POST')) {

	if(!kirby()->request()->header('HX-Request')){
		go('membersarea');
	}
	
@marcus-at-localhost
marcus-at-localhost / addhash.js
Last active March 23, 2023 13:48
[Save Bootstrap 5 Tab State in URL for Deep Linking] #bootstrap #js <https://codepen.io/localhorst/pen/dyqbboY>
//@see https://codepen.io/localhorst/pen/dyqbboY
(function () {
'use strict'
if(location.hash){
const triggerEl = document.querySelector(location.hash)
bootstrap.Tab.getOrCreateInstance(triggerEl).show() // Select tab by name
}
const selectableTabList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tab"]'))
selectableTabList.forEach((selectableTab) => {
@marcus-at-localhost
marcus-at-localhost / Timezones.md
Created February 10, 2023 08:09
Timezones.md

Timezones

Two approaches to deal with timezones server- and client side.

  1. Save timestamp in GMT, use JavaScript to get user timezone from browser settings and display dynamicall on website (see code samples)
  2. Save timestamp in GMT, use JavaScript to detect user timezone from browser and store it. Also show a dropdown with all timezones for the user to choose from. Then use that to render DateTime on the server.

#js #date #datetime #intl #alpinejs

@marcus-at-localhost
marcus-at-localhost / Retrieve Plugin Data.md
Last active February 3, 2023 11:08
Retrieve Plugin Data.md

Retrieve Plugin Data #kirby #php

Eg. get a blueprint or a template path in a controller:

// index.php
Kirby::plugin('my/plugin', [
	'blueprints' => [
 'profile_form' =&gt; __DIR__ . '/blueprints/form.yml',
@marcus-at-localhost
marcus-at-localhost / _index.md
Last active January 31, 2023 17:07
This is a Lepton Title Some description #tag1 #tag2

Bla

  • Mark
  • Down