Skip to content

Commit

Permalink
Set language via AJAX (#12785)
Browse files Browse the repository at this point in the history
* Set language via AJAX

* fix lint
  • Loading branch information
techknowlogick authored Sep 10, 2020
1 parent fcc410c commit 33ac0cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/base/footer_content.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<div class="ui language bottom floating slide up dropdown link item">
<i class="world icon"></i>
<div class="text">{{.LangName}}</div>
<div class="menu">
<div class="menu language-menu">
{{range .AllLangs}}
<a lang="{{.Lang}}" class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq $.Lang .Lang}}active selected{{end}}">{{.Name}}</a>
{{end}}
</div>
</div>
Expand Down
8 changes: 8 additions & 0 deletions web_src/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2314,6 +2314,7 @@ $(document).ready(async () => {
$('.delete-button').on('click', showDeletePopup);
$('.add-all-button').on('click', showAddAllPopup);
$('.link-action').on('click', linkAction);
$('.language-menu a[lang]').on('click', linkLanguageAction);
$('.link-email-action').on('click', linkEmailAction);

$('.delete-branch-button').on('click', showDeletePopup);
Expand Down Expand Up @@ -2602,6 +2603,13 @@ function linkAction(e) {
});
}

function linkLanguageAction() {
const $this = $(this);
$.post($this.data('url')).always(() => {
window.location.reload();
});
}

function linkEmailAction(e) {
const $this = $(this);
$('#form-uid').val($this.data('uid'));
Expand Down

0 comments on commit 33ac0cc

Please sign in to comment.