mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
update file list angular 2
This commit is contained in:
parent
590d3f7fe2
commit
d7c1c4bc4c
@ -1,6 +1,6 @@
|
|||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<file-upload accept="{{accept}}" droppable="{{droppable}}" target="{{target}}" multi="false" >Choose File</file-upload>
|
<file-upload accept="{{accept}}" droppable="{{droppable}}" target="{{target}}" multi="false" ></file-upload>
|
||||||
</div>
|
</div>
|
||||||
<div >
|
<div >
|
||||||
<alfresco-file-list></alfresco-file-list>
|
<alfresco-file-list></alfresco-file-list>
|
||||||
|
@ -55,10 +55,10 @@
|
|||||||
top: calc(50% - 8px);
|
top: calc(50% - 8px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.iron-list ul { list-style-type: none; overflow: hidden; margin:10px}
|
ul { list-style-type: none; overflow: hidden; margin:10px}
|
||||||
.iron-list ul li div.text{ float:left; text-align: left;height: 55px }
|
ul li div.text{ float:left; text-align: left;height: 55px }
|
||||||
.iron-list ul li div.folder-container{ float:left; width: 70px;text-align: left ;height: 55px}
|
ul li div.folder-container{ float:left; width: 70px;text-align: left ;height: 55px}
|
||||||
.iron-list ul li:hover { background: #eeeeee; height: 55px}
|
ul li:hover { background: #eeeeee; height: 55px}
|
||||||
.file{
|
.file{
|
||||||
width: 52px;
|
width: 52px;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
@ -88,6 +88,32 @@
|
|||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.breadcrumb {
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-left: 11px;
|
||||||
|
height: 28px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folder-breadcrumb-img{
|
||||||
|
float: left;
|
||||||
|
text-align: left;
|
||||||
|
height: 15px;
|
||||||
|
padding: 0px 10px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folder-breadcrumb-text{
|
||||||
|
float: left;
|
||||||
|
text-align: left;
|
||||||
|
height: 25px;
|
||||||
|
padding: 0px 10px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folder-breadcrumb-container{
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
paper-dropdown-menu.custom {
|
paper-dropdown-menu.custom {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
--paper-input-container-label: {
|
--paper-input-container-label: {
|
||||||
@ -108,11 +134,22 @@
|
|||||||
display: none;
|
display: none;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
<dom-module id="alfresco-file-list">
|
<dom-module id="alfresco-file-list">
|
||||||
<template>
|
<template>
|
||||||
|
<div class="breadcrumb">
|
||||||
|
<template is="dom-repeat" items="{{breadcrumbs}}">
|
||||||
|
<div class="folder-breadcrumb-container">
|
||||||
|
<img class="folder-breadcrumb-img" src="img/folder.svg">
|
||||||
|
|
||||||
|
<div class="folder-breadcrumb-text">[[item]]</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
<!-- Main List for the items -->
|
<!-- Main List for the items -->
|
||||||
<iron-list id="itemsList" items="{{data}}" selected-items="{{selectedItems}}" selection-enabled>
|
<iron-list id="itemsList" items="{{data}}" selected-items="{{selectedItems}}" selection-enabled>
|
||||||
<template>
|
<template>
|
||||||
@ -180,12 +217,22 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
goToFolder: function (event) {
|
goToFolder: function (event) {
|
||||||
var slug= event.model.item.location.site + '/' + event.model.item.location.container + '/' + event.model.item.fileName
|
this.container = event.model.item.location.container;
|
||||||
console.log('click folder'+ this.baseUrl());
|
var path = event.model.item.location.path !== '/' ? (event.model.item.location.path + '/' ) : '/';
|
||||||
|
var relativePath = this.container + path + event.model.item.fileName;
|
||||||
|
var slug = event.model.item.location.site + '/' + relativePath;
|
||||||
|
this.breadcrumbs = relativePath.split('/');
|
||||||
|
console.log('event.model.item.location.path' + event.model.item.location.path);
|
||||||
|
console.log('event.model.item.fileName' + event.model.item.fileName);
|
||||||
|
console.log('event.model.item.location.site' + event.model.item.location.site);
|
||||||
|
|
||||||
|
console.log('relativePath' + relativePath);
|
||||||
|
console.log('this.breadcrumbs' + this.breadcrumbs);
|
||||||
this.fetchFolderFolder(slug);
|
this.fetchFolderFolder(slug);
|
||||||
},
|
},
|
||||||
|
|
||||||
ready: function() {
|
ready: function() {
|
||||||
|
this.breadcrumbs = ['documentLibrary'];
|
||||||
var initialFolder = 'swsdp/documentLibrary';
|
var initialFolder = 'swsdp/documentLibrary';
|
||||||
this.fetchFolderFolder(initialFolder);
|
this.fetchFolderFolder(initialFolder);
|
||||||
var self = this;
|
var self = this;
|
||||||
@ -208,6 +255,7 @@
|
|||||||
xhr.addEventListener("error", error);
|
xhr.addEventListener("error", error);
|
||||||
|
|
||||||
xhr.open("GET", (this.baseUrl() + slug));
|
xhr.open("GET", (this.baseUrl() + slug));
|
||||||
|
xhr.withCredentials = true;
|
||||||
xhr.setRequestHeader("Authorization", 'Basic ' + btoa('admin:admin'));
|
xhr.setRequestHeader("Authorization", 'Basic ' + btoa('admin:admin'));
|
||||||
xhr.send();
|
xhr.send();
|
||||||
},
|
},
|
||||||
|
74
react-app/.idea/workspace.xml
generated
74
react-app/.idea/workspace.xml
generated
@ -56,8 +56,8 @@
|
|||||||
<file leaf-file-name="alfresco-file-list.html" pinned="false" current-in-tab="true">
|
<file leaf-file-name="alfresco-file-list.html" pinned="false" current-in-tab="true">
|
||||||
<entry file="file://$PROJECT_DIR$/webcomponents/alfresco-file-list/src/alfresco-file-list.html">
|
<entry file="file://$PROJECT_DIR$/webcomponents/alfresco-file-list/src/alfresco-file-list.html">
|
||||||
<provider selected="true" editor-type-id="text-editor">
|
<provider selected="true" editor-type-id="text-editor">
|
||||||
<state relative-caret-position="175">
|
<state relative-caret-position="55">
|
||||||
<caret line="151" column="8" selection-start-line="151" selection-start-column="8" selection-end-line="151" selection-end-column="12" />
|
<caret line="143" column="61" selection-start-line="0" selection-start-column="0" selection-end-line="269" selection-end-column="0" />
|
||||||
<folding />
|
<folding />
|
||||||
</state>
|
</state>
|
||||||
</provider>
|
</provider>
|
||||||
@ -123,7 +123,7 @@
|
|||||||
<ConfirmationsSetting value="0" id="Remove" />
|
<ConfirmationsSetting value="0" id="Remove" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectView">
|
<component name="ProjectView">
|
||||||
<navigator currentView="ProjectPane" proportions="" version="1">
|
<navigator proportions="" version="1">
|
||||||
<flattenPackages />
|
<flattenPackages />
|
||||||
<showMembers />
|
<showMembers />
|
||||||
<showModules />
|
<showModules />
|
||||||
@ -136,63 +136,7 @@
|
|||||||
<manualOrder />
|
<manualOrder />
|
||||||
<foldersAlwaysOnTop value="true" />
|
<foldersAlwaysOnTop value="true" />
|
||||||
</navigator>
|
</navigator>
|
||||||
<panes>
|
<panes />
|
||||||
<pane id="ProjectPane">
|
|
||||||
<subPane>
|
|
||||||
<PATH>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
</PATH>
|
|
||||||
<PATH>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
</PATH>
|
|
||||||
<PATH>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="webcomponents" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
</PATH>
|
|
||||||
<PATH>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="react-app" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="webcomponents" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
<PATH_ELEMENT>
|
|
||||||
<option name="myItemId" value="file-upload" />
|
|
||||||
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
||||||
</PATH_ELEMENT>
|
|
||||||
</PATH>
|
|
||||||
</subPane>
|
|
||||||
</pane>
|
|
||||||
<pane id="Scratches" />
|
|
||||||
<pane id="Scope" />
|
|
||||||
<pane id="PackagesPane" />
|
|
||||||
</panes>
|
|
||||||
</component>
|
</component>
|
||||||
<component name="PropertiesComponent">
|
<component name="PropertiesComponent">
|
||||||
<property name="aspect.path.notification.shown" value="true" />
|
<property name="aspect.path.notification.shown" value="true" />
|
||||||
@ -623,15 +567,15 @@
|
|||||||
<workItem from="1459961481615" duration="247000" />
|
<workItem from="1459961481615" duration="247000" />
|
||||||
<workItem from="1460028311714" duration="10383000" />
|
<workItem from="1460028311714" duration="10383000" />
|
||||||
<workItem from="1460053854983" duration="3523000" />
|
<workItem from="1460053854983" duration="3523000" />
|
||||||
<workItem from="1460113292902" duration="160000" />
|
<workItem from="1460113292902" duration="599000" />
|
||||||
</task>
|
</task>
|
||||||
<servers />
|
<servers />
|
||||||
</component>
|
</component>
|
||||||
<component name="TimeTrackingManager">
|
<component name="TimeTrackingManager">
|
||||||
<option name="totallyTimeSpent" value="30908000" />
|
<option name="totallyTimeSpent" value="31347000" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ToolWindowManager">
|
<component name="ToolWindowManager">
|
||||||
<frame x="0" y="23" width="1440" height="803" extended-state="0" />
|
<frame x="0" y="23" width="1440" height="803" extended-state="1" />
|
||||||
<editor active="true" />
|
<editor active="true" />
|
||||||
<layout>
|
<layout>
|
||||||
<window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
<window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
||||||
@ -992,8 +936,8 @@
|
|||||||
</entry>
|
</entry>
|
||||||
<entry file="file://$PROJECT_DIR$/webcomponents/alfresco-file-list/src/alfresco-file-list.html">
|
<entry file="file://$PROJECT_DIR$/webcomponents/alfresco-file-list/src/alfresco-file-list.html">
|
||||||
<provider selected="true" editor-type-id="text-editor">
|
<provider selected="true" editor-type-id="text-editor">
|
||||||
<state relative-caret-position="175">
|
<state relative-caret-position="55">
|
||||||
<caret line="151" column="8" selection-start-line="151" selection-start-column="8" selection-end-line="151" selection-end-column="12" />
|
<caret line="143" column="61" selection-start-line="0" selection-start-column="0" selection-end-line="269" selection-end-column="0" />
|
||||||
<folding />
|
<folding />
|
||||||
</state>
|
</state>
|
||||||
</provider>
|
</provider>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user