view src/drag.html.luan @ 29:a04ef87cf4a0

drag and drop
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 23 Dec 2022 15:31:50 -0700
parents src/wysiwyg.html.luan@e287c82a81e5
children
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"
local Shared = require "site:/lib/Shared.luan"
local head = Shared.head or error()
local needed_header = Shared.needed_header or error()


return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
<%		head() %>
		<title>Reactionary Software - JavaScript Drag and Drop</title>
	</head>
	<body>
<%		needed_header() %>
		<div content>
			<h1>JavaScript Drag and Drop</h1>

			<p>The standard HTML drag and drop API is a disgusting mess, as one would expect from modern standards.  But here modern programmers have managed to reach a new low.  This API doesn't work at all on mobile, making it completely useless.</p>

			<p>There are a number of third party JavaScript drag and drop libraries like <a href="https://interactjs.io/">interact.js</a> and <a href="https://draggabilly.desandro.com/">Draggabilly</a>.  Of course these don't work, since they are modern code.  interact.js is the least bad of them, but its drop functionality breaks if you modify the DOM.</p>

			<p>Writing a decent JavaScript drag and drop library shouldn't be hard for a reactionary programmer.  And I would use it for a number of projects.</p>
		</div>
	</body>
</html>
<%
end