tvl-depot/configs/shared/emacs/.emacs.d/elpa/slack-20180712.2222/slack-thread-message-compose-buffer.el

80 lines
2.8 KiB
EmacsLisp
Raw Normal View History

;;; slack-thread-message-compose-buffer.el --- -*- lexical-binding: t; -*-
;; Copyright (C) 2017
;; Author: <yuya373@yuya373>
;; Keywords:
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(require 'eieio)
(require 'slack-util)
(require 'slack-message-compose-buffer)
(defclass slack-thread-message-compose-buffer (slack-message-compose-buffer)
((room :initarg :room :type slack-room)
(thread-ts :initarg :thread-ts :type string)))
(defmethod slack-buffer-find :static ((class slack-thread-message-compose-buffer) room ts team)
(slack-buffer-find-4 class room ts team))
(defmethod slack-buffer-name :static
((class slack-thread-message-compose-buffer) room ts team)
(format "*Slack - %s : %s Compose Thread Message - %s*"
(oref team name)
(slack-room-name room)
ts))
(defmethod slack-buffer-name ((this slack-thread-message-compose-buffer))
(with-slots (room thread-ts team) this
(slack-buffer-name 'slack-thread-message-compose-buffer
room thread-ts team)))
(defmethod slack-buffer-init-buffer ((this slack-thread-message-compose-buffer))
(let ((buf (call-next-method)))
(with-current-buffer buf
(slack-message-compose-buffer-mode)
(slack-buffer-set-current-buffer this)
(setq buffer-read-only nil)
(erase-buffer))
(with-slots (room thread-ts team) this
(slack-buffer-push-new-4 'slack-thread-message-compose-buffer
room thread-ts team))
buf))
(defun slack-create-thread-message-compose-buffer (room ts team)
(slack-if-let* ((buf (slack-buffer-find 'slack-thread-message-compose-buffer
room ts team)))
buf
(slack-thread-message-compose-buffer :room room
:team team
:thread-ts ts)))
(defmethod slack-buffer-send-message
((this slack-thread-message-compose-buffer) message)
(let ((buffer (slack-buffer-buffer this)))
(with-slots (room team thread-ts) this
(slack-thread-send-message room team message thread-ts)))
(call-next-method))
(provide 'slack-thread-message-compose-buffer)
;;; slack-thread-message-compose-buffer.el ends here