mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
* removed settings of IntegrateAssetNew * added 'active' to 'ValidateEditorialAssetName' plugin settings * removed unused 'families_to_review' setting from tvpain * implemented product name -> subset and product type -> family conversion * fixed most of conversion utils related to subsets * removed unused constants * anatomy templates are handling folder and product in templates * handle all possible template changes of asset, subest and family in settings * updated ayon api * updated fixed ayon api * added conversion functions for representations * fixed 'get_thumbnail' compatibility * use del to handle ayon mode in intput links * changed labels in UI based on AYON mode * updated ayon_api with 0.2.0 release code
281 lines
9.1 KiB
Python
281 lines
9.1 KiB
Python
import re
|
|
import inspect
|
|
|
|
from qtpy import QtWidgets, QtCore, QtGui
|
|
|
|
import qtawesome
|
|
|
|
from openpype import AYON_SERVER_ENABLED
|
|
from openpype.pipeline.create import SUBSET_NAME_ALLOWED_SYMBOLS
|
|
from openpype.tools.utils import ErrorMessageBox
|
|
|
|
if hasattr(QtGui, "QRegularExpressionValidator"):
|
|
RegularExpressionValidatorClass = QtGui.QRegularExpressionValidator
|
|
RegularExpressionClass = QtCore.QRegularExpression
|
|
else:
|
|
RegularExpressionValidatorClass = QtGui.QRegExpValidator
|
|
RegularExpressionClass = QtCore.QRegExp
|
|
|
|
|
|
class CreateErrorMessageBox(ErrorMessageBox):
|
|
def __init__(
|
|
self,
|
|
family,
|
|
subset_name,
|
|
asset_name,
|
|
exc_msg,
|
|
formatted_traceback,
|
|
parent
|
|
):
|
|
self._family = family
|
|
self._subset_name = subset_name
|
|
self._asset_name = asset_name
|
|
self._exc_msg = exc_msg
|
|
self._formatted_traceback = formatted_traceback
|
|
super(CreateErrorMessageBox, self).__init__("Creation failed", parent)
|
|
|
|
def _create_top_widget(self, parent_widget):
|
|
label_widget = QtWidgets.QLabel(parent_widget)
|
|
label_widget.setText(
|
|
"<span style='font-size:18pt;'>Failed to create</span>"
|
|
)
|
|
return label_widget
|
|
|
|
def _get_report_data(self):
|
|
report_message = (
|
|
"Failed to create {subset_label}: \"{subset}\""
|
|
" {family_label}: \"{family}\""
|
|
" in Asset: \"{asset}\""
|
|
"\n\nError: {message}"
|
|
).format(
|
|
subset_label="Product" if AYON_SERVER_ENABLED else "Subset",
|
|
family_label="Type" if AYON_SERVER_ENABLED else "Family",
|
|
subset=self._subset_name,
|
|
family=self._family,
|
|
asset=self._asset_name,
|
|
message=self._exc_msg
|
|
)
|
|
if self._formatted_traceback:
|
|
report_message += "\n\n{}".format(self._formatted_traceback)
|
|
return [report_message]
|
|
|
|
def _create_content(self, content_layout):
|
|
item_name_template = (
|
|
"<span style='font-weight:bold;'>{}:</span> {{}}<br>"
|
|
"<span style='font-weight:bold;'>{}:</span> {{}}<br>"
|
|
"<span style='font-weight:bold;'>{}:</span> {{}}<br>"
|
|
).format(
|
|
"Product type" if AYON_SERVER_ENABLED else "Family",
|
|
"Product name" if AYON_SERVER_ENABLED else "Subset",
|
|
"Folder" if AYON_SERVER_ENABLED else "Asset"
|
|
)
|
|
exc_msg_template = "<span style='font-weight:bold'>{}</span>"
|
|
|
|
line = self._create_line()
|
|
content_layout.addWidget(line)
|
|
|
|
item_name_widget = QtWidgets.QLabel(self)
|
|
item_name_widget.setText(
|
|
item_name_template.format(
|
|
self._family, self._subset_name, self._asset_name
|
|
)
|
|
)
|
|
content_layout.addWidget(item_name_widget)
|
|
|
|
message_label_widget = QtWidgets.QLabel(self)
|
|
message_label_widget.setText(
|
|
exc_msg_template.format(self.convert_text_for_html(self._exc_msg))
|
|
)
|
|
content_layout.addWidget(message_label_widget)
|
|
|
|
if self._formatted_traceback:
|
|
line_widget = self._create_line()
|
|
tb_widget = self._create_traceback_widget(
|
|
self._formatted_traceback
|
|
)
|
|
content_layout.addWidget(line_widget)
|
|
content_layout.addWidget(tb_widget)
|
|
|
|
|
|
class SubsetNameValidator(RegularExpressionValidatorClass):
|
|
invalid = QtCore.Signal(set)
|
|
pattern = "^[{}]*$".format(SUBSET_NAME_ALLOWED_SYMBOLS)
|
|
|
|
def __init__(self):
|
|
reg = RegularExpressionClass(self.pattern)
|
|
super(SubsetNameValidator, self).__init__(reg)
|
|
|
|
def validate(self, text, pos):
|
|
results = super(SubsetNameValidator, self).validate(text, pos)
|
|
if results[0] == self.Invalid:
|
|
self.invalid.emit(self.invalid_chars(text))
|
|
return results
|
|
|
|
def invalid_chars(self, text):
|
|
invalid = set()
|
|
re_valid = re.compile(self.pattern)
|
|
for char in text:
|
|
if char == " ":
|
|
invalid.add("' '")
|
|
continue
|
|
if not re_valid.match(char):
|
|
invalid.add(char)
|
|
return invalid
|
|
|
|
|
|
class VariantLineEdit(QtWidgets.QLineEdit):
|
|
report = QtCore.Signal(str)
|
|
colors = {
|
|
"empty": (QtGui.QColor("#78879b"), ""),
|
|
"exists": (QtGui.QColor("#4E76BB"), "border-color: #4E76BB;"),
|
|
"new": (QtGui.QColor("#7AAB8F"), "border-color: #7AAB8F;"),
|
|
}
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(VariantLineEdit, self).__init__(*args, **kwargs)
|
|
|
|
validator = SubsetNameValidator()
|
|
self.setValidator(validator)
|
|
self.setToolTip("Only alphanumeric characters (A-Z a-z 0-9), "
|
|
"'_' and '.' are allowed.")
|
|
|
|
self._status_color = self.colors["empty"][0]
|
|
|
|
anim = QtCore.QPropertyAnimation()
|
|
anim.setTargetObject(self)
|
|
anim.setPropertyName(b"status_color")
|
|
anim.setEasingCurve(QtCore.QEasingCurve.InCubic)
|
|
anim.setDuration(300)
|
|
anim.setStartValue(QtGui.QColor("#C84747")) # `Invalid` status color
|
|
self.animation = anim
|
|
|
|
validator.invalid.connect(self.on_invalid)
|
|
|
|
def on_invalid(self, invalid):
|
|
message = "Invalid character: %s" % ", ".join(invalid)
|
|
self.report.emit(message)
|
|
self.animation.stop()
|
|
self.animation.start()
|
|
|
|
def as_empty(self):
|
|
self._set_border("empty")
|
|
self.report.emit("Empty {} name ..".format(
|
|
"product" if AYON_SERVER_ENABLED else "subset"
|
|
))
|
|
|
|
def as_exists(self):
|
|
self._set_border("exists")
|
|
self.report.emit("Existing {}, appending next version.".format(
|
|
"product" if AYON_SERVER_ENABLED else "subset"
|
|
))
|
|
|
|
def as_new(self):
|
|
self._set_border("new")
|
|
self.report.emit("New {}, creating first version.".format(
|
|
"product" if AYON_SERVER_ENABLED else "subset"
|
|
))
|
|
|
|
def _set_border(self, status):
|
|
qcolor, style = self.colors[status]
|
|
self.animation.setEndValue(qcolor)
|
|
self.setStyleSheet(style)
|
|
|
|
def _get_status_color(self):
|
|
return self._status_color
|
|
|
|
def _set_status_color(self, color):
|
|
self._status_color = color
|
|
self.setStyleSheet("border-color: %s;" % color.name())
|
|
|
|
status_color = QtCore.Property(
|
|
QtGui.QColor, _get_status_color, _set_status_color
|
|
)
|
|
|
|
|
|
class FamilyDescriptionWidget(QtWidgets.QWidget):
|
|
"""A family description widget.
|
|
|
|
Shows a family icon, family name and a help description.
|
|
Used in creator header.
|
|
|
|
_________________
|
|
| ____ |
|
|
| |icon| FAMILY |
|
|
| |____| help |
|
|
|_________________|
|
|
|
|
"""
|
|
|
|
SIZE = 35
|
|
|
|
def __init__(self, parent=None):
|
|
super(FamilyDescriptionWidget, self).__init__(parent=parent)
|
|
|
|
icon_label = QtWidgets.QLabel(self)
|
|
icon_label.setSizePolicy(
|
|
QtWidgets.QSizePolicy.Maximum,
|
|
QtWidgets.QSizePolicy.Maximum
|
|
)
|
|
|
|
# Add 4 pixel padding to avoid icon being cut off
|
|
icon_label.setFixedWidth(self.SIZE + 4)
|
|
icon_label.setFixedHeight(self.SIZE + 4)
|
|
|
|
label_layout = QtWidgets.QVBoxLayout()
|
|
label_layout.setSpacing(0)
|
|
|
|
family_label = QtWidgets.QLabel(self)
|
|
family_label.setObjectName("CreatorFamilyLabel")
|
|
family_label.setAlignment(QtCore.Qt.AlignBottom | QtCore.Qt.AlignLeft)
|
|
|
|
help_label = QtWidgets.QLabel(self)
|
|
help_label.setAlignment(QtCore.Qt.AlignTop | QtCore.Qt.AlignLeft)
|
|
|
|
label_layout.addWidget(family_label)
|
|
label_layout.addWidget(help_label)
|
|
|
|
layout = QtWidgets.QHBoxLayout(self)
|
|
layout.setContentsMargins(0, 0, 0, 0)
|
|
layout.setSpacing(5)
|
|
layout.addWidget(icon_label)
|
|
layout.addLayout(label_layout)
|
|
|
|
self._help_label = help_label
|
|
self._family_label = family_label
|
|
self._icon_label = icon_label
|
|
|
|
def set_item(self, creator_plugin):
|
|
"""Update elements to display information of a family item.
|
|
|
|
Args:
|
|
item (dict): A family item as registered with name, help and icon
|
|
|
|
Returns:
|
|
None
|
|
|
|
"""
|
|
if not creator_plugin:
|
|
self._icon_label.setPixmap(None)
|
|
self._family_label.setText("")
|
|
self._help_label.setText("")
|
|
return
|
|
|
|
# Support a font-awesome icon
|
|
icon_name = getattr(creator_plugin, "icon", None) or "info-circle"
|
|
try:
|
|
icon = qtawesome.icon("fa.{}".format(icon_name), color="white")
|
|
pixmap = icon.pixmap(self.SIZE, self.SIZE)
|
|
except Exception:
|
|
print("BUG: Couldn't load icon \"fa.{}\"".format(str(icon_name)))
|
|
# Create transparent pixmap
|
|
pixmap = QtGui.QPixmap()
|
|
pixmap.fill(QtCore.Qt.transparent)
|
|
pixmap = pixmap.scaled(self.SIZE, self.SIZE)
|
|
|
|
# Parse a clean line from the Creator's docstring
|
|
docstring = inspect.getdoc(creator_plugin)
|
|
creator_help = docstring.splitlines()[0] if docstring else ""
|
|
|
|
self._icon_label.setPixmap(pixmap)
|
|
self._family_label.setText(creator_plugin.family)
|
|
self._help_label.setText(creator_help)
|