Allow edit Shortcuts now woot

This commit is contained in:
Lim Chee Aun 2023-04-08 22:16:13 +08:00
parent 959ac468d8
commit c06a31dfbb
3 changed files with 74 additions and 13 deletions

View file

@ -17,6 +17,7 @@ function Columns() {
const { shortcuts } = snapStates; const { shortcuts } = snapStates;
const components = shortcuts.map((shortcut) => { const components = shortcuts.map((shortcut) => {
if (!shortcut) return null;
const { type, ...params } = shortcut; const { type, ...params } = shortcut;
const Component = { const Component = {
following: Following, following: Following,

View file

@ -121,3 +121,7 @@
min-width: 0; min-width: 0;
max-width: 320px; max-width: 320px;
} }
#shortcut-settings-form form footer {
display: flex;
gap: 16px;
}

View file

@ -1,7 +1,7 @@
import './shortcuts-settings.css'; import './shortcuts-settings.css';
import mem from 'mem'; import mem from 'mem';
import { useEffect, useState } from 'preact/hooks'; import { useEffect, useRef, useState } from 'preact/hooks';
import { useSnapshot } from 'valtio'; import { useSnapshot } from 'valtio';
import floatingButtonUrl from '../assets/floating-button.svg'; import floatingButtonUrl from '../assets/floating-button.svg';
@ -312,7 +312,7 @@ function ShortcutsSettings() {
</p> */} </p> */}
{shortcuts.length > 0 ? ( {shortcuts.length > 0 ? (
<ol class="shortcuts-list"> <ol class="shortcuts-list">
{shortcuts.map((shortcut, i) => { {shortcuts.filter(Boolean).map((shortcut, i) => {
const key = i + Object.values(shortcut); const key = i + Object.values(shortcut);
const { type } = shortcut; const { type } = shortcut;
if (!SHORTCUTS_META[type]) return null; if (!SHORTCUTS_META[type]) return null;
@ -372,6 +372,18 @@ function ShortcutsSettings() {
<Icon icon="arrow-down" alt="Move down" /> <Icon icon="arrow-down" alt="Move down" />
</button> </button>
<button <button
type="button"
class="plain small"
onClick={() => {
setShowForm({
shortcut,
shortcutIndex: i,
});
}}
>
<Icon icon="pencil" alt="Edit" />
</button>
{/* <button
type="button" type="button"
class="plain small" class="plain small"
onClick={() => { onClick={() => {
@ -379,7 +391,7 @@ function ShortcutsSettings() {
}} }}
> >
<Icon icon="x" alt="Remove" /> <Icon icon="x" alt="Remove" />
</button> </button> */}
</span> </span>
</li> </li>
); );
@ -420,12 +432,18 @@ function ShortcutsSettings() {
}} }}
> >
<ShortcutForm <ShortcutForm
shortcut={showForm.shortcut}
shortcutIndex={showForm.shortcutIndex}
disabled={shortcuts.length >= SHORTCUTS_LIMIT} disabled={shortcuts.length >= SHORTCUTS_LIMIT}
lists={lists} lists={lists}
followedHashtags={followedHashtags} followedHashtags={followedHashtags}
onSubmit={(data) => { onSubmit={({ result, mode }) => {
console.log('onSubmit', data); console.log('onSubmit', result);
states.shortcuts.push(data); if (mode === 'edit') {
states.shortcuts[showForm.shortcutIndex] = result;
} else {
states.shortcuts.push(result);
}
}} }}
onClose={() => setShowForm(false)} onClose={() => setShowForm(false)}
/> />
@ -436,21 +454,40 @@ function ShortcutsSettings() {
} }
function ShortcutForm({ function ShortcutForm({
type,
lists, lists,
followedHashtags, followedHashtags,
onSubmit, onSubmit,
disabled, disabled,
shortcut,
shortcutIndex,
onClose = () => {}, onClose = () => {},
}) { }) {
const [currentType, setCurrentType] = useState(type); console.log('shortcut', shortcut);
const editMode = !!shortcut;
const [currentType, setCurrentType] = useState(shortcut?.type || null);
const formRef = useRef();
useEffect(() => {
if (editMode && currentType && TYPE_PARAMS[currentType]) {
// Populate form
const form = formRef.current;
TYPE_PARAMS[currentType].forEach(({ name }) => {
const input = form.querySelector(`[name="${name}"]`);
if (input && shortcut[name]) {
input.value = shortcut[name];
}
});
}
}, [editMode, currentType]);
return ( return (
<div id="shortcut-settings-form" class="sheet"> <div id="shortcut-settings-form" class="sheet">
<header> <header>
<h2>Add shortcut</h2> <h2>{editMode ? 'Edit' : 'Add'} shortcut</h2>
</header> </header>
<main tabindex="-1"> <main tabindex="-1">
<form <form
ref={formRef}
onSubmit={(e) => { onSubmit={(e) => {
// Construct a nice object from form // Construct a nice object from form
e.preventDefault(); e.preventDefault();
@ -459,8 +496,12 @@ function ShortcutForm({
data.forEach((value, key) => { data.forEach((value, key) => {
result[key] = value?.trim(); result[key] = value?.trim();
}); });
console.log('result', result);
if (!result.type) return; if (!result.type) return;
onSubmit(result); onSubmit({
result,
mode: editMode ? 'edit' : 'add',
});
// Reset // Reset
e.target.reset(); e.target.reset();
setCurrentType(null); setCurrentType(null);
@ -476,6 +517,7 @@ function ShortcutForm({
onChange={(e) => { onChange={(e) => {
setCurrentType(e.target.value); setCurrentType(e.target.value);
}} }}
defaultValue={editMode ? shortcut.type : undefined}
name="type" name="type"
> >
<option></option> <option></option>
@ -539,9 +581,23 @@ function ShortcutForm({
); );
}, },
)} )}
<footer>
<button type="submit" class="block" disabled={disabled}> <button type="submit" class="block" disabled={disabled}>
Add {editMode ? 'Save' : 'Add'}
</button> </button>
{editMode && (
<button
type="button"
class="light danger"
onClick={() => {
states.shortcuts.splice(shortcutIndex, 1);
onClose();
}}
>
Remove
</button>
)}
</footer>
</form> </form>
</main> </main>
</div> </div>