Pinned 2026 toolchains (Go 1.26, Rust 1.98/edition 2024, Python 3.14 + uv, Node 24, Zig 0.16, NixOS 26.05), postgres 18 / mongo 8, lockfiles built from, non-root runtimes, .dockerignore, per-project LICENSE, READMEs with the git.devai.io clone line, checkout@v7 CI. Security fixes in the legacy Rust APIs (any-password login, self-assigned admin, hard-coded JWT secret), JWT alg/exp/sub enforcement across the blog series, safe markdown links in the frontends, and many smaller bugs — every project was built, run and exercised end to end. Adds scripts/publish.sh + a CI publish job that splits every folder into its own repo at git.devai.io/templates/<folder>. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01128fhuZbgivaSJvtMf4s1G
126 lines
3.8 KiB
Dart
126 lines
3.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../api.dart';
|
|
|
|
class EditorScreen extends StatefulWidget {
|
|
const EditorScreen({super.key, required this.api, this.post});
|
|
|
|
final ApiClient api;
|
|
|
|
/// When set, the screen edits this post; otherwise it creates a new one.
|
|
final Post? post;
|
|
|
|
@override
|
|
State<EditorScreen> createState() => _EditorScreenState();
|
|
}
|
|
|
|
class _EditorScreenState extends State<EditorScreen> {
|
|
late final _title = TextEditingController(text: widget.post?.title ?? '');
|
|
late final _body = TextEditingController(text: widget.post?.body ?? '');
|
|
late bool _published = widget.post?.published ?? false;
|
|
late String? _id = widget.post?.id;
|
|
String? _notice;
|
|
String? _error;
|
|
bool _busy = false;
|
|
|
|
@override
|
|
void dispose() {
|
|
_title.dispose();
|
|
_body.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
Future<void> _save() async {
|
|
setState(() {
|
|
_busy = true;
|
|
_notice = null;
|
|
_error = null;
|
|
});
|
|
try {
|
|
final id = _id;
|
|
var saved = id != null
|
|
? await widget.api.updatePost(id, {
|
|
'title': _title.text,
|
|
'body': _body.text,
|
|
'published': _published,
|
|
})
|
|
: await widget.api.createPost(_title.text, _body.text);
|
|
// Posts are created unpublished; flip the flag in a follow-up update.
|
|
if (id == null && _published) {
|
|
saved = await widget.api.updatePost(saved.id, {'published': true});
|
|
}
|
|
if (!mounted) return;
|
|
if (saved.published) {
|
|
Navigator.of(context).pop(saved);
|
|
return;
|
|
}
|
|
// The API never serves drafts back, so keep editing this one right here.
|
|
setState(() {
|
|
_id = saved.id;
|
|
_notice = 'Draft saved. Turn on Published and save again to make it public.';
|
|
_busy = false;
|
|
});
|
|
} catch (e) {
|
|
if (mounted) {
|
|
setState(() {
|
|
_error = '$e';
|
|
_busy = false;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(_id == null ? 'New post' : 'Edit post'),
|
|
actions: [
|
|
TextButton(onPressed: _busy ? null : _save, child: Text(_busy ? 'Saving…' : 'Save')),
|
|
],
|
|
),
|
|
body: SingleChildScrollView(
|
|
padding: const EdgeInsets.all(20),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
TextField(
|
|
controller: _title,
|
|
textCapitalization: TextCapitalization.sentences,
|
|
decoration: const InputDecoration(labelText: 'Title', border: OutlineInputBorder()),
|
|
),
|
|
const SizedBox(height: 16),
|
|
TextField(
|
|
controller: _body,
|
|
maxLines: 16,
|
|
style: const TextStyle(fontFamily: 'monospace', fontSize: 14),
|
|
decoration: const InputDecoration(
|
|
labelText: 'Body (markdown)',
|
|
alignLabelWithHint: true,
|
|
border: OutlineInputBorder(),
|
|
),
|
|
),
|
|
const SizedBox(height: 8),
|
|
SwitchListTile(
|
|
title: const Text('Published'),
|
|
contentPadding: EdgeInsets.zero,
|
|
value: _published,
|
|
onChanged: (value) => setState(() => _published = value),
|
|
),
|
|
if (_notice != null)
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8),
|
|
child: Text(_notice!, style: TextStyle(color: theme.colorScheme.onSurfaceVariant)),
|
|
),
|
|
if (_error != null)
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8),
|
|
child: Text(_error!, style: TextStyle(color: theme.colorScheme.error)),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|