added the view after uploading the file
This commit is contained in:
parent
98c1768d4f
commit
a4b04c7c8f
@ -23,7 +23,7 @@ def files(path):
|
|||||||
yield file
|
yield file
|
||||||
|
|
||||||
def save_input(oldpath):
|
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()))
|
timestamp = str(int(time.time()))
|
||||||
filename = timestamp + '.' + oldpath.split('.')[-1]
|
filename = timestamp + '.' + oldpath.split('.')[-1]
|
||||||
newpath = inputFilePath + '\\' + filename
|
newpath = inputFilePath + '\\' + filename
|
||||||
@ -71,36 +71,52 @@ class LibraryTableButtons(QWidget):
|
|||||||
|
|
||||||
class LibraryTable(QTableWidget):
|
class LibraryTable(QTableWidget):
|
||||||
|
|
||||||
def __init__(self, type, parent=None):
|
def __init__(self, type, singleFilePath = None, parent = None):
|
||||||
QTableWidget.__init__(self)
|
QTableWidget.__init__(self)
|
||||||
self.fillTable(type)
|
self.fillTable(type, singleFilePath)
|
||||||
|
|
||||||
def fillTable(self, type):
|
def fillTable(self, type, singleFilePath = None):
|
||||||
self.setColumnCount(3)
|
self.setColumnCount(3)
|
||||||
|
|
||||||
if type == LIB_RAW:
|
if singleFilePath != None:
|
||||||
|
self.setRowCount(1)
|
||||||
|
|
||||||
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
|
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
|
||||||
filePath = inputFilePath
|
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:
|
else:
|
||||||
self.setHorizontalHeaderLabels(['Creation date', 'Filename', 'Options'])
|
if type == LIB_RAW:
|
||||||
filePath = outputFilePath
|
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
|
||||||
|
filePath = inputFilePath
|
||||||
|
else:
|
||||||
|
self.setHorizontalHeaderLabels(['Creation date', 'Filename', 'Options'])
|
||||||
|
filePath = outputFilePath
|
||||||
|
|
||||||
self.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch)
|
self.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch)
|
||||||
self.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch)
|
self.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch)
|
||||||
self.horizontalHeader().setSectionResizeMode(2, QHeaderView.ResizeToContents)
|
self.horizontalHeader().setSectionResizeMode(2, QHeaderView.ResizeToContents)
|
||||||
|
|
||||||
dates = []
|
dates = []
|
||||||
names = []
|
names = []
|
||||||
for index, file in enumerate(files(filePath)):
|
for index, file in enumerate(files(filePath)):
|
||||||
dates.append(QTableWidgetItem(str(datetime.fromtimestamp(os.path.getmtime(filePath + '/' + file)))))
|
dates.append(QTableWidgetItem(str(datetime.fromtimestamp(os.path.getmtime(filePath + '/' + file)))))
|
||||||
names.append(QTableWidgetItem(str(file)))
|
names.append(QTableWidgetItem(str(file)))
|
||||||
|
|
||||||
self.setRowCount(len(dates))
|
self.setRowCount(len(dates))
|
||||||
|
|
||||||
for index, date in enumerate(dates):
|
for index, date in enumerate(dates):
|
||||||
self.setItem(index,0,date)
|
self.setItem(index,0,date)
|
||||||
self.setItem(index,1,names[index])
|
self.setItem(index,1,names[index])
|
||||||
self.setCellWidget(index,2,LibraryTableButtons(filePath + '\\' + names[index].text(), self, type))
|
self.setCellWidget(index,2,LibraryTableButtons(filePath + '\\' + names[index].text(), self, type))
|
||||||
|
|
||||||
|
|
||||||
class formatHelp(QLabel):
|
class formatHelp(QLabel):
|
||||||
@ -170,7 +186,9 @@ class MainWindow(QMainWindow):
|
|||||||
dialog.setFilter(QDir.Files)
|
dialog.setFilter(QDir.Files)
|
||||||
if dialog.exec_():
|
if dialog.exec_():
|
||||||
file_path = dialog.selectedFiles()[0] # ['C:/Users/agatha/Desktop/SYI/VisionScore/win_venv/requirements.txt']
|
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):
|
def initUI(self):
|
||||||
self.setGeometry(0, 0, 600, 400)
|
self.setGeometry(0, 0, 600, 400)
|
||||||
|
Loading…
Reference in New Issue
Block a user