Commit Graph

1310 Commits (0d918efe4c67fd0cc37d880be7094e08940ec7dc)

Author SHA1 Message Date
voussoir 6fb6b1eeb0 Add Bookmark.display_name, just like Album. 2020-10-13 10:37:12 -07:00
voussoir 4a1aad4622 Fix expression orderbys not reflecting in web UI.
selected_column needs to be the expression since that's what comes
back from the normalizer.
2020-10-12 22:30:06 -07:00
voussoir b2290d030a Allow orderby bitrate. 2020-10-12 22:28:09 -07:00
voussoir 86c09aedc1 Add album_autocomplete.js, so "Add child" box can autocomplete.
This makes putting albums together a little easier, though datalist
performance still leaves a lot to be desired.
2020-10-03 18:37:08 -07:00
voussoir 4e3e2fea12 Avoid creating emptystring promptclass. 2020-10-03 18:32:21 -07:00
voussoir e09c3300d1 Let cached_endpoint pass the content-type header through. 2020-10-03 18:30:16 -07:00
voussoir 5d802ba9f9 Let response status be 0 even if request didn't complete.
Since meta.status would be undefined for an incomplete request,
I would have to check response.completed && response.meta.status,
which is too much burden. Let's set the status immediately, and
if a callback wants to do further diving we'll use completed then.
2020-10-02 19:43:36 -07:00
voussoir d15d5f9856 Set tabbed_container data-active-tab-id on tab change. 2020-10-02 16:53:00 -07:00
voussoir d8276b763d Fix default theme evaluation. 2020-10-01 19:58:23 -07:00
voussoir 83cd4b7cd2 Add init_photodb to prod. 2020-10-01 19:43:06 -07:00
voussoir a7f8449dcd Update readme with separate run instructions for repl, cli. 2020-09-30 16:14:30 -07:00
voussoir d5a88a2950 Move etiquette_repl back out of its own folder into frontends dir.
In e57f87c I moved it to a folder so that every entry in the frontends
dir was a folder. A noble goal, but it always felt silly and I'm quite
sure it will never expand to be more than a single file.
2020-09-30 15:57:30 -07:00
voussoir 410d9aba69 Update contact info. 2020-09-30 15:44:35 -07:00
voussoir 70dfe8aca8 Enforce keyword-only args, alphabetize args. 2020-09-30 15:17:20 -07:00
voussoir 5e6a666ca2 Add option --localhost_only. 2020-09-30 15:15:49 -07:00
voussoir 59cc76f8d9 Rename flask launchers -> _dev, _prod.
I want to reduce some complexity around here, part of which is that
launch imported entrypoint imported backend, all to do some proxy
wrapping which isn't necessary for the dev case anyway. Less
layers of wrapping and importing is good. Plus I think this naming
is more clear.
2020-09-30 15:05:44 -07:00
voussoir fc894bcd17 Add purge_deleted_photos, purge_empty_albums. 2020-09-30 13:44:09 -07:00
voussoir 735fbf9abd Let the purge methods yield their deleted items. 2020-09-30 13:41:42 -07:00
voussoir 0ec072c797 Add breplace. 2020-09-29 18:08:04 -07:00
voussoir a41c843cb9 Let #right dominate page height, scroll the rest of tags_on_page. 2020-09-29 17:49:03 -07:00
voussoir 9533c444a5 Move error_message_area, happy_message_area into #right.
It's where they belong!
2020-09-29 17:21:50 -07:00
voussoir 14961d75fd Let homepage use width 90% max 600 instead of straight 50%. 2020-09-29 17:18:46 -07:00
voussoir ee16d02324 In narrow mode, let #right be absolute to achieve similar effect.
It's not perfect yet, and 95vh is purely empirical.
2020-09-29 17:18:20 -07:00
voussoir 1d6464b79b Let #right be fixed.
Previously, then the tags list was very long and dominated the scroll
height of the page, the #right and thus the photo would be floating
halfway down the page. By making it sticky, the photo always occupies
the correct position in the viewport no matter how long #left gets.
2020-09-29 17:13:03 -07:00
voussoir ea60190e7d Revert most of failed experiment but keep the good parts.
- tag_autocomplete.tags and .synonyms are separate vars, not in tagset.
- tag_autocomplete.tags is now a Set object for faster resolve().
- get_all_tags moved to api.js.
- server provides "updated" timestamp with the all_tags list.
2020-09-29 16:54:00 -07:00
voussoir 7e58c95f15 Mostly failed experiment: tag_autocomplete indexeddb.
The current system has bad performance when you've got 100,000+ tags.
I discovered that when the server returns 304, the browser gives the
ajax a 200 with the full response, and it's not clear to me if js can
know it got a 304. So, the tag set is being fully re-parsed from the
response on every page load. I was thinking that I should store that in
IndexedDB to avoid the parsing step, but... since the JSON.parse is
done by my common.get before it hits this function, it's meaningless.
Not to mention I still have to rebuild the datalist on every page since
of course that state isn't shared between tabs. Not worth the DB stuff.
We'll see what happens next.
2020-09-29 16:52:20 -07:00
voussoir 3a8aadf6aa Remove __main__ from photodb.py. 2020-09-28 20:15:28 -07:00
voussoir 6eb4d887ba Replace create_or_get_photos with singular. 2020-09-28 20:14:10 -07:00
voussoir 7d2e5bd9a9 Add digest_directory. 2020-09-28 14:28:15 -07:00
voussoir b9f4b2cf38 Pull out search_by_argparse into own function. 2020-09-28 14:25:10 -07:00
voussoir 3e33285cff Add separate argument buckets so any subparser can search. 2020-09-28 14:24:17 -07:00
voussoir 3738a60195 Cache photodbs throughout runtime. 2020-09-28 14:22:28 -07:00
voussoir d531c66bf0 Delete photo's thumbnail when deleting the file.
A minor oversight, I think you'll agree.
2020-09-28 14:22:09 -07:00
voussoir 949e6f68fe Remove support for two Photos with same path.
I have yet to find a practical need for this, and all it does is cause
headaches about the safety of moving / renaming the file.
2020-09-28 14:18:10 -07:00
voussoir 585882028d Add get_things_by_sql for quick, bespoke queries. 2020-09-28 14:07:28 -07:00
voussoir 98f706f486 Let Photo.basename be a @property. 2020-09-28 14:06:32 -07:00
voussoir 3b72b07262 Replace yield from generator with return generator. 2020-09-28 11:26:16 -07:00
voussoir 63bc2dfed5 Add yield_photos, count albums in search result limit.
This experiment of bringing Photos and Albums closer to parity in
search is going well so far. I have found some situations where it
is nice to only get albums back from search results.
2020-09-27 23:38:49 -07:00
voussoir c7eda36133 Add decollide_names, prefer simplified names in album exports. 2020-09-27 23:36:15 -07:00
voussoir 28aa47d40d Add __str__ to Album and Photo. 2020-09-27 23:35:12 -07:00
voussoir ba1fba0c06 Add full_name to Albums. 2020-09-27 23:35:12 -07:00
voussoir 72229a9c3b When adding/removing photos, respond with updated album json. 2020-09-27 23:35:12 -07:00
voussoir d152987b97 Let /album/add_child, /remove_child take multiple IDs. 2020-09-27 23:35:01 -07:00
voussoir 8777998829 Add plural method remove_children. 2020-09-27 22:24:33 -07:00
voussoir 0eb8fd3f1b Fix incorrect short-circuit order of add_chidren bail. 2020-09-27 19:49:27 -07:00
voussoir 06340d03da Dedent these loops via comprehensions of questionable clarity. 2020-09-27 13:50:35 -07:00
voussoir fa512eff28 Add argument once_each, set to False if you want every permutation. 2020-09-27 13:28:03 -07:00
voussoir 97cc023866 Add Groupable methods has_ancestor, _descendant, _parent. 2020-09-27 13:01:19 -07:00
voussoir 5712d6dabd Call tag_object instead of hand writing this tag. 2020-09-27 12:15:03 -07:00
voussoir 08591a717b Let tag_object take arbitrary extra attributes. 2020-09-27 12:14:33 -07:00