Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • applications/knowledge-base/knowledgebase-front
  • HannaP/knowledgebase-front
  • novalore/knowledgebase-front
3 results
Show changes
Commits on Source (14)
...@@ -8,12 +8,15 @@ const chokidar = require('chokidar') ...@@ -8,12 +8,15 @@ const chokidar = require('chokidar')
//Set default language //Set default language
const default_lang = 'en' const default_lang = 'en'
const pugFile = './src/index.pug' const pugDir = './src'
const pugFile = `${pugDir}/index.pug`
//Set the translation directory //Set the translation directory
const dataDir = './translation' const dataDir = './translation'
const outDir = './www' const outDir = './www'
const paramFile = './src/config.json'
//Compile custom function //Compile custom function
async function compile() { async function compile() {
//Retrieve langues proposed //Retrieve langues proposed
...@@ -41,7 +44,7 @@ async function compile() { ...@@ -41,7 +44,7 @@ async function compile() {
) )
} }
const options = JSON.parse(await fs.readFile('./src/config.json', 'utf-8')) const options = JSON.parse(await fs.readFile(paramFile, 'utf-8'))
const pugFct = pug.compileFile(pugFile) const pugFct = pug.compileFile(pugFile)
await fs.mkdir(outDir, { recursive: true }) await fs.mkdir(outDir, { recursive: true })
...@@ -64,7 +67,7 @@ async function compile() { ...@@ -64,7 +67,7 @@ async function compile() {
compile().then(() => { compile().then(() => {
if (!process.argv.includes('-w') && !process.argv.includes('--watch')) return if (!process.argv.includes('-w') && !process.argv.includes('--watch')) return
console.log('watching for changes…') console.log('watching for changes…')
chokidar.watch([pugFile, dataDir]).on('change', editedFilePath => { chokidar.watch([`${pugDir}/**/*.pug`, `${dataDir}/**/*.yml`, paramFile]).on('change', editedFilePath => {
console.log(`\nchanged: ${editedFilePath}`) console.log(`\nchanged: ${editedFilePath}`)
compile() compile()
}) })
......
{ {
"name": "Coop-starter", "name": "coop-starter",
"version": "1.0.0", "version": "1.0.0",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"scss": "node-sass -w ./src/styles/index.scss -o ./www/styles/", "scss": "node-sass -w ./src/styles/index.scss -o ./www/styles/",
"pug": "node ./compile-pug.js -w", "pug": "node ./compile-pug.js -w",
"pugprod": "pug ./src/index.pug --out ./www/ --obj prod.json",
"copy-js": "cp ./src/scripts/*.js ./www/scripts/", "copy-js": "cp ./src/scripts/*.js ./www/scripts/",
"copy-fonts": "cp -R ./src/fonts ./www", "copy-fonts": "cp -R ./src/fonts ./www",
"copy-images": "cp -R ./src/images ./www", "copy-images": "cp -R ./src/images ./www",
......
- var __env = locals[process.env.ENV]
-
for(k in __env){
eval(`var ${k} = __env[${JSON.stringify(k)}]`);
}
...@@ -80,19 +80,19 @@ ...@@ -80,19 +80,19 @@
//- <p class="backlink"><i class='far fa-thumbs-down'></i>3</p> //- <p class="backlink"><i class='far fa-thumbs-down'></i>3</p>
//- </div> //- </div>
sib-display( //- sib-display(
bind-resources //- bind-resources
fields="" //- fields=""
nested-field="likes" //- nested-field="likes"
counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>" //- counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>"
) //- )
sib-display( //- sib-display(
bind-resources //- bind-resources
fields="" //- fields=""
nested-field="dislikes" //- nested-field="dislikes"
counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>" //- counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>"
) //- )
sib-display( sib-display(
bind-resources bind-resources
......
...@@ -2,10 +2,10 @@ head ...@@ -2,10 +2,10 @@ head
title CoopStarter title CoopStarter
meta(charset="utf-8") meta(charset="utf-8")
script(src="https://unpkg.com/@webcomponents/webcomponentsjs@1.2.7/webcomponents-loader.js") script(src="https://unpkg.com/@webcomponents/webcomponentsjs@1.2.7/webcomponents-loader.js")
script(type="module" src="https://unpkg.com/@startinblox/core") script(type="module" src="https://unpkg.com/@startinblox/core@0.9")
script(type="module" src="https://unpkg.com/@startinblox/router") script(type="module" src="https://unpkg.com/@startinblox/router@0.7")
script(type="module" src="https://unpkg.com/@startinblox/oidc") script(type="module" src="https://unpkg.com/@startinblox/oidc@0.8")
script(type="module" src="https://unpkg.com/@startinblox/component-conversation") script(type="module" src="https://unpkg.com/@startinblox/component-conversation@0.4")
script(src="https://kit.fontawesome.com/48014d2af3.js") script(src="https://kit.fontawesome.com/48014d2af3.js")
script(src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous") script(src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous")
script(src="/scripts/coopstarter.js") script(src="/scripts/coopstarter.js")
...@@ -17,4 +17,4 @@ head ...@@ -17,4 +17,4 @@ head
"mentorProfile": "http://happy-dev.fr/owl/#mentor_profile", "mentorProfile": "http://happy-dev.fr/owl/#mentor_profile",
"account": "http://happy-dev.fr/owl/#account" "account": "http://happy-dev.fr/owl/#account"
} }
\ No newline at end of file
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
naked naked
) )
.dropdownWrapper .dropdownWrapper
sib-display#mentor-account-picture.dropdownLabel( sib-display#user-account-picture.dropdownLabel(
bind-user bind-user
fields='account.picture', fields='account.picture',
widget-account.picture='cs-account-picture' widget-account.picture='cs-account-picture'
......
...@@ -80,19 +80,19 @@ ...@@ -80,19 +80,19 @@
//- <p class="backlink"><i class='far fa-thumbs-down'></i>3</p> //- <p class="backlink"><i class='far fa-thumbs-down'></i>3</p>
//- </div> //- </div>
sib-display( //- sib-display(
bind-resources //- bind-resources
fields="" //- fields=""
nested-field="likes" //- nested-field="likes"
counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>" //- counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>"
) //- )
sib-display( //- sib-display(
bind-resources //- bind-resources
fields="" //- fields=""
nested-field="dislikes" //- nested-field="dislikes"
counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>" //- counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>"
) //- )
sib-display( sib-display(
bind-resources bind-resources
......
...@@ -80,19 +80,19 @@ ...@@ -80,19 +80,19 @@
//- <p class="backlink"><i class='far fa-thumbs-down'></i>3</p> //- <p class="backlink"><i class='far fa-thumbs-down'></i>3</p>
//- </div> //- </div>
sib-display( //- sib-display(
bind-resources //- bind-resources
fields="" //- fields=""
nested-field="likes" //- nested-field="likes"
counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>" //- counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>"
) //- )
sib-display( //- sib-display(
bind-resources //- bind-resources
fields="" //- fields=""
nested-field="dislikes" //- nested-field="dislikes"
counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>" //- counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>"
) //- )
sib-display( sib-display(
bind-resources bind-resources
......
...@@ -374,6 +374,22 @@ function initFileUpload(){ ...@@ -374,6 +374,22 @@ function initFileUpload(){
} }
} }
/**
* Manage the like sender hidden form
* @param {*} event
* @param {*} userWhoSubmitLike
* @param {*} formSenderLike
*/
function fillSenderLike(userWhoSubmitLike, formSenderLike, currentResource) {
formSenderLike.querySelector(
"input[name='sender']"
).value = JSON.stringify({ "@id": userWhoSubmitLike });
formSenderLike.querySelector(
"input[name='receiver_object_id']"
).value = JSON.stringify({ "@id": currentResource });
receiver_object_id
}
/** /**
* For entrepreneur dashboard only : * For entrepreneur dashboard only :
* As we cannot have multiple imbricated filtering with the native sib-display, we manage it manually. * As we cannot have multiple imbricated filtering with the native sib-display, we manage it manually.
...@@ -402,11 +418,6 @@ function addProperFilterToSearchComponents(targetId) { ...@@ -402,11 +418,6 @@ function addProperFilterToSearchComponents(targetId) {
`input[name="name_keyword"]` `input[name="name_keyword"]`
); );
let keyword_submit = baseElement.querySelectorAll(" .keyword_submit")[0];
let keyword_hidden_fields = baseElement.querySelectorAll(
'hidden-widget[name="search_for_a_resource"] input'
);
if (keyword_field) { if (keyword_field) {
let keyword_submit = baseElement.querySelectorAll(" .keyword_submit")[0]; let keyword_submit = baseElement.querySelectorAll(" .keyword_submit")[0];
let keyword_hidden_fields = baseElement.querySelectorAll( let keyword_hidden_fields = baseElement.querySelectorAll(
...@@ -576,6 +587,8 @@ jQuery(document).ready(function($) { ...@@ -576,6 +587,8 @@ jQuery(document).ready(function($) {
linkDatasetToField(userAccountDataSrc, "improvement-dialog-form", "reviewer"); linkDatasetToField(userAccountDataSrc, "improvement-dialog-form", "reviewer");
linkDatasetToField(userAccountDataSrc, "refusal-dialog-form", "reviewer"); linkDatasetToField(userAccountDataSrc, "refusal-dialog-form", "reviewer");
linkDatasetToField(userAccountDataSrc, "change_status_request", "reviewer"); linkDatasetToField(userAccountDataSrc, "change_status_request", "reviewer");
// linkDatasetToField(userAccountDataSrc, "add-like", "sender");
// linkDatasetToField(userAccountDataSrc, "add-dislike", "sender");
//On form submission, we sometime have to refresh a list. //On form submission, we sometime have to refresh a list.
refreshList("resource-creation-form", "resources-history"); refreshList("resource-creation-form", "resources-history");
...@@ -634,6 +647,34 @@ jQuery(document).ready(function($) { ...@@ -634,6 +647,34 @@ jQuery(document).ready(function($) {
var userWhoSubmitReport = userAccountDataSrc.dataset.src var userWhoSubmitReport = userAccountDataSrc.dataset.src
var formBrokenLink = document.getElementById("report-broken-link-mentor"); var formBrokenLink = document.getElementById("report-broken-link-mentor");
fillReportBrokenLinkForm(event, userWhoSubmitReport, formBrokenLink); fillReportBrokenLinkForm(event, userWhoSubmitReport, formBrokenLink);
// Fill the hidden like-form
document.querySelector('sib-auth').getUser().then(data=> {
let targetFormLike = document.getElementById('add-like');
targetFormLike.addEventListener("populate", event => {
let resourceField = targetFormLike.querySelector(`input[name="sender"]`);
if (resourceField) {
resourceField.value = JSON.stringify(data);
resourceField.setAttribute(
"value",
JSON.stringify(data)
);
}
});
let targetFormDislike = document.getElementById('add-dislike');
targetFormDislike.addEventListener("populate", event => {
let resourceField = targetFormDislike.querySelector(`input[name="sender"]`);
if (resourceField) {
resourceField.value = JSON.stringify(data);
resourceField.setAttribute(
"value",
JSON.stringify(data)
);
}
});
})
}); });
//Init the form file behaviour //Init the form file behaviour
......
...@@ -768,7 +768,6 @@ footer#footer{ ...@@ -768,7 +768,6 @@ footer#footer{
background:var(--bg-block); background:var(--bg-block);
height: auto; height: auto;
box-shadow: 0 2px 10px 0 rgba(0,0,0,0.14); box-shadow: 0 2px 10px 0 rgba(0,0,0,0.14);
position: absolute;
padding-top: 2rem; padding-top: 2rem;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
......