2024-10-28 17:08:13 +00:00
|
|
|
from pydantic import TypeAdapter
|
|
|
|
|
2024-10-21 14:14:00 +00:00
|
|
|
from core.views.widgets.select import (
|
|
|
|
AutoCompleteSelect,
|
|
|
|
AutoCompleteSelectMultiple,
|
|
|
|
)
|
2024-10-21 08:30:35 +00:00
|
|
|
from sas.models import Album
|
|
|
|
from sas.schemas import AlbumSchema
|
|
|
|
|
2024-10-21 14:14:00 +00:00
|
|
|
_js = ["webpack/sas/components/ajax-select-index.ts"]
|
|
|
|
|
2024-10-21 08:30:35 +00:00
|
|
|
|
2024-10-21 14:14:00 +00:00
|
|
|
class AutoCompleteSelectAlbum(AutoCompleteSelect):
|
2024-10-21 08:30:35 +00:00
|
|
|
component_name = "album-ajax-select"
|
|
|
|
model = Album
|
2024-10-28 17:08:13 +00:00
|
|
|
adapter = TypeAdapter(list[AlbumSchema])
|
2024-10-21 08:30:35 +00:00
|
|
|
|
2024-10-21 14:14:00 +00:00
|
|
|
js = _js
|
2024-10-21 08:30:35 +00:00
|
|
|
|
|
|
|
|
2024-10-21 14:14:00 +00:00
|
|
|
class AutoCompleteSelectMultipleAlbum(AutoCompleteSelectMultiple):
|
2024-10-21 08:30:35 +00:00
|
|
|
component_name = "album-ajax-select"
|
|
|
|
model = Album
|
2024-10-28 17:08:13 +00:00
|
|
|
adapter = TypeAdapter(list[AlbumSchema])
|
2024-10-21 08:30:35 +00:00
|
|
|
|
2024-10-21 14:14:00 +00:00
|
|
|
js = _js
|