e03ccb479d
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
129 lines
7.0 KiB
JavaScript
129 lines
7.0 KiB
JavaScript
// Printable RM Circle flyers, personalized to the member. Each flyer's QR + the
|
||
// tear-off tabs carry /join/<id> (angle-matched per flyer). Reuses qrlib.js.
|
||
(function () {
|
||
'use strict';
|
||
var FLYERS = [
|
||
{ angle: 'pocket', theme: 't-gold', eye: 'PAYS PERSON-TO-PERSON · ON POLYGON',
|
||
h: 'You Already <span class="k">Found the Money.</span>',
|
||
pitch: 'The pocket change that slips through your fingers every week could be starting something instead. Scan for the 90-second look — no sign-up, no pressure, just the math.' },
|
||
{ angle: 'two', theme: 't-teal', eye: 'A CRYPTO TEAM BUILD · POLYGON',
|
||
h: 'You Know <span class="k">Two People.</span> That’s All This Takes.',
|
||
pitch: 'No big network. Nothing to sell. Get two, help them get theirs, and payments roll up to you on-chain as your team grows. Scan to see exactly how it works.' },
|
||
{ angle: 'phone', theme: 't-blue', eye: 'ON-CHAIN · NO MIDDLEMAN',
|
||
h: 'Your Phone Could <span class="k">Start Paying You.</span>',
|
||
pitch: 'The device in your hand is the only tool this needs. A public smart contract on Polygon pays people directly — no company holding the money. Scan and see for yourself.' },
|
||
{ angle: 'graveyard', theme: 't-navy', eye: 'AUTONOMOUS · IMMUTABLE · POLYGON',
|
||
h: 'Tired of Side Hustles <span class="k">That Die?</span>',
|
||
pitch: 'This one can’t be shut off. It runs on a public, immutable smart contract — no company, no owner who can pull the plug and take your momentum with them. Scan to look inside.' }
|
||
];
|
||
var TABS = 8;
|
||
|
||
// Half-sheet handouts: detailed AI artwork backgrounds (headline baked into
|
||
// the art, banner-kit energy) + a live DOM overlay carrying the member's QR
|
||
// and link. Prints 2 copies per letter page with a cut line.
|
||
var HALF = [
|
||
{ angle: 'pocket', img: '/handout-pocket.jpg' },
|
||
{ angle: 'two', img: '/handout-two.jpg' },
|
||
{ angle: 'phone', img: '/handout-phone.jpg' },
|
||
{ angle: 'graveyard', img: '/handout-graveyard.jpg' },
|
||
{ angle: '', img: '/handout-stop-waiting.jpg' }
|
||
];
|
||
|
||
function getId() {
|
||
var q = new URLSearchParams(location.search).get('id');
|
||
if (q && /^\d{1,15}$/.test(q)) return q;
|
||
var inp = document.getElementById('flIdInput');
|
||
if (inp && /^\d{1,15}$/.test(inp.value)) return inp.value;
|
||
try { var s = localStorage.getItem('ctb.myId') || localStorage.getItem('rmc.toolsId'); if (s && /^\d{1,15}$/.test(s)) return s; } catch (e) {}
|
||
return '';
|
||
}
|
||
function qrSvg(url) {
|
||
try { var q = qrcode(0, 'M'); q.addData(url); q.make(); return q.createSvgTag({ cellSize: 4, margin: 2, scalable: true }); } catch (e) { return ''; }
|
||
}
|
||
function el(tag, cls, html) { var d = document.createElement(tag); if (cls) d.className = cls; if (html != null) d.innerHTML = html; return d; }
|
||
|
||
function build(id) {
|
||
var host = document.getElementById('flyers');
|
||
host.innerHTML = '';
|
||
var haveId = /^\d{1,15}$/.test(id);
|
||
var idLabel = haveId ? id : '____';
|
||
FLYERS.forEach(function (f) {
|
||
var url = 'https://rmcircle.team/join/' + (haveId ? id : '') + (f.angle ? '?v=' + f.angle : '');
|
||
var shortUrl = 'rmcircle.team/join/' + idLabel;
|
||
var card = el('div', 'fl ' + f.theme);
|
||
var pr = el('button', 'fl-print btn btn-teal btn-sm', '🖨 Print this flyer');
|
||
card.appendChild(pr);
|
||
card.appendChild(el('div', 'fl-hd', '<div class="fl-ring"><span>RM</span></div><div class="fl-eye">' + f.eye + '</div><div class="fl-brand">THE RM CIRCLE</div>'));
|
||
var body = el('div', 'fl-body',
|
||
'<h2>' + f.h + '</h2><p class="pitch">' + f.pitch + '</p>' +
|
||
'<div class="fl-scan"><div class="fl-qr">' + (haveId ? qrSvg(url) : '') + '</div>' +
|
||
'<div class="si"><span class="sm">Scan with your phone camera 📷</span><b>' + shortUrl + '</b><span class="sm">Then take the 2-minute tour.</span></div></div>' +
|
||
'<p class="fl-disc">Independent team resource. Participation takes real effort and involves cryptocurrency risk. No income is guaranteed. Learn more at rmcircle.team.</p>');
|
||
card.appendChild(body);
|
||
var tabs = el('div', 'fl-tabs');
|
||
for (var i = 0; i < TABS; i++) tabs.appendChild(el('div', 'fl-tab', '✂ ' + shortUrl));
|
||
card.appendChild(tabs);
|
||
pr.addEventListener('click', function () {
|
||
document.body.classList.add('print-one'); card.classList.add('printing');
|
||
window.print();
|
||
setTimeout(function () { document.body.classList.remove('print-one'); card.classList.remove('printing'); }, 400);
|
||
});
|
||
host.appendChild(card);
|
||
});
|
||
if (!haveId) {
|
||
var note = el('p', 'micro', 'Enter your member ID above to fill in your QR codes and links. (Blank flyers still print if you want to write the link by hand.)');
|
||
note.style.cssText = 'color:var(--gold);text-align:center;margin:-14px 0 20px';
|
||
host.insertBefore(note, host.firstChild);
|
||
}
|
||
buildHalf(id);
|
||
}
|
||
|
||
function buildHalf(id) {
|
||
var host = document.getElementById('halfsheets');
|
||
if (!host) return;
|
||
host.innerHTML = '';
|
||
var haveId = /^\d{1,15}$/.test(id);
|
||
var idLabel = haveId ? id : '____';
|
||
|
||
function overlayHtml(url, shortUrl) {
|
||
var qr = haveId ? qrSvg(url) : '<div class="qph"></div>';
|
||
return '<div class="hs-qrov"><div class="q">' + qr + '</div>' +
|
||
'<div class="scan">SCAN ME</div><div class="lnk">' + shortUrl + '</div></div>' +
|
||
'<div class="hs-discov">Independent team resource. Participation takes real effort and involves cryptocurrency risk. No income is guaranteed. Learn more at rmcircle.team.</div>';
|
||
}
|
||
function makeCard(f, url, shortUrl, extraCls) {
|
||
var card = el('div', 'hs' + (extraCls ? ' ' + extraCls : ''), overlayHtml(url, shortUrl));
|
||
card.style.backgroundImage = 'url(' + f.img + ')';
|
||
return card;
|
||
}
|
||
|
||
HALF.forEach(function (f) {
|
||
var url = 'https://rmcircle.team/join/' + (haveId ? id : '') + (f.angle ? '?v=' + f.angle : '');
|
||
var shortUrl = 'rmcircle.team/join/' + idLabel;
|
||
var page = el('div', 'hs-page');
|
||
var card = makeCard(f, url, shortUrl, '');
|
||
var pr = el('button', 'hs-print btn btn-teal btn-sm', '🖨 Print (2 per page)');
|
||
card.appendChild(pr);
|
||
page.appendChild(card);
|
||
page.appendChild(el('div', 'hs-cut', '✂ cut here ✂'));
|
||
page.appendChild(makeCard(f, url, shortUrl, 'hs-copy'));
|
||
pr.addEventListener('click', function () {
|
||
document.body.classList.add('print-one'); page.classList.add('printing');
|
||
window.print();
|
||
setTimeout(function () { document.body.classList.remove('print-one'); page.classList.remove('printing'); }, 400);
|
||
});
|
||
host.appendChild(page);
|
||
});
|
||
}
|
||
|
||
var input = document.getElementById('flIdInput');
|
||
var initial = getId();
|
||
if (input && initial) input.value = initial;
|
||
build(initial);
|
||
if (input) input.addEventListener('input', function () {
|
||
var v = input.value.replace(/\D/g, '').slice(0, 15); input.value = v;
|
||
if (/^\d{1,15}$/.test(v)) { try { localStorage.setItem('rmc.toolsId', v); } catch (e) {} }
|
||
build(v);
|
||
});
|
||
})();
|