added the view after uploading the file

This commit is contained in:
VanillaHellen 2021-01-18 16:10:17 +01:00
parent 98c1768d4f
commit a4b04c7c8f

View File

@ -23,7 +23,7 @@ def files(path):
yield file
def save_input(oldpath):
# make timestampt the filename, so it wouln't overwrite
# add timestampt the filename, so it wouln't overwrite
timestamp = str(int(time.time()))
filename = timestamp + '.' + oldpath.split('.')[-1]
newpath = inputFilePath + '\\' + filename
@ -71,13 +71,29 @@ class LibraryTableButtons(QWidget):
class LibraryTable(QTableWidget):
def __init__(self, type, parent=None):
def __init__(self, type, singleFilePath = None, parent = None):
QTableWidget.__init__(self)
self.fillTable(type)
self.fillTable(type, singleFilePath)
def fillTable(self, type):
def fillTable(self, type, singleFilePath = None):
self.setColumnCount(3)
if singleFilePath != None:
self.setRowCount(1)
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
filePath = inputFilePath
self.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch)
self.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch)
self.horizontalHeader().setSectionResizeMode(2, QHeaderView.ResizeToContents)
self.setItem(0,0,QTableWidgetItem(str(datetime.fromtimestamp(os.path.getmtime(singleFilePath)))))
self.setItem(0,1,QTableWidgetItem(str(os.path.basename(singleFilePath))))
self.setCellWidget(0,2,LibraryTableButtons(singleFilePath, self, type))
else:
if type == LIB_RAW:
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
filePath = inputFilePath
@ -170,7 +186,9 @@ class MainWindow(QMainWindow):
dialog.setFilter(QDir.Files)
if dialog.exec_():
file_path = dialog.selectedFiles()[0] # ['C:/Users/agatha/Desktop/SYI/VisionScore/win_venv/requirements.txt']
save_input(file_path)
newPath = save_input(file_path)
singleFileTable = LibraryTable(LIB_RAW, newPath)
self.setCentralWidget(singleFileTable)
def initUI(self):
self.setGeometry(0, 0, 600, 400)