# Conflicts: # app/views/users/get_user_info.json.jbuilderpull/313/head
| @@ -1,136 +1,137 @@ | |||
| //= require rails-ujs | |||
| //= require activestorage | |||
| //= require turbolinks | |||
| //= require jquery3 | |||
| //= require popper | |||
| //= require bootstrap-sprockets | |||
| //= require jquery.validate.min | |||
| //= require additional-methods.min | |||
| //= require bootstrap-notify | |||
| //= require jquery.cookie.min | |||
| //= require select2 | |||
| //= require moment.min | |||
| //= require jquery.cxselect | |||
| //= require bootstrap-datepicker | |||
| //= require bootstrap-datetimepicker | |||
| //= require bootstrap.viewer | |||
| //= require jquery.mloading | |||
| //= require jquery-confirm.min | |||
| //= require common | |||
| //= require echarts | |||
| //= require codemirror/lib/codemirror | |||
| //= require codemirror/mode/shell/shell | |||
| //= require editormd/editormd | |||
| //= require editormd/languages/zh-tw | |||
| //= require dragula/dragula | |||
| //= require_tree ./i18n | |||
| //= require_tree ./admins | |||
| $.ajaxSetup({ | |||
| beforeSend: function(xhr) { | |||
| xhr.setRequestHeader('X-CSRF-Token', $('meta[name="csrf-token"]').attr('content')); | |||
| } | |||
| }); | |||
| // ******** select2 global config ******** | |||
| $.fn.select2.defaults.set('theme', 'bootstrap4'); | |||
| $.fn.select2.defaults.set('language', 'zh-CN'); | |||
| Turbolinks.setProgressBarDelay(200); | |||
| $.notifyDefaults({ | |||
| type: 'success', | |||
| z_index: 9999, | |||
| delay: 2000 | |||
| }); | |||
| function show_success_flash(){ | |||
| $.notify({ | |||
| message: '操作成功' | |||
| },{ | |||
| type: 'success' | |||
| }); | |||
| } | |||
| $(document).on('turbolinks:load', function(){ | |||
| $('[data-toggle="tooltip"]').tooltip({ trigger : 'hover' }); | |||
| $('[data-toggle="popover"]').popover(); | |||
| // 图片查看大图 | |||
| $('img.preview-image').bootstrapViewer(); | |||
| // flash alert提示框自动关闭 | |||
| if($('.admin-alert-container .alert').length > 0){ | |||
| setTimeout(function(){ | |||
| $('.admin-alert-container .alert:not(.alert-danger)').alert('close'); | |||
| }, 2000); | |||
| setTimeout(function(){ | |||
| $('.admin-alert-container .alert.alert-danger').alert('close'); | |||
| }, 5000); | |||
| } | |||
| }); | |||
| $(document).on("turbolinks:before-cache", function () { | |||
| $('[data-toggle="tooltip"]').tooltip('hide'); | |||
| $('[data-toggle="popover"]').popover('hide'); | |||
| }); | |||
| // var progressBar = new Turbolinks.ProgressBar(); | |||
| // $(document).on('ajax:send', function(event){ | |||
| // console.log('ajax send', event); | |||
| // progressBar.setValue(0) | |||
| // progressBar.show() | |||
| // }); | |||
| // | |||
| // $(document).on('ajax:complete', function(event){ | |||
| // console.log('ajax complete', event); | |||
| // progressBar.setValue(1) | |||
| // progressBar.hide() // 分页时不触发,奇怪 | |||
| // }); | |||
| // $(document).on('ajax:success', function(event){ | |||
| // console.log('ajax success', event); | |||
| // }); | |||
| // $(document).on('ajax:error', function(event){ | |||
| // console.log('ajax error', event); | |||
| // }); | |||
| $(function () { | |||
| }); | |||
| $(document).on('turbolinks:load', function() { | |||
| $('.logo-item-left').on("change", 'input[type="file"]', function () { | |||
| var $fileInput = $(this); | |||
| var file = this.files[0]; | |||
| var imageType = /image.*/; | |||
| if (file && file.type.match(imageType)) { | |||
| var reader = new FileReader(); | |||
| reader.onload = function () { | |||
| var $box = $fileInput.parent(); | |||
| $box.find('img').attr('src', reader.result).css('display', 'block'); | |||
| $box.addClass('has-img'); | |||
| }; | |||
| reader.readAsDataURL(file); | |||
| } else { | |||
| } | |||
| }); | |||
| $('.attachment-item-left').on("change", 'input[type="file"]', function () { | |||
| var $fileInput = $(this); | |||
| var file = this.files[0]; | |||
| var imageType = /image.*/; | |||
| if (file && file.type.match(imageType)) { | |||
| var reader = new FileReader(); | |||
| reader.onload = function () { | |||
| var $box = $fileInput.parent(); | |||
| $box.find('img').attr('src', reader.result).css('display', 'block'); | |||
| $box.addClass('has-img'); | |||
| }; | |||
| reader.readAsDataURL(file); | |||
| } else { | |||
| } | |||
| }); | |||
| //= require rails-ujs | |||
| //= require activestorage | |||
| //= require turbolinks | |||
| //= require jquery3 | |||
| //= require popper | |||
| //= require bootstrap-sprockets | |||
| //= require jquery.validate.min | |||
| //= require additional-methods.min | |||
| //= require bootstrap-notify | |||
| //= require jquery.cookie.min | |||
| //= require select2 | |||
| //= require moment.min | |||
| //= require jquery.cxselect | |||
| //= require bootstrap-datepicker | |||
| //= require bootstrap-datetimepicker | |||
| //= require bootstrap.viewer | |||
| //= require bootstrap/bootstrap-toggle | |||
| //= require jquery.mloading | |||
| //= require jquery-confirm.min | |||
| //= require common | |||
| //= require echarts | |||
| //= require codemirror/lib/codemirror | |||
| //= require codemirror/mode/shell/shell | |||
| //= require editormd/editormd | |||
| //= require editormd/languages/zh-tw | |||
| //= require dragula/dragula | |||
| //= require_tree ./i18n | |||
| //= require_tree ./admins | |||
| $.ajaxSetup({ | |||
| beforeSend: function(xhr) { | |||
| xhr.setRequestHeader('X-CSRF-Token', $('meta[name="csrf-token"]').attr('content')); | |||
| } | |||
| }); | |||
| // ******** select2 global config ******** | |||
| $.fn.select2.defaults.set('theme', 'bootstrap4'); | |||
| $.fn.select2.defaults.set('language', 'zh-CN'); | |||
| Turbolinks.setProgressBarDelay(200); | |||
| $.notifyDefaults({ | |||
| type: 'success', | |||
| z_index: 9999, | |||
| delay: 2000 | |||
| }); | |||
| function show_success_flash(){ | |||
| $.notify({ | |||
| message: '操作成功' | |||
| },{ | |||
| type: 'success' | |||
| }); | |||
| } | |||
| $(document).on('turbolinks:load', function(){ | |||
| $('[data-toggle="tooltip"]').tooltip({ trigger : 'hover' }); | |||
| $('[data-toggle="popover"]').popover(); | |||
| // 图片查看大图 | |||
| $('img.preview-image').bootstrapViewer(); | |||
| // flash alert提示框自动关闭 | |||
| if($('.admin-alert-container .alert').length > 0){ | |||
| setTimeout(function(){ | |||
| $('.admin-alert-container .alert:not(.alert-danger)').alert('close'); | |||
| }, 2000); | |||
| setTimeout(function(){ | |||
| $('.admin-alert-container .alert.alert-danger').alert('close'); | |||
| }, 5000); | |||
| } | |||
| }); | |||
| $(document).on("turbolinks:before-cache", function () { | |||
| $('[data-toggle="tooltip"]').tooltip('hide'); | |||
| $('[data-toggle="popover"]').popover('hide'); | |||
| }); | |||
| // var progressBar = new Turbolinks.ProgressBar(); | |||
| // $(document).on('ajax:send', function(event){ | |||
| // console.log('ajax send', event); | |||
| // progressBar.setValue(0) | |||
| // progressBar.show() | |||
| // }); | |||
| // | |||
| // $(document).on('ajax:complete', function(event){ | |||
| // console.log('ajax complete', event); | |||
| // progressBar.setValue(1) | |||
| // progressBar.hide() // 分页时不触发,奇怪 | |||
| // }); | |||
| // $(document).on('ajax:success', function(event){ | |||
| // console.log('ajax success', event); | |||
| // }); | |||
| // $(document).on('ajax:error', function(event){ | |||
| // console.log('ajax error', event); | |||
| // }); | |||
| $(function () { | |||
| }); | |||
| $(document).on('turbolinks:load', function() { | |||
| $('.logo-item-left').on("change", 'input[type="file"]', function () { | |||
| var $fileInput = $(this); | |||
| var file = this.files[0]; | |||
| var imageType = /image.*/; | |||
| if (file && file.type.match(imageType)) { | |||
| var reader = new FileReader(); | |||
| reader.onload = function () { | |||
| var $box = $fileInput.parent(); | |||
| $box.find('img').attr('src', reader.result).css('display', 'block'); | |||
| $box.addClass('has-img'); | |||
| }; | |||
| reader.readAsDataURL(file); | |||
| } else { | |||
| } | |||
| }); | |||
| $('.attachment-item-left').on("change", 'input[type="file"]', function () { | |||
| var $fileInput = $(this); | |||
| var file = this.files[0]; | |||
| var imageType = /image.*/; | |||
| if (file && file.type.match(imageType)) { | |||
| var reader = new FileReader(); | |||
| reader.onload = function () { | |||
| var $box = $fileInput.parent(); | |||
| $box.find('img').attr('src', reader.result).css('display', 'block'); | |||
| $box.addClass('has-img'); | |||
| }; | |||
| reader.readAsDataURL(file); | |||
| } else { | |||
| } | |||
| }); | |||
| }) | |||
| @@ -0,0 +1,180 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap-toggle.js v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| +function ($) { | |||
| 'use strict'; | |||
| // TOGGLE PUBLIC CLASS DEFINITION | |||
| // ============================== | |||
| var Toggle = function (element, options) { | |||
| this.$element = $(element) | |||
| this.options = $.extend({}, this.defaults(), options) | |||
| this.render() | |||
| } | |||
| Toggle.VERSION = '2.2.0' | |||
| Toggle.DEFAULTS = { | |||
| on: 'On', | |||
| off: 'Off', | |||
| onstyle: 'primary', | |||
| offstyle: 'default', | |||
| size: 'normal', | |||
| style: '', | |||
| width: null, | |||
| height: null | |||
| } | |||
| Toggle.prototype.defaults = function() { | |||
| return { | |||
| on: this.$element.attr('data-on') || Toggle.DEFAULTS.on, | |||
| off: this.$element.attr('data-off') || Toggle.DEFAULTS.off, | |||
| onstyle: this.$element.attr('data-onstyle') || Toggle.DEFAULTS.onstyle, | |||
| offstyle: this.$element.attr('data-offstyle') || Toggle.DEFAULTS.offstyle, | |||
| size: this.$element.attr('data-size') || Toggle.DEFAULTS.size, | |||
| style: this.$element.attr('data-style') || Toggle.DEFAULTS.style, | |||
| width: this.$element.attr('data-width') || Toggle.DEFAULTS.width, | |||
| height: this.$element.attr('data-height') || Toggle.DEFAULTS.height | |||
| } | |||
| } | |||
| Toggle.prototype.render = function () { | |||
| this._onstyle = 'btn-' + this.options.onstyle | |||
| this._offstyle = 'btn-' + this.options.offstyle | |||
| var size = this.options.size === 'large' ? 'btn-lg' | |||
| : this.options.size === 'small' ? 'btn-sm' | |||
| : this.options.size === 'mini' ? 'btn-xs' | |||
| : '' | |||
| var $toggleOn = $('<label class="btn">').html(this.options.on) | |||
| .addClass(this._onstyle + ' ' + size) | |||
| var $toggleOff = $('<label class="btn">').html(this.options.off) | |||
| .addClass(this._offstyle + ' ' + size + ' active') | |||
| var $toggleHandle = $('<span class="toggle-handle btn btn-default">') | |||
| .addClass(size) | |||
| var $toggleGroup = $('<div class="toggle-group">') | |||
| .append($toggleOn, $toggleOff, $toggleHandle) | |||
| var $toggle = $('<div class="toggle btn" data-toggle="toggle">') | |||
| .addClass( this.$element.prop('checked') ? this._onstyle : this._offstyle+' off' ) | |||
| .addClass(size).addClass(this.options.style) | |||
| this.$element.wrap($toggle) | |||
| $.extend(this, { | |||
| $toggle: this.$element.parent(), | |||
| $toggleOn: $toggleOn, | |||
| $toggleOff: $toggleOff, | |||
| $toggleGroup: $toggleGroup | |||
| }) | |||
| this.$toggle.append($toggleGroup) | |||
| var width = this.options.width || Math.max($toggleOn.outerWidth(), $toggleOff.outerWidth())+($toggleHandle.outerWidth()/2) | |||
| var height = this.options.height || Math.max($toggleOn.outerHeight(), $toggleOff.outerHeight()) | |||
| $toggleOn.addClass('toggle-on') | |||
| $toggleOff.addClass('toggle-off') | |||
| this.$toggle.css({ width: width, height: height }) | |||
| if (this.options.height) { | |||
| $toggleOn.css('line-height', $toggleOn.height() + 'px') | |||
| $toggleOff.css('line-height', $toggleOff.height() + 'px') | |||
| } | |||
| this.update(true) | |||
| this.trigger(true) | |||
| } | |||
| Toggle.prototype.toggle = function () { | |||
| if (this.$element.prop('checked')) this.off() | |||
| else this.on() | |||
| } | |||
| Toggle.prototype.on = function (silent) { | |||
| if (this.$element.prop('disabled')) return false | |||
| this.$toggle.removeClass(this._offstyle + ' off').addClass(this._onstyle) | |||
| this.$element.prop('checked', true) | |||
| if (!silent) this.trigger() | |||
| } | |||
| Toggle.prototype.off = function (silent) { | |||
| if (this.$element.prop('disabled')) return false | |||
| this.$toggle.removeClass(this._onstyle).addClass(this._offstyle + ' off') | |||
| this.$element.prop('checked', false) | |||
| if (!silent) this.trigger() | |||
| } | |||
| Toggle.prototype.enable = function () { | |||
| this.$toggle.removeAttr('disabled') | |||
| this.$element.prop('disabled', false) | |||
| } | |||
| Toggle.prototype.disable = function () { | |||
| this.$toggle.attr('disabled', 'disabled') | |||
| this.$element.prop('disabled', true) | |||
| } | |||
| Toggle.prototype.update = function (silent) { | |||
| if (this.$element.prop('disabled')) this.disable() | |||
| else this.enable() | |||
| if (this.$element.prop('checked')) this.on(silent) | |||
| else this.off(silent) | |||
| } | |||
| Toggle.prototype.trigger = function (silent) { | |||
| this.$element.off('change.bs.toggle') | |||
| if (!silent) this.$element.change() | |||
| this.$element.on('change.bs.toggle', $.proxy(function() { | |||
| this.update() | |||
| }, this)) | |||
| } | |||
| Toggle.prototype.destroy = function() { | |||
| this.$element.off('change.bs.toggle') | |||
| this.$toggleGroup.remove() | |||
| this.$element.removeData('bs.toggle') | |||
| this.$element.unwrap() | |||
| } | |||
| // TOGGLE PLUGIN DEFINITION | |||
| // ======================== | |||
| function Plugin(option) { | |||
| return this.each(function () { | |||
| var $this = $(this) | |||
| var data = $this.data('bs.toggle') | |||
| var options = typeof option == 'object' && option | |||
| if (!data) $this.data('bs.toggle', (data = new Toggle(this, options))) | |||
| if (typeof option == 'string' && data[option]) data[option]() | |||
| }) | |||
| } | |||
| var old = $.fn.bootstrapToggle | |||
| $.fn.bootstrapToggle = Plugin | |||
| $.fn.bootstrapToggle.Constructor = Toggle | |||
| // TOGGLE NO CONFLICT | |||
| // ================== | |||
| $.fn.toggle.noConflict = function () { | |||
| $.fn.bootstrapToggle = old | |||
| return this | |||
| } | |||
| // TOGGLE DATA-API | |||
| // =============== | |||
| $(function() { | |||
| $('input[type=checkbox][data-toggle^=toggle]').bootstrapToggle() | |||
| }) | |||
| $(document).on('click.bs.toggle', 'div[data-toggle^=toggle]', function(e) { | |||
| var $checkbox = $(this).find('input[type=checkbox]') | |||
| $checkbox.bootstrapToggle('toggle') | |||
| e.preventDefault() | |||
| }) | |||
| }(jQuery); | |||
| @@ -0,0 +1,9 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap-toggle.js v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| +function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.toggle"),f="object"==typeof b&&b;e||d.data("bs.toggle",e=new c(this,f)),"string"==typeof b&&e[b]&&e[b]()})}var c=function(b,c){this.$element=a(b),this.options=a.extend({},this.defaults(),c),this.render()};c.VERSION="2.2.0",c.DEFAULTS={on:"On",off:"Off",onstyle:"primary",offstyle:"default",size:"normal",style:"",width:null,height:null},c.prototype.defaults=function(){return{on:this.$element.attr("data-on")||c.DEFAULTS.on,off:this.$element.attr("data-off")||c.DEFAULTS.off,onstyle:this.$element.attr("data-onstyle")||c.DEFAULTS.onstyle,offstyle:this.$element.attr("data-offstyle")||c.DEFAULTS.offstyle,size:this.$element.attr("data-size")||c.DEFAULTS.size,style:this.$element.attr("data-style")||c.DEFAULTS.style,width:this.$element.attr("data-width")||c.DEFAULTS.width,height:this.$element.attr("data-height")||c.DEFAULTS.height}},c.prototype.render=function(){this._onstyle="btn-"+this.options.onstyle,this._offstyle="btn-"+this.options.offstyle;var b="large"===this.options.size?"btn-lg":"small"===this.options.size?"btn-sm":"mini"===this.options.size?"btn-xs":"",c=a('<label class="btn">').html(this.options.on).addClass(this._onstyle+" "+b),d=a('<label class="btn">').html(this.options.off).addClass(this._offstyle+" "+b+" active"),e=a('<span class="toggle-handle btn btn-default">').addClass(b),f=a('<div class="toggle-group">').append(c,d,e),g=a('<div class="toggle btn" data-toggle="toggle">').addClass(this.$element.prop("checked")?this._onstyle:this._offstyle+" off").addClass(b).addClass(this.options.style);this.$element.wrap(g),a.extend(this,{$toggle:this.$element.parent(),$toggleOn:c,$toggleOff:d,$toggleGroup:f}),this.$toggle.append(f);var h=this.options.width||Math.max(c.outerWidth(),d.outerWidth())+e.outerWidth()/2,i=this.options.height||Math.max(c.outerHeight(),d.outerHeight());c.addClass("toggle-on"),d.addClass("toggle-off"),this.$toggle.css({width:h,height:i}),this.options.height&&(c.css("line-height",c.height()+"px"),d.css("line-height",d.height()+"px")),this.update(!0),this.trigger(!0)},c.prototype.toggle=function(){this.$element.prop("checked")?this.off():this.on()},c.prototype.on=function(a){return this.$element.prop("disabled")?!1:(this.$toggle.removeClass(this._offstyle+" off").addClass(this._onstyle),this.$element.prop("checked",!0),void(a||this.trigger()))},c.prototype.off=function(a){return this.$element.prop("disabled")?!1:(this.$toggle.removeClass(this._onstyle).addClass(this._offstyle+" off"),this.$element.prop("checked",!1),void(a||this.trigger()))},c.prototype.enable=function(){this.$toggle.removeAttr("disabled"),this.$element.prop("disabled",!1)},c.prototype.disable=function(){this.$toggle.attr("disabled","disabled"),this.$element.prop("disabled",!0)},c.prototype.update=function(a){this.$element.prop("disabled")?this.disable():this.enable(),this.$element.prop("checked")?this.on(a):this.off(a)},c.prototype.trigger=function(b){this.$element.off("change.bs.toggle"),b||this.$element.change(),this.$element.on("change.bs.toggle",a.proxy(function(){this.update()},this))},c.prototype.destroy=function(){this.$element.off("change.bs.toggle"),this.$toggleGroup.remove(),this.$element.removeData("bs.toggle"),this.$element.unwrap()};var d=a.fn.bootstrapToggle;a.fn.bootstrapToggle=b,a.fn.bootstrapToggle.Constructor=c,a.fn.toggle.noConflict=function(){return a.fn.bootstrapToggle=d,this},a(function(){a("input[type=checkbox][data-toggle^=toggle]").bootstrapToggle()}),a(document).on("click.bs.toggle","div[data-toggle^=toggle]",function(b){var c=a(this).find("input[type=checkbox]");c.bootstrapToggle("toggle"),b.preventDefault()})}(jQuery); | |||
| //# sourceMappingURL=bootstrap-toggle.min.js.map | |||
| @@ -0,0 +1 @@ | |||
| {"version":3,"file":"bootstrap-toggle.min.js","sources":["bootstrap-toggle.js"],"names":["$","Plugin","option","this","each","$this","data","options","Toggle","element","$element","extend","defaults","render","VERSION","DEFAULTS","on","off","onstyle","offstyle","size","style","width","height","prototype","attr","_onstyle","_offstyle","$toggleOn","html","addClass","$toggleOff","$toggleHandle","$toggleGroup","append","$toggle","prop","wrap","parent","Math","max","outerWidth","outerHeight","css","update","trigger","toggle","silent","removeClass","enable","removeAttr","disable","change","proxy","destroy","remove","removeData","unwrap","old","fn","bootstrapToggle","Constructor","noConflict","document","e","$checkbox","find","preventDefault","jQuery"],"mappings":"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"} | |||
| @@ -0,0 +1,180 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap2-toggle.js v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| +function ($) { | |||
| 'use strict'; | |||
| // TOGGLE PUBLIC CLASS DEFINITION | |||
| // ============================== | |||
| var Toggle = function (element, options) { | |||
| this.$element = $(element) | |||
| this.options = $.extend({}, this.defaults(), options) | |||
| this.render() | |||
| } | |||
| Toggle.VERSION = '2.2.0' | |||
| Toggle.DEFAULTS = { | |||
| on: 'On', | |||
| off: 'Off', | |||
| onstyle: 'primary', | |||
| offstyle: 'default', | |||
| size: 'normal', | |||
| style: '', | |||
| width: null, | |||
| height: null | |||
| } | |||
| Toggle.prototype.defaults = function() { | |||
| return { | |||
| on: this.$element.attr('data-on') || Toggle.DEFAULTS.on, | |||
| off: this.$element.attr('data-off') || Toggle.DEFAULTS.off, | |||
| onstyle: this.$element.attr('data-onstyle') || Toggle.DEFAULTS.onstyle, | |||
| offstyle: this.$element.attr('data-offstyle') || Toggle.DEFAULTS.offstyle, | |||
| size: this.$element.attr('data-size') || Toggle.DEFAULTS.size, | |||
| style: this.$element.attr('data-style') || Toggle.DEFAULTS.style, | |||
| width: this.$element.attr('data-width') || Toggle.DEFAULTS.width, | |||
| height: this.$element.attr('data-height') || Toggle.DEFAULTS.height | |||
| } | |||
| } | |||
| Toggle.prototype.render = function () { | |||
| this._onstyle = 'btn-' + this.options.onstyle | |||
| this._offstyle = 'btn-' + this.options.offstyle | |||
| var size = this.options.size === 'large' ? 'btn-large' | |||
| : this.options.size === 'small' ? 'btn-small' | |||
| : this.options.size === 'mini' ? 'btn-mini' | |||
| : '' | |||
| var $toggleOn = $('<label class="btn">').html(this.options.on) | |||
| .addClass(this._onstyle + ' ' + size) | |||
| var $toggleOff = $('<label class="btn">').html(this.options.off) | |||
| .addClass(this._offstyle + ' ' + size + ' active') | |||
| var $toggleHandle = $('<span class="toggle-handle btn btn-default">') | |||
| .addClass(size) | |||
| var $toggleGroup = $('<div class="toggle-group">') | |||
| .append($toggleOn, $toggleOff, $toggleHandle) | |||
| var $toggle = $('<div class="toggle btn" data-toggle="toggle">') | |||
| .addClass( this.$element.prop('checked') ? this._onstyle : this._offstyle+' off' ) | |||
| .addClass(size).addClass(this.options.style) | |||
| this.$element.wrap($toggle) | |||
| $.extend(this, { | |||
| $toggle: this.$element.parent(), | |||
| $toggleOn: $toggleOn, | |||
| $toggleOff: $toggleOff, | |||
| $toggleGroup: $toggleGroup | |||
| }) | |||
| this.$toggle.append($toggleGroup) | |||
| var width = this.options.width || Math.max($toggleOn.width(), $toggleOff.width())+($toggleHandle.outerWidth()/2) | |||
| var height = this.options.height || Math.max($toggleOn.height(), $toggleOff.height()) | |||
| $toggleOn.addClass('toggle-on') | |||
| $toggleOff.addClass('toggle-off') | |||
| this.$toggle.css({ width: width, height: height }) | |||
| if (this.options.height) { | |||
| $toggleOn.css('line-height', $toggleOn.height() + 'px') | |||
| $toggleOff.css('line-height', $toggleOff.height() + 'px') | |||
| } | |||
| this.update(true) | |||
| this.trigger(true) | |||
| } | |||
| Toggle.prototype.toggle = function () { | |||
| if (this.$element.prop('checked')) this.off() | |||
| else this.on() | |||
| } | |||
| Toggle.prototype.on = function (silent) { | |||
| if (this.$element.prop('disabled')) return false | |||
| this.$toggle.removeClass(this._offstyle + ' off').addClass(this._onstyle) | |||
| this.$element.prop('checked', true) | |||
| if (!silent) this.trigger() | |||
| } | |||
| Toggle.prototype.off = function (silent) { | |||
| if (this.$element.prop('disabled')) return false | |||
| this.$toggle.removeClass(this._onstyle).addClass(this._offstyle + ' off') | |||
| this.$element.prop('checked', false) | |||
| if (!silent) this.trigger() | |||
| } | |||
| Toggle.prototype.enable = function () { | |||
| this.$toggle.removeAttr('disabled') | |||
| this.$element.prop('disabled', false) | |||
| } | |||
| Toggle.prototype.disable = function () { | |||
| this.$toggle.attr('disabled', 'disabled') | |||
| this.$element.prop('disabled', true) | |||
| } | |||
| Toggle.prototype.update = function (silent) { | |||
| if (this.$element.prop('disabled')) this.disable() | |||
| else this.enable() | |||
| if (this.$element.prop('checked')) this.on(silent) | |||
| else this.off(silent) | |||
| } | |||
| Toggle.prototype.trigger = function (silent) { | |||
| this.$element.off('change.bs.toggle') | |||
| if (!silent) this.$element.change() | |||
| this.$element.on('change.bs.toggle', $.proxy(function() { | |||
| this.update() | |||
| }, this)) | |||
| } | |||
| Toggle.prototype.destroy = function() { | |||
| this.$element.off('change.bs.toggle') | |||
| this.$toggleGroup.remove() | |||
| this.$element.removeData('bs.toggle') | |||
| this.$element.unwrap() | |||
| } | |||
| // TOGGLE PLUGIN DEFINITION | |||
| // ======================== | |||
| function Plugin(option) { | |||
| return this.each(function () { | |||
| var $this = $(this) | |||
| var data = $this.data('bs.toggle') | |||
| var options = typeof option == 'object' && option | |||
| if (!data) $this.data('bs.toggle', (data = new Toggle(this, options))) | |||
| if (typeof option == 'string' && data[option]) data[option]() | |||
| }) | |||
| } | |||
| var old = $.fn.bootstrapToggle | |||
| $.fn.bootstrapToggle = Plugin | |||
| $.fn.bootstrapToggle.Constructor = Toggle | |||
| // TOGGLE NO CONFLICT | |||
| // ================== | |||
| $.fn.toggle.noConflict = function () { | |||
| $.fn.bootstrapToggle = old | |||
| return this | |||
| } | |||
| // TOGGLE DATA-API | |||
| // =============== | |||
| $(function() { | |||
| $('input[type=checkbox][data-toggle^=toggle]').bootstrapToggle() | |||
| }) | |||
| $(document).on('click.bs.toggle', 'div[data-toggle^=toggle]', function(e) { | |||
| var $checkbox = $(this).find('input[type=checkbox]') | |||
| $checkbox.bootstrapToggle('toggle') | |||
| e.preventDefault() | |||
| }) | |||
| }(jQuery); | |||
| @@ -0,0 +1,9 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap2-toggle.js v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| +function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.toggle"),f="object"==typeof b&&b;e||d.data("bs.toggle",e=new c(this,f)),"string"==typeof b&&e[b]&&e[b]()})}var c=function(b,c){this.$element=a(b),this.options=a.extend({},this.defaults(),c),this.render()};c.VERSION="2.2.0",c.DEFAULTS={on:"On",off:"Off",onstyle:"primary",offstyle:"default",size:"normal",style:"",width:null,height:null},c.prototype.defaults=function(){return{on:this.$element.attr("data-on")||c.DEFAULTS.on,off:this.$element.attr("data-off")||c.DEFAULTS.off,onstyle:this.$element.attr("data-onstyle")||c.DEFAULTS.onstyle,offstyle:this.$element.attr("data-offstyle")||c.DEFAULTS.offstyle,size:this.$element.attr("data-size")||c.DEFAULTS.size,style:this.$element.attr("data-style")||c.DEFAULTS.style,width:this.$element.attr("data-width")||c.DEFAULTS.width,height:this.$element.attr("data-height")||c.DEFAULTS.height}},c.prototype.render=function(){this._onstyle="btn-"+this.options.onstyle,this._offstyle="btn-"+this.options.offstyle;var b="large"===this.options.size?"btn-large":"small"===this.options.size?"btn-small":"mini"===this.options.size?"btn-mini":"",c=a('<label class="btn">').html(this.options.on).addClass(this._onstyle+" "+b),d=a('<label class="btn">').html(this.options.off).addClass(this._offstyle+" "+b+" active"),e=a('<span class="toggle-handle btn btn-default">').addClass(b),f=a('<div class="toggle-group">').append(c,d,e),g=a('<div class="toggle btn" data-toggle="toggle">').addClass(this.$element.prop("checked")?this._onstyle:this._offstyle+" off").addClass(b).addClass(this.options.style);this.$element.wrap(g),a.extend(this,{$toggle:this.$element.parent(),$toggleOn:c,$toggleOff:d,$toggleGroup:f}),this.$toggle.append(f);var h=this.options.width||Math.max(c.width(),d.width())+e.outerWidth()/2,i=this.options.height||Math.max(c.height(),d.height());c.addClass("toggle-on"),d.addClass("toggle-off"),this.$toggle.css({width:h,height:i}),this.options.height&&(c.css("line-height",c.height()+"px"),d.css("line-height",d.height()+"px")),this.update(!0),this.trigger(!0)},c.prototype.toggle=function(){this.$element.prop("checked")?this.off():this.on()},c.prototype.on=function(a){return this.$element.prop("disabled")?!1:(this.$toggle.removeClass(this._offstyle+" off").addClass(this._onstyle),this.$element.prop("checked",!0),void(a||this.trigger()))},c.prototype.off=function(a){return this.$element.prop("disabled")?!1:(this.$toggle.removeClass(this._onstyle).addClass(this._offstyle+" off"),this.$element.prop("checked",!1),void(a||this.trigger()))},c.prototype.enable=function(){this.$toggle.removeAttr("disabled"),this.$element.prop("disabled",!1)},c.prototype.disable=function(){this.$toggle.attr("disabled","disabled"),this.$element.prop("disabled",!0)},c.prototype.update=function(a){this.$element.prop("disabled")?this.disable():this.enable(),this.$element.prop("checked")?this.on(a):this.off(a)},c.prototype.trigger=function(b){this.$element.off("change.bs.toggle"),b||this.$element.change(),this.$element.on("change.bs.toggle",a.proxy(function(){this.update()},this))},c.prototype.destroy=function(){this.$element.off("change.bs.toggle"),this.$toggleGroup.remove(),this.$element.removeData("bs.toggle"),this.$element.unwrap()};var d=a.fn.bootstrapToggle;a.fn.bootstrapToggle=b,a.fn.bootstrapToggle.Constructor=c,a.fn.toggle.noConflict=function(){return a.fn.bootstrapToggle=d,this},a(function(){a("input[type=checkbox][data-toggle^=toggle]").bootstrapToggle()}),a(document).on("click.bs.toggle","div[data-toggle^=toggle]",function(b){var c=a(this).find("input[type=checkbox]");c.bootstrapToggle("toggle"),b.preventDefault()})}(jQuery); | |||
| //# sourceMappingURL=bootstrap2-toggle.min.js.map | |||
| @@ -0,0 +1 @@ | |||
| {"version":3,"file":"bootstrap2-toggle.min.js","sources":["bootstrap2-toggle.js"],"names":["$","Plugin","option","this","each","$this","data","options","Toggle","element","$element","extend","defaults","render","VERSION","DEFAULTS","on","off","onstyle","offstyle","size","style","width","height","prototype","attr","_onstyle","_offstyle","$toggleOn","html","addClass","$toggleOff","$toggleHandle","$toggleGroup","append","$toggle","prop","wrap","parent","Math","max","outerWidth","css","update","trigger","toggle","silent","removeClass","enable","removeAttr","disable","change","proxy","destroy","remove","removeData","unwrap","old","fn","bootstrapToggle","Constructor","noConflict","document","e","$checkbox","find","preventDefault","jQuery"],"mappings":"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"} | |||
| @@ -8,6 +8,7 @@ | |||
| @import "jquery.mloading"; | |||
| @import "jquery-confirm.min"; | |||
| @import "bootstrap-datetimepicker.min"; | |||
| @import "bootstrap/bootstrap-toggle.min"; | |||
| @import "codemirror/lib/codemirror"; | |||
| @import "editormd/css/editormd.min"; | |||
| @@ -0,0 +1,83 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap-toggle.css v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| .checkbox label .toggle, | |||
| .checkbox-inline .toggle { | |||
| margin-left: -20px; | |||
| margin-right: 5px; | |||
| } | |||
| .toggle { | |||
| position: relative; | |||
| overflow: hidden; | |||
| } | |||
| .toggle input[type="checkbox"] { | |||
| display: none; | |||
| } | |||
| .toggle-group { | |||
| position: absolute; | |||
| width: 200%; | |||
| top: 0; | |||
| bottom: 0; | |||
| left: 0; | |||
| transition: left 0.35s; | |||
| -webkit-transition: left 0.35s; | |||
| -moz-user-select: none; | |||
| -webkit-user-select: none; | |||
| } | |||
| .toggle.off .toggle-group { | |||
| left: -100%; | |||
| } | |||
| .toggle-on { | |||
| position: absolute; | |||
| top: 0; | |||
| bottom: 0; | |||
| left: 0; | |||
| right: 50%; | |||
| margin: 0; | |||
| border: 0; | |||
| border-radius: 0; | |||
| } | |||
| .toggle-off { | |||
| position: absolute; | |||
| top: 0; | |||
| bottom: 0; | |||
| left: 50%; | |||
| right: 0; | |||
| margin: 0; | |||
| border: 0; | |||
| border-radius: 0; | |||
| } | |||
| .toggle-handle { | |||
| position: relative; | |||
| margin: 0 auto; | |||
| padding-top: 0px; | |||
| padding-bottom: 0px; | |||
| height: 100%; | |||
| width: 0px; | |||
| border-width: 0 1px; | |||
| } | |||
| .toggle.btn { min-width: 59px; min-height: 34px; } | |||
| .toggle-on.btn { padding-right: 24px; } | |||
| .toggle-off.btn { padding-left: 24px; } | |||
| .toggle.btn-lg { min-width: 79px; min-height: 45px; } | |||
| .toggle-on.btn-lg { padding-right: 31px; } | |||
| .toggle-off.btn-lg { padding-left: 31px; } | |||
| .toggle-handle.btn-lg { width: 40px; } | |||
| .toggle.btn-sm { min-width: 50px; min-height: 30px;} | |||
| .toggle-on.btn-sm { padding-right: 20px; } | |||
| .toggle-off.btn-sm { padding-left: 20px; } | |||
| .toggle.btn-xs { min-width: 35px; min-height: 22px;} | |||
| .toggle-on.btn-xs { padding-right: 12px; } | |||
| .toggle-off.btn-xs { padding-left: 12px; } | |||
| @@ -0,0 +1,28 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap-toggle.css v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| .checkbox label .toggle,.checkbox-inline .toggle{margin-left:-20px;margin-right:5px} | |||
| .toggle{position:relative;overflow:hidden} | |||
| .toggle input[type=checkbox]{display:none} | |||
| .toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none} | |||
| .toggle.off .toggle-group{left:-100%} | |||
| .toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0} | |||
| .toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0} | |||
| .toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:0;border-width:0 1px} | |||
| .toggle.btn{min-width:59px;min-height:34px} | |||
| .toggle-on.btn{padding-right:24px} | |||
| .toggle-off.btn{padding-left:24px} | |||
| .toggle.btn-lg{min-width:79px;min-height:45px} | |||
| .toggle-on.btn-lg{padding-right:31px} | |||
| .toggle-off.btn-lg{padding-left:31px} | |||
| .toggle-handle.btn-lg{width:40px} | |||
| .toggle.btn-sm{min-width:50px;min-height:30px} | |||
| .toggle-on.btn-sm{padding-right:20px} | |||
| .toggle-off.btn-sm{padding-left:20px} | |||
| .toggle.btn-xs{min-width:35px;min-height:22px} | |||
| .toggle-on.btn-xs{padding-right:12px} | |||
| .toggle-off.btn-xs{padding-left:12px} | |||
| @@ -0,0 +1,85 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap2-toggle.css v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| label.checkbox .toggle, | |||
| label.checkbox.inline .toggle { | |||
| margin-left: -20px; | |||
| margin-right: 5px; | |||
| } | |||
| .toggle { | |||
| min-width: 40px; | |||
| height: 20px; | |||
| position: relative; | |||
| overflow: hidden; | |||
| } | |||
| .toggle input[type="checkbox"] { | |||
| display: none; | |||
| } | |||
| .toggle-group { | |||
| position: absolute; | |||
| width: 200%; | |||
| top: 0; | |||
| bottom: 0; | |||
| left: 0; | |||
| transition: left 0.35s; | |||
| -webkit-transition: left 0.35s; | |||
| -moz-user-select: none; | |||
| -webkit-user-select: none; | |||
| } | |||
| .toggle.off .toggle-group { | |||
| left: -100%; | |||
| } | |||
| .toggle-on { | |||
| position: absolute; | |||
| top: 0; | |||
| bottom: 0; | |||
| left: 0; | |||
| right: 50%; | |||
| margin: 0; | |||
| border: 0; | |||
| border-radius: 0; | |||
| } | |||
| .toggle-off { | |||
| position: absolute; | |||
| top: 0; | |||
| bottom: 0; | |||
| left: 50%; | |||
| right: 0; | |||
| margin: 0; | |||
| border: 0; | |||
| border-radius: 0; | |||
| } | |||
| .toggle-handle { | |||
| position: relative; | |||
| margin: 0 auto; | |||
| padding-top: 0px; | |||
| padding-bottom: 0px; | |||
| height: 100%; | |||
| width: 0px; | |||
| border-width: 0 1px; | |||
| } | |||
| .toggle-handle.btn-mini { | |||
| top: -1px; | |||
| } | |||
| .toggle.btn { min-width: 30px; } | |||
| .toggle-on.btn { padding-right: 24px; } | |||
| .toggle-off.btn { padding-left: 24px; } | |||
| .toggle.btn-large { min-width: 40px; } | |||
| .toggle-on.btn-large { padding-right: 35px; } | |||
| .toggle-off.btn-large { padding-left: 35px; } | |||
| .toggle.btn-small { min-width: 25px; } | |||
| .toggle-on.btn-small { padding-right: 20px; } | |||
| .toggle-off.btn-small { padding-left: 20px; } | |||
| .toggle.btn-mini { min-width: 20px; } | |||
| .toggle-on.btn-mini { padding-right: 12px; } | |||
| .toggle-off.btn-mini { padding-left: 12px; } | |||
| @@ -0,0 +1,28 @@ | |||
| /*! ======================================================================== | |||
| * Bootstrap Toggle: bootstrap2-toggle.css v2.2.0 | |||
| * http://www.bootstraptoggle.com | |||
| * ======================================================================== | |||
| * Copyright 2014 Min Hur, The New York Times Company | |||
| * Licensed under MIT | |||
| * ======================================================================== */ | |||
| label.checkbox .toggle,label.checkbox.inline .toggle{margin-left:-20px;margin-right:5px} | |||
| .toggle{min-width:40px;height:20px;position:relative;overflow:hidden} | |||
| .toggle input[type=checkbox]{display:none} | |||
| .toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none} | |||
| .toggle.off .toggle-group{left:-100%} | |||
| .toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0} | |||
| .toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0} | |||
| .toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:0;border-width:0 1px} | |||
| .toggle-handle.btn-mini{top:-1px} | |||
| .toggle.btn{min-width:30px} | |||
| .toggle-on.btn{padding-right:24px} | |||
| .toggle-off.btn{padding-left:24px} | |||
| .toggle.btn-large{min-width:40px} | |||
| .toggle-on.btn-large{padding-right:35px} | |||
| .toggle-off.btn-large{padding-left:35px} | |||
| .toggle.btn-small{min-width:25px} | |||
| .toggle-on.btn-small{padding-right:20px} | |||
| .toggle-off.btn-small{padding-left:20px} | |||
| .toggle.btn-mini{min-width:20px} | |||
| .toggle-on.btn-mini{padding-right:12px} | |||
| .toggle-off.btn-mini{padding-left:12px} | |||
| @@ -0,0 +1,22 @@ | |||
| class Admins::NpsController < Admins::BaseController | |||
| def index | |||
| @on_off_switch = EduSetting.get("nps-on-off-switch").to_s == 'true' | |||
| @user_nps = UserNp.joins(:user).order(created_at: :desc) | |||
| keyword = params[:keyword].to_s.strip.presence | |||
| if keyword | |||
| sql = 'CONCAT(users.lastname, users.firstname) LIKE :keyword OR users.nickname LIKE :keyword OR users.login LIKE :keyword OR users.mail LIKE :keyword OR users.phone LIKE :keyword' | |||
| @user_nps = @user_nps.where(sql, keyword: "%#{keyword}%") | |||
| end | |||
| @user_nps = paginate @user_nps.includes(:user) | |||
| end | |||
| def switch_change | |||
| edu_setting = EduSetting.find_by(name: "nps-on-off-switch") | |||
| if edu_setting.blank? | |||
| edu_setting = EduSetting.new(name: "nps-on-off-switch") | |||
| end | |||
| edu_setting.value = params[:switch].to_s | |||
| edu_setting.save | |||
| render_ok | |||
| end | |||
| end | |||
| @@ -277,11 +277,11 @@ class ApplicationController < ActionController::Base | |||
| end | |||
| end | |||
| # if !User.current.logged? && Rails.env.development? | |||
| # user = User.find 1 | |||
| # User.current = user | |||
| # start_user_session(user) | |||
| # end | |||
| if !User.current.logged? && Rails.env.development? | |||
| user = User.find 1 | |||
| User.current = user | |||
| start_user_session(user) | |||
| end | |||
| # 测试版前端需求 | |||
| @@ -0,0 +1,28 @@ | |||
| class NpsController < ApplicationController | |||
| def create | |||
| tip_exception "缺少参数" if params[:action_id].blank? | |||
| action_type ||= begin | |||
| case params[:action_id].to_s | |||
| when '0' then | |||
| 'close' | |||
| when '1' then | |||
| 'createIssue' | |||
| when '2' then | |||
| 'createPullRequest' | |||
| when '3' then | |||
| 'auditPullRequest' | |||
| when '4' then | |||
| 'forkProject' | |||
| when '5' then | |||
| 'createProject' | |||
| when '6' then | |||
| 'createOrganization' | |||
| else | |||
| "#{params[:action_type].to_s}" | |||
| end | |||
| end | |||
| UserNp.create(:action_id => params[:action_id], :action_type => "#{action_type}", :user_id => User.current.id, :score => params[:score].to_f, memo: params[:memo]) | |||
| render_ok | |||
| end | |||
| end | |||
| @@ -0,0 +1,2 @@ | |||
| module Admins::NpsHelper | |||
| end | |||
| @@ -0,0 +1,21 @@ | |||
| # == Schema Information | |||
| # | |||
| # Table name: user_nps | |||
| # | |||
| # id :integer not null, primary key | |||
| # user_id :integer | |||
| # action_type :string(255) | |||
| # action_id :integer | |||
| # score :float(24) | |||
| # memo :text(65535) | |||
| # created_at :datetime not null | |||
| # updated_at :datetime not null | |||
| # | |||
| # Indexes | |||
| # | |||
| # index_user_nps_on_user_id (user_id) | |||
| # | |||
| class UserNp < ApplicationRecord | |||
| belongs_to :user, optional: true | |||
| end | |||
| @@ -19,6 +19,9 @@ class Admins::UserQuery < ApplicationQuery | |||
| status = params[:status] | |||
| users = users.where(status: status) if status.present? | |||
| # 是否管理员 | |||
| users = users.where(admin: params[:admin]) if params[:admin].present? | |||
| # 职业 | |||
| users = users.joins(:user_extension).where(user_extensions: { identity: params[:identity] }) if params[:identity].present? | |||
| @@ -0,0 +1,34 @@ | |||
| <table class="table table-hover users-list-table"> | |||
| <thead class="thead-light"> | |||
| <tr> | |||
| <th width="5%">序号</th> | |||
| <th width="10%" class="text-left">真实姓名</th> | |||
| <th width="15%">提交时间</th> | |||
| <th width="15%"><%= sort_tag('最后登录', name: 'last_login_on', path: admins_users_path) %></th> | |||
| <th width="10%">评分</th> | |||
| <th width="45%">意见反馈</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <% if user_nps.present? %> | |||
| <% user_nps.each_with_index do |nps, index| %> | |||
| <tr class="user-item-<%= nps.user.id %>"> | |||
| <td><%= list_index_no((params[:page] || 1).to_i, index) %></td> | |||
| <td class="text-left"> | |||
| <%= link_to "/#{nps.user.login}", target: '_blank' do %> | |||
| <%= overflow_hidden_span nps.user.real_name, width: 100 %> | |||
| <% end %> | |||
| </td> | |||
| <td><%= display_text(nps.created_at&.strftime('%Y-%m-%d %H:%M')) %></td> | |||
| <td><%= display_text(nps.user.last_login_on&.strftime('%Y-%m-%d %H:%M')) %></td> | |||
| <td><%= nps.score %></td> | |||
| <td><%= nps.memo %></td> | |||
| </tr> | |||
| <% end %> | |||
| <% else %> | |||
| <%= render 'admins/shared/no_data_for_table' %> | |||
| <% end %> | |||
| </tbody> | |||
| </table> | |||
| <%= render partial: 'admins/shared/paginate', locals: { objects: user_nps } %> | |||
| @@ -0,0 +1,45 @@ | |||
| <% define_admin_breadcrumbs do %> | |||
| <% add_admin_breadcrumb('NPS用户调研', admins_nps_path) %> | |||
| <% end %> | |||
| <div class="box search-form-container user-list-form"> | |||
| <%= form_tag(admins_nps_path, method: :get, class: 'form-inline search-form flex-1', remote: true) do %> | |||
| <%= text_field_tag(:keyword, params[:keyword], class: 'form-control col-sm-2 ml-3', placeholder: 'ID/姓名/邮箱/手机号检索') %> | |||
| <%= submit_tag('搜索', class: 'btn btn-primary ml-3', 'data-disable-with': '搜索中...') %> | |||
| <span style="margin-left: 50px;margin-right: 10px;">NPS系统开关</span> | |||
| <input type="checkbox" <% if @on_off_switch %>checked<%end %> data-toggle="toggle" data-onstyle="primary" id="nps_toggle" data-on="开" data-off="关" data-size="small"> | |||
| <% end %> | |||
| </div> | |||
| <div class="box admin-list-container users-list-container"> | |||
| <%= render partial: 'admins/nps/user_np_list', locals: { user_nps: @user_nps } %> | |||
| </div> | |||
| <script> | |||
| $(function () { | |||
| $('#nps_toggle').bootstrapToggle({ | |||
| on: '开', | |||
| off: '关' | |||
| }); | |||
| $('#nps_toggle').change(function () { | |||
| var switch_value = $(this).prop('checked'); | |||
| var url = "/admins/nps/switch_change.json" | |||
| $.ajax({ | |||
| method: 'POST', | |||
| dataType: 'json', | |||
| url: url, | |||
| data: {'switch': switch_value}, | |||
| success: function () { | |||
| $.notify({message: '操作成功'}); | |||
| }, | |||
| error: function (res) { | |||
| } | |||
| }); | |||
| }) | |||
| }) | |||
| </script> | |||
| @@ -0,0 +1 @@ | |||
| $('.users-list-container').html("<%= j( render partial: 'admins/nps/user_np_list', locals: { user_nps: @user_nps } ) %>"); | |||
| @@ -55,6 +55,7 @@ | |||
| <li> | |||
| <%= sidebar_item_group('#setting-submenu', '网站建设', icon: 'cogs') do %> | |||
| <li><%= sidebar_item(admins_faqs_path, 'FAQ', icon: 'question-circle', controller: 'admins-faqs') %></li> | |||
| <li><%= sidebar_item(admins_nps_path, 'NPS用户调研', icon: 'question-circle', controller: 'admins-nps') %></li> | |||
| <% end %> | |||
| </li> | |||
| <li> | |||
| @@ -16,18 +16,15 @@ | |||
| <%= select_tag(:identity, options_for_select(identity_options), class: 'form-control') %> | |||
| </div> | |||
| <div class="form-group mr-2"> | |||
| <label for="identity">授权类型:</label> | |||
| <% auto_trial_options = [['全部', ''], ['自动授权', 1], ['手动授权', 0]] %> | |||
| <%= select_tag(:auto_trial, options_for_select(auto_trial_options), class: 'form-control') %> | |||
| </div> | |||
| <%= text_field_tag(:keyword, params[:keyword], class: 'form-control col-sm-2 ml-3', placeholder: 'ID/姓名/邮箱/手机号检索') %> | |||
| <% | |||
| =begin%> | |||
| <%= text_field_tag(:school_name, params[:school_name], class: 'form-control col-sm-2', placeholder: '学校/单位检索') %> | |||
| <% | |||
| =end%> | |||
| <label for="user_admin"> | |||
| 是否管理员 | |||
| </label> | |||
| <%= check_box_tag("admin", true, false, id: "user_admin", style: 'margin-left: 2px;') %> | |||
| <%= submit_tag('搜索', class: 'btn btn-primary ml-3', 'data-disable-with': '搜索中...') %> | |||
| <% end %> | |||
| @@ -26,4 +26,5 @@ json.super_description @user.super_description | |||
| json.(@user, :show_email, :show_department, :show_location, :show_super_description) | |||
| json.message_unread_total @message_unread_total | |||
| json.has_trace_user @user.trace_user.present? | |||
| json.is_new @user.login.present? && params[:login].to_s.include?("#{@user.login}") | |||
| json.is_new @user.login.present? && params[:login].to_s.include?("#{@user.login}") | |||
| json.nps EduSetting.get("nps-on-off-switch").to_s == 'true' && UserNp.where(user_id: current_user.id).where("created_at >= ?", (Time.now - 30.days).beginning_of_day ).blank? | |||
| @@ -86,6 +86,7 @@ Rails.application.routes.draw do | |||
| resources :project_rank, only: [:index] | |||
| resources :user_rank, only: [:index] | |||
| resources :nps, only: [:create] | |||
| resources :statistic, only: [:index] do | |||
| collection do | |||
| @@ -937,6 +938,9 @@ Rails.application.routes.draw do | |||
| post :replace_image_url, on: :member | |||
| end | |||
| resources :faqs | |||
| resources :nps do | |||
| post :switch_change, on: :collection | |||
| end | |||
| resources :laboratories, only: [:index, :create, :destroy, :update] do | |||
| member do | |||
| get :shixuns_for_select | |||
| @@ -0,0 +1,12 @@ | |||
| class CreateUserNps < ActiveRecord::Migration[5.2] | |||
| def change | |||
| create_table :user_nps do |t| | |||
| t.references :user | |||
| t.string :action_type | |||
| t.integer :action_id | |||
| t.float :score | |||
| t.text :memo | |||
| t.timestamps | |||
| end | |||
| end | |||
| end | |||